:root {
    --primary-color: #fcbf6a;
    --secondary-color: #e86d30;
    --background-dark: #75570c;
    --background-light: #ad8624;
    --text-light: #FFFFFF;
    --text-glow: #fcbf6a;
    --menu-bg: rgba(10, 26, 59, 0.95);
    --glow-effect: 0 0 20px rgba(0, 168, 255, 0.2);
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, 
        var(--background-light) 0%, 
        var(--background-dark) 50%,
        var(--background-light) 100%);
    color: var(--text-light);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, 
        #b77517 0%,
        #8e5b12 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 168, 255, 0.2);
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 168, 255, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding: 5px;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition);
    filter: brightness(1.1);
}

.logo:hover img {
    filter: brightness(1.2) drop-shadow(0 0 10px var(--primary-color));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
}

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

.nav-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links ul li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--text-glow);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 8px 4%;
    }

    .logo {
        margin-right: 10px;
        padding: 3px;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        background: var(--menu-bg);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

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

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links ul li {
        opacity: 0;
        animation: fadeIn 0.5s ease forwards;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
    }

    /* Animation du hamburger en croix */
    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--primary-color);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background-color: var(--primary-color);
    }

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.countdown-item .label {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: white;
    text-shadow: none;
}

/* Carousel */
.title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.carousel {
    margin: 20px auto;
    overflow: hidden;
    width: 90%;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.carousel-container {
    display: flex;
    justify-content: center;
    overflow-x: hidden; /* Changé de auto à hidden pour l'animation automatique */
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.2);
    -webkit-overflow-scrolling: touch; /* Défilement fluide sur iOS */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform; /* Optimisation pour l'animation */
}

.carousel-item {
    min-width: 300px;
    margin: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
}

.carousel-item img {
    max-width: 100px;
    max-height: 100px;
    display: block;
    margin: 0 auto 15px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.carousel-item img:hover {
    transform: scale(1.1);
}

.carousel-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.logo-container a {
    flex: 1 0 18%;
    margin: 10px;
    display: inline-block;
    max-width: 100px;
}

.logo-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.logo-container img:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    justify-content: center;
    text-align: center;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sections communes */
.section {
    background: linear-gradient(135deg,
        rgba(30, 59, 140, 0.7) 0%,
        rgba(10, 26, 59, 0.7) 100%);
    border: 1px solid rgba(0, 168, 255, 0.2);
    box-shadow: var(--glow-effect);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Boutons et liens sociaux */
.buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.1);
    min-width: 200px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
    border-color: rgba(0, 168, 255, 0.5);
}

.btn:active {
    transform: translateY(1px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.social-link:hover {
    background: rgba(0, 168, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.3);
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .social-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Sections et titres */
section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
}

.title {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
}

/* Ajustement du carousel */
.carousel {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg,
        rgba(30, 59, 140, 0.7) 0%,
        rgba(10, 26, 59, 0.7) 100%);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.15);
    backdrop-filter: blur(10px);
}

.carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.carousel-item {
    flex: 0 0 300px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.2);
}

.carousel-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Style des boutons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.1);
    min-width: 220px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
    border-color: rgba(0, 168, 255, 0.5);
    background: linear-gradient(135deg,
        var(--secondary-color) 0%,
        var(--primary-color) 100%);
}

.btn:active {
    transform: translateY(1px);
}

/* Responsive design */
@media screen and (max-width: 768px) {
    section {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    section h2,
    .title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
    }

    .carousel {
        margin: 2rem auto;
        padding: 1.5rem;
    }

    .carousel-container {
        gap: 1rem;
        padding: 0.5rem;
    }

    .carousel-item {
        flex: 0 0 250px;
        padding: 1rem;
    }

    .carousel-item img {
        height: 150px;
    }
}

/* Section Créateurs */
.creators-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, 
        #1a1d13 0%, 
        #6f7445 100%);
    margin: 2rem 0;
}

.creators-section h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-shadow: 0 0 15px var(--text-glow);
}

.project-description {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.project-description p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.project-description p:first-child {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 0 0 10px var(--text-glow);
}

.creators-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.creator-card {
    background: #272816;
    border-radius: 15px;
    padding: 1.5rem;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.creator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
}

.creator-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.creator-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.creator-card p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .creators-section {
        padding: 2rem 1rem;
    }

    .creators-section h2 {
        font-size: 2rem;
    }

    .project-description p {
        font-size: 1.1rem;
    }

    .project-description p:first-child {
        font-size: 1.2rem;
    }

    .creator-card {
        width: 100%;
        max-width: 300px;
    }
}
/* Partenaire spécial */
.partner-special {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    padding: 1rem;
    background: #272816;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.partner-special img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.partner-info {
    color: var(--text-light);
    text-align: center;
    font-size: 1rem;
    margin: 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .partner-special {
        margin: 0.5rem;
        padding: 0.5rem;
    }

    .partner-special img {
        max-width: 150px;
    }

    .partner-info {
        font-size: 0.9rem;
    }
}
/* Section Wazar */
.wazar-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 168, 255, 0.2) 100%);
    margin: 2rem 0;
}

.wazar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.2);
    justify-content: center;
    text-align: center;
}

.wazar-container img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.wazar-container img:hover {
    transform: scale(1.05);
}

.wazar-info {
    color: var(--text-light);
    text-align: center;
}

.wazar-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--text-glow);
}

.wazar-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.wazar-time {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
}

@media screen and (max-width: 992px) {
    .wazar-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .wazar-container img {
        max-width: 150px; /* Taille réduite de l'image */
    }

    .wazar-info h2 {
        font-size: 2rem;
    }

    .wazar-info p {
        font-size: 1.1rem;
    }

    .wazar-time {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .logo img {
        height: 30px;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .countdown {
        flex-direction: column;
        gap: 1rem;
    }

    .countdown-item span {
        font-size: 1.5rem;
    }

    .carousel-container {
        gap: 1rem;
        padding: 0.5rem;
    }

    .carousel-item {
        flex: 0 0 200px;
        padding: 1rem;
    }

    .carousel-item img {
        height: 100px;
    }

    .wazar-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .wazar-container img {
        max-width: 100px;
    }

    .wazar-info h2 {
        font-size: 1.5rem;
    }

    .wazar-info p {
        font-size: 1rem;
    }

    .creators-container {
        flex-direction: column;
        gap: 1rem;
    }

    .creator-card {
        width: 100%;
        max-width: 250px;
    }

    .creator-card img {
        width: 100px;
        height: 100px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* Media Queries Globales */
/* Grand écran */
@media screen and (min-width: 1400px) {
    .container, 
    .creators-container,
    .wazar-container,
    .carousel-container {
        max-width: 1320px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .countdown-item {
        font-size: 3rem;
    }
}

/* Écran moyen */
@media screen and (max-width: 1200px) {
    .container,
    .creators-container,
    .wazar-container,
    .carousel-container {
        max-width: 960px;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .countdown-item {
        font-size: 2.5rem;
    }

    .creator-card {
        width: calc(33.333% - 2rem);
    }

    .carousel-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* Tablette */
@media screen and (max-width: 992px) {
    .container,
    .creators-container,
    .wazar-container,
    .carousel-container {
        max-width: 720px;
    }

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

    .countdown-item {
        font-size: 2rem;
        padding: 1rem;
    }

    .creator-card {
        width: calc(50% - 2rem);
    }

    .carousel-item {
        flex: 0 0 calc(50% - 20px);
    }

    .wazar-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .logo-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile large */
@media screen and (max-width: 768px) {
    .container,
    .creators-container,
    .wazar-container,
    .carousel-container {
        max-width: 540px;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        font-size: 1.5rem;
        padding: 0.8rem;
        min-width: 120px;
    }

    .creator-card {
        width: 100%;
        max-width: 350px;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .logo-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    section {
        padding: 2rem 1rem;
    }
}

/* Mobile petit */
@media screen and (max-width: 576px) {
    .container,
    .creators-container,
    .wazar-container,
    .carousel-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .countdown-item {
        font-size: 1.2rem;
        padding: 0.6rem;
        min-width: 100px;
    }

    .logo-container {
        grid-template-columns: 1fr;
    }

    .wazar-info h2 {
        font-size: 1.8rem;
    }

    .footer-section {
        padding: 1rem;
    }

    section {
        padding: 1.5rem 0.5rem;
    }
}

/* Ajustements pour très petits écrans */
@media screen and (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .countdown-item {
        font-size: 1rem;
        padding: 0.5rem;
        min-width: 80px;
    }

    .wazar-info h2 {
        font-size: 1.5rem;
    }
}
/* Main content */
main {
    min-height: calc(100vh - 140px);
    padding: var(--spacing-lg);
 }
 
 .gallery-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
 }
 
 .gallery-header {
    text-align: center;
    margin-bottom: 2rem;
 }
 
 .gallery-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
 }
 
 .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
 }
 
 .gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
 }
 
 @keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
 }
 
 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
 }
 
 .load-more-btn {
    display: block;
    margin: 2rem auto;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
 }
 
 .load-more-btn:hover {
    opacity: 0.9;
 }
 
 .load-more-btn.hidden {
    display: none;
 }
 .gallery-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
   margin-bottom: 20px;
 }
 .gallery-img {
   width: 100%;
   height: auto;
   border-radius: 8px;
   object-fit: cover;
 }
 .load-more-btn {
   display: block;
   margin: 0 auto;
   padding: 10px 30px;
   font-size: 1.1em;
   background: #1e90ff;
   color: white;
   border: none;
   border-radius: 6px;
   cursor: pointer;
 }