/* ---------- RESET & GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #f5f5f5;
    line-height: 1.6;
}

:root {
    --black: #0b0b0b;
    --dark-gray: #1a1a1a;
    --yellow: #f5b81b;
    --yellow-glow: #f5b81b;
    --yellow-light: #ffe066;
    --white: #f5f5f5;
}

/* ---------- NAVIGATION ---------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 2px solid var(--yellow);
    position: sticky;
    top: 0;
    z-index: 999;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.logo span {
    color: var(--yellow);
    text-shadow: 0 0 12px rgba(245, 184, 27, 0.5);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
    text-shadow: 0 0 8px rgba(245, 184, 27, 0.3);
}

.nav-links a i {
    margin-right: 6px;
    color: var(--yellow);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--yellow);
    cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
    background: radial-gradient(circle at 20% 30%, #1f1f1f, #000000);
    padding: 5rem 5% 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--yellow);
}

.hero-text {
    flex: 1 1 350px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-text h1 .highlight {
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(245, 184, 27, 0.6);
    display: inline-block;
}

.hero-text p {
    font-size: 1.3rem;
    margin: 1.5rem 0 2rem;
    color: #bbb;
    max-width: 550px;
}

.hero-image {
    flex: 1 2 300px;
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.hero-image img {
    max-width: 260px;
    filter: drop-shadow(0 0 30px rgba(245, 184, 27, 0.4));
    transform: translateX(-100px);
}

/* ---------- SECTIONS ---------- */
section {
    padding: 4.5rem 5%;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    border-left: 8px solid var(--yellow);
    padding-left: 1.2rem;
    color: #fff;
}

.section-title span {
    color: var(--yellow);
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid #333;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
}

.about-text {
    flex: 2;
    min-width: 250px;
}

.about-text h3 {
    color: var(--yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    background: #111;
    border-radius: 20px;
    padding: 0;
    border: 2px solid #2a2a2a;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    overflow: hidden;
}

.photo-frame {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.gallery-item:hover {
    border-color: var(--yellow);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(245,184,27,0.15);
}

.gallery-item:hover .photo-frame img {
    transform: scale(1.04);
}

.gallery-caption {
    padding: 1rem 1.2rem 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ddd;
    text-align: center;
}

.gallery-caption span {
    color: var(--yellow);
    font-weight: 800;
    margin-right: 6px;
}

/* ---------- SCHEDULE ---------- */
.schedule-box {
    background: #111;
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid #2a2a2a;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.schedule-item {
    flex: 1 1 180px;
    background: #1a1a1a;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    border-bottom: 6px solid var(--yellow);
}

.schedule-item .day {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--yellow);
}

.schedule-item .time {
    font-size: 1.3rem;
    margin: 0.4rem 0;
    color: #eee;
}

/* ---------- CONTACT ---------- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: #0f0f0f;
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid #2a2a2a;
}

.contact-info {
    flex: 1 1 250px;
}

.contact-info h3 {
    color: var(--yellow);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--yellow);
    width: 2rem;
    font-size: 1.4rem;
}

.contact-social {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.contact-social a {
    color: #ddd;
    font-size: 2.2rem;
    transition: 0.3s;
}

.contact-social a:hover {
    color: var(--yellow);
    transform: scale(1.1);
}

.contact-form {
    flex: 2;
    min-width: 250px;
    border: 2px solid var(--yellow);
    border-radius: 20px;
    padding: 0.2rem;
    background: rgba(245, 184, 27, 0.02);
    overflow: hidden;
}

.contact-form iframe {
    border-radius: 18px;
}

/* ---------- FOOTER ---------- */
footer {
    background: #050505;
    padding: 2.5rem 5%;
    border-top: 2px solid var(--yellow);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #888;
}

.footer-logo {
    font-size: 1.7rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--yellow);
}

.copy {
    font-size: 0.95rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0b0b0b;
        padding: 1.5rem 0;
        border-top: 2px solid var(--yellow);
        margin-top: 1rem;
    }
    .nav-links.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-image img {
        max-width: 180px;
        transform: translateX(0);
    }
    .section-title {
        font-size: 2rem;
    }
    .about-grid {
        padding: 1.5rem;
    }
    .schedule-box {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .navbar {
        padding: 0.8rem 5%;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 0.1rem;
    }
}