:root {
    --primary-color: #2c3e50;
    --accent-color: #c0392b;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --container-width: 1100px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.social-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-nav a {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.social-nav a:hover {
    color: var(--accent-color);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
    color: var(--primary-color);
}

.bg-dark h2 {
    color: var(--white);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn.primary:hover {
    background-color: #a93226;
    transform: translateY(-2px);
}

/* Layout Helpers */
.flex-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.flex-1 {
    flex: 1;
}

.items-center {
    align-items: center;
}

.reverse {
    flex-direction: row-reverse;
}

.img-responsive {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rounded {
    border-radius: 10px;
}

/* Image Overlay */
.overlay-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overlay-container img {
    display: block;
    width: 100%;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.overlay-text p {
    font-size: 1.25rem;
    font-weight: 600;
}

.overlay-text p+p {
    margin-top: 15px;
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact */
.contact-info p {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-info .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.contact-info .social-link i {
    font-size: 1.4rem;
}

.contact-info .social-link:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--bg-dark);
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {

    .flex-row,
    .flex-row.reverse {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        display: block;
        padding: 10px;
    }

    .nav-toggle {
        display: flex;
    }

    .social-nav {
        margin-top: 20px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 0;
    }
}