@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Sophisticated Professional Palette */
    --bg-dark: #070709;
    --bg-card: rgba(255, 255, 255, 0.02);
    --accent-primary: #d4af37; /* Metallic Gold */
    --accent-secondary: #aa8c2c; /* Muted Gold */
    --text-main: #f5f5f7;
    --text-muted: #8e8e9e;
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: #070709; /* Prevents black gap when zooming out */
    min-height: 100%;
    overflow-x: clip; /* Prevent horizontal scroll — clip is stricter than hidden */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    font-weight: 300;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Layout Helpers */
section {
    padding: 120px 10%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: clip; /* Contain any child overflow (e.g. ::before pseudo elements) */
    scroll-margin-top: 90px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s var(--smooth);
}

nav.nav-scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    padding: 12px 4%;
}

nav.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    color: var(--text-main);
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s var(--smooth);
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    display: inline-block;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px) scale(1.05);
}

/* Hero Section */
#home {
    background: var(--bg-dark); /* Fallback */
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-img-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 7, 9, 0.3) 0%, rgba(7, 7, 9, 0.7) 100%);
}

#home::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(transparent, var(--bg-dark));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 120px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 25px;
    animation: fadeInDown 1.2s var(--smooth);
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p.hook-line {
    font-weight: 400;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 1rem;
    margin-bottom: 30px;
    animation: fadeIn 1.2s var(--smooth) 0.3s backwards;
}

.hero-content p:not(.hook-line) {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 45px;
    line-height: 1.8;
    animation: fadeInUp 1s var(--smooth) 0.5s backwards;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: fadeInUp 1s var(--smooth) 0.7s backwards;
}

.btn {
    padding: 16px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.4s var(--smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-primary:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    color: var(--text-main);
    font-weight: 300;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-primary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--accent-primary);
    font-weight: 400;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-text b {
    color: var(--text-main);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Subtle gold gradient overlay for premium feel */
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    border-radius: 20px;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    filter: grayscale(70%) contrast(1.15) brightness(0.95);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.about-image:hover img {
    filter: grayscale(10%) contrast(1.1) brightness(1);
    transform: scale(1.03);
}

/* Vision & Mission Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.vm-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s var(--smooth), border-color 0.4s;
}

.vm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.vm-card h3 {
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Music Section */
#music {
    background: rgba(255, 255, 255, 0.01);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.track-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s var(--smooth), border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.track-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.track-embed {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.track-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.track-info {
    padding: 20px 22px;
}

.track-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.track-label {
    font-size: 0.8rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.music-coming-soon {
    text-align: center;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 20px;
    border: 1px dashed var(--accent-primary);
}

.music-coming-soon i {
    font-size: 4rem;
    color: var(--accent-primary);
    display: block;
    margin-bottom: 20px;
}

.music-coming-soon h3 {
    margin-bottom: 15px;
}

.music-coming-soon p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Achievements Section */
#achievements {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.03), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    align-items: center;
}

.achievement-text p {
    font-size: 1.15rem;
    border-left: 2px solid var(--accent-primary);
    padding-left: 30px;
    line-height: 1.9;
}

.achievement-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--smooth);
}

.achievement-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.achievement-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-right: 30px;
    opacity: 0.8;
}

/* Music Section */
.music-coming-soon {
    text-align: center;
    background: var(--bg-card);
    padding: 80px 40px;
    border-radius: 8px;
    border: 1px dashed var(--glass-border);
    transition: border-color 0.4s;
}

.music-coming-soon:hover {
    border-color: var(--accent-primary);
}

/* Dynamics Section */
.dynamic-card {
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    transition: all 0.4s var(--smooth);
}

.dynamic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.dynamic-card h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Events Section */
.events-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.events-container h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--accent-primary);
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) rgba(255, 255, 255, 0.05);
}

/* Scroll cap only on desktop — mobile shows all items */
@media (min-width: 769px) {
    .event-list {
        max-height: 500px;
        overflow-y: auto;
        padding-right: 15px;
    }
}

/* Custom Scrollbar for Chrome/Safari */
.event-list::-webkit-scrollbar {
    width: 6px;
}
.event-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.event-list::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

.event-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.event-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.event-date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--accent-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.event-info h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center; /* Vertically center the card and info */
}

.form-row-2col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-2col input {
    flex: 1;
}

@media (min-width: 1025px) {
    .form-row-2col {
        flex-direction: row;
    }
}

@media (max-width: 1200px) {
    .contact-grid {
        gap: 40px;
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-primary);
    transition: all 0.3s;
}

.contact-method:hover .contact-icon {
    background: var(--accent-primary);
    color: var(--bg-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Slightly tighter gap for a cleaner look */
}

input, textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-primary);
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 992px) {
    section { padding: 80px 5%; }
    .hero-content { padding: 80px 5%; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .events-container { grid-template-columns: 1fr; gap: 50px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content h1 { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: 5px; }
}

/* Nav backdrop overlay — shown when mobile menu is open */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: fadeIn 0.25s ease;
}
.nav-backdrop.active { display: block; }

@media (max-width: 768px) {
    nav { 
        padding: 8px 5%; 
        background: rgba(7, 7, 9, 0.7); 
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .logo { font-size: 1.25rem; }
    .menu-toggle { display: flex; }

    /* Compact slide-in card from the right */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background: rgba(10, 10, 13, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 6px;
        padding: 80px 24px 40px;
        transform: translateX(100%); /* Hidden off-screen via transform — does NOT affect layout */
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    }

    .nav-links.active { transform: translateX(0); }

    .nav-links a {
        font-size: 0.9rem;
        width: 100%;
        text-align: left;
        background: transparent;
        border: none;
        border-radius: 8px;
        padding: 12px 16px;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.75);
        transition: all 0.2s;
    }
    .nav-links a:hover {
        background: rgba(255,255,255,0.06);
        color: var(--accent-primary);
        transform: none;
        box-shadow: none;
        border-color: transparent;
    }

    /* Hero */
    .hero-content h1 { font-size: clamp(2rem, 12vw, 3rem); letter-spacing: 2px; line-height: 1.1; margin-bottom: 15px; }
    .hero-content p.hook-line { font-size: 0.85rem; letter-spacing: 4px; margin-bottom: 20px; }
    .hero-content p:not(.hook-line) { font-size: 0.95rem; margin-bottom: 35px; line-height: 1.6; }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; gap: 15px; }
    .btn { padding: 14px 30px; width: 100%; }
    .hero-content { min-height: 100dvh; }

    /* Sections */
    section { padding: 70px 18px; }
    .section-title { font-size: 1.5rem; margin-bottom: 40px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-text h3 { font-size: 1.2rem; }
    .about-text p { font-size: 0.95rem; }

    /* Events — stack columns, all past shows fully visible */
    .events-container { grid-template-columns: 1fr; gap: 40px; }
    .events-container h3 { font-size: 1.05rem; margin-bottom: 20px; }
    .event-list { gap: 14px; }
    .event-item { padding: 18px 16px; border-radius: 10px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-method { gap: 16px; margin-top: 18px; }
    .contact-icon { width: 42px; height: 42px; font-size: 1rem; flex-shrink: 0; }

    /* Contact glass card — reduce huge padding */
    .contact-glass-card { padding: 28px 20px !important; border-radius: 16px !important; }

    /* Dynamic cards */
    .dynamic-card { padding: 24px 18px !important; }

    /* Achievement items */
    .achievement-item { padding: 20px 16px !important; }
    .achievement-icon { margin-right: 16px !important; font-size: 1.5rem !important; }

    /* Inline grids used inside index.html */
    /* Vision & Mission + Performance Dynamics + Achievements */
    [style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    /* Contact name+email row */
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Inline padded cards (vision/mission) */
    [style*="padding: 40px"] {
        padding: 24px 18px !important;
    }
    /* Inline padded achievement event-items */
    .event-item[style*="padding: 25px"] {
        padding: 16px !important;
    }
    /* Music coming soon box */
    .music-coming-soon { padding: 40px 20px !important; }
}

/* Reviews Section */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: transform 0.4s var(--smooth), border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    color: rgba(212, 175, 55, 0.08);
    pointer-events: none;
}

.review-stars {
    color: var(--accent-primary);
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.review-author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 3px;
    letter-spacing: 0.5px;
}

.review-author-info p {
    font-size: 0.78rem;
    color: var(--accent-secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations for Mobile Menu */
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
