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

:root {
    --green-background: #0a1f0a;
    --green-dark: #2d5a27;
    --green-primary: #2daa49;
    --white: #f5f5f5;
    --title-font: 'Bebas Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--green-background);
    color: var(--white);
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--green-background) 0%, #0d2b0d 50%, var(--green-background) 100%);
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 80%, rgba(45, 90, 39, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(74, 156, 61, 0.2) 0%, transparent 50%);
}

/* Floating particles */
/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 16, 5, 0.85), rgba(5, 16, 5, 0.4), transparent);
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    width: 100vw;
    max-width: none;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: brightness(1.1) saturate(1.1);
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(10, 31, 10, 0.2) 0%,
        rgba(10, 31, 10, 0.3) 50%,
        var(--green-background) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    transform: translateY(17vh);
}

.hero-greeting {
    font-family: var(--title-font);
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5),
                 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.hero-content h1 {
    font-family: var(--title-font);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 span {
    display: block;
    color: var(--white);
}

.hero-logo {
    display: block;
    width: clamp(14rem, 70vw, 50rem);
    margin: 0 auto 0.2em;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6)) drop-shadow(0 8px 35px rgba(0, 0, 0, 0.5));
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green-primary), transparent);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--title-font);
    font-size: 5rem;
    letter-spacing: 5px;
    color: var(--green-primary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-primary) 30%, var(--green-primary) 70%, transparent);
    border-radius: 3px;
}

/* Music Section */
.music-section {
    text-align: center;
    padding: 6rem 1rem;
}

.music-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: transparent;
    border: none;
    border-radius: 20px;
    backdrop-filter: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(127, 255, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.platform-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.platform-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--green-primary);
    transition: all 0.4s ease;
}


.platform-card h3 {
    font-family: var(--title-font);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: var(--white);
    transition: color 0.3s ease;
}


.platform-desc {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.spotify-embed, .youtube-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.spotify-embed {
    width: 100%;
    max-width: 700px;
    height: 360px;
    margin: auto;
}

.youtube-embed {
    aspect-ratio: 16 / 9;
}

.youtube-embed iframe {
    width: 100%;
    height: 100%;
}


.spotify-embed iframe, .youtube-embed iframe {
    border-radius: 16px;
}


@media (max-width: 1024px) {
    .platform-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .platform-icon {
        margin: 0 auto 1.5rem;
    }
}

/* Members Section */
.members-section {
    text-align: center;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.member-card {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.member-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.member-card:nth-child(2) {
    transition-delay: 0.15s;
}

.member-card:nth-child(3) {
    transition-delay: 0.3s;
}

.member-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.member-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 31, 10, 0.8), transparent);
    pointer-events: none;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.member-card:hover .member-photo img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
}

.member-card:hover .member-photo::before {
    opacity: 1;
}

.member-name {
    font-family: var(--title-font);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 500;
}

.member-role {
    color: var(--green-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.member-description {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 2rem auto 0;
    }
}

/* Gallery Section */
.gallery-section {
    padding-top: 4rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-row: span 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding-bottom: 4rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid var(--green-primary);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link svg {
    width: 36px;
    height: 36px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--green-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link:hover {
    color: var(--green-background);
    border-color: var(--green-primary);
    transform: translateY(-5px);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox picture {
    display: flex;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(45, 170, 73, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--green-primary);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(127, 255, 0, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(10, 31, 10, 0.98), rgba(20, 40, 20, 0.98));
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        border-left: 2px solid rgba(127, 255, 0, 0.2);
    }

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

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
    }

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

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-row: span 1;
        grid-column: span 1;
    }

    section {
        padding: 2.5rem 1rem;
    }

    .music-container {
        max-width: 100%;
        padding: 0;
    }

    .spotify-embed {
        width: 100%;
        max-width: 100%;
        height: 352px;
    }

    .spotify-embed iframe {
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(6rem, 20vw, 12rem);
    }

    .hero-logo {
        width: clamp(18rem, 90vw, 50rem);
    }

    .hero-greeting {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
