/* Color Variables */
:root {
    --primary-green: #8BC88B;
    --accent-yellow: #f1b91b;
    --dark-navy: #1A1A2E;
    --light-cream: #FFF8E7;
    --white: #FFFFFF;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-navy);
    background-color: var(--accent-yellow);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('/assets/cursor.png') 32 32, auto;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-yellow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1rem;
    font-weight: bold;
    color: var(--dark-navy);
    transition: color 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--dark-navy);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--primary-green);
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/hero2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    animation: slideInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: slideInUp 0.8s ease-out;
}

/* Gallery Section */
.gallery {
    padding: 0;
    background-color: var(--accent-yellow);
}

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

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    padding: 40px 0;
    margin: 0;
    letter-spacing: 5px;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--accent-yellow);
}

.gallery-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.3s ease;
    animation: galleryWave 8s ease-in-out infinite;
}

.gallery-item:nth-child(1) img { animation-delay: 0s; }
.gallery-item:nth-child(2) img { animation-delay: 0.2s; }
.gallery-item:nth-child(3) img { animation-delay: 0.4s; }
.gallery-item:nth-child(4) img { animation-delay: 0.6s; }
.gallery-item:nth-child(5) img { animation-delay: 0.8s; }
.gallery-item:nth-child(6) img { animation-delay: 1s; }
.gallery-item:nth-child(7) img { animation-delay: 1.2s; }
.gallery-item:nth-child(8) img { animation-delay: 1.4s; }
.gallery-item:nth-child(9) img { animation-delay: 1.6s; }

.gallery-item:hover img {
    filter: grayscale(0%) contrast(1.1);
    animation: none;
}

@keyframes galleryWave {
    0%, 100% {
        filter: grayscale(100%) contrast(1.2);
    }
    12.5% {
        filter: grayscale(0%) contrast(1.1);
    }
    25% {
        filter: grayscale(100%) contrast(1.2);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .social-link {
        font-size: 1rem;
    }
}
