:root {
    --bg-dark: #0b0b0b;
    --bg-card: #141414;
    --gold: #d4af37;
    --text-main: #f2f2f2;
    --text-muted: #b5b5b5;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 90px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
        url("1.jpg") center/cover no-repeat;
    animation: heroSlide 18s infinite alternate;
}

@keyframes heroSlide {
    0% {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
            url("2.jpg");
    }
    50% {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
            url("1.jpg");
    }
    100% {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
            url("2.jpg");
    }
}

header img {
    max-width: 140px;
    margin-bottom: 25px;
    display: inline-block;
}

header h1 {
    font-size: 34px;
    margin: 0 0 15px;
    letter-spacing: 1px;
}

header p {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    color: var(--text-muted);
}

.cta {
    margin-top: 30px;
}

.cta a {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--gold);
}

.program {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    color: var(--text-muted);
    text-align: center;
}

.locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 25px;
}

.card h3 {
    margin-top: 0;
    color: var(--gold);
}

.card p {
    color: var(--text-muted);
}

.card iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 10px;
    margin: 15px 0;
}

.card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

.schedule {
    text-align: center;
}

.schedule img {
    max-width: 100%;
    border-radius: 14px;
    margin-top: 25px;
    display: inline-block;
}

footer {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}

footer h3 {
    margin-bottom: 25px;
    color: var(--gold);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.contact-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 26px;
    }
}
