/* Variables CSS */
:root {
    --primary-color: #FF8C00; /* Un orange vif */
    --secondary-color: #FF7F50; /* Une teinte d'orange légèrement différente */
    --dark-900: #f8f8f8; /* Fond très clair */
    --dark-800: #eeeeee; /* Gris clair pour les éléments de fond */
    --dark-700: #dddddd; /* Gris un peu plus foncé pour les bordures/fonds */
    --dark-600: #cccccc; /* Gris pour les bordures/éléments */
    --text-color: #333333; /* Gris foncé/noir pour le texte principal */
    --text-muted: #666666; /* Gris plus clair pour le texte secondaire */
    --background-color: var(--dark-900); /* Utilise le fond très clair */
    --accent-color: #FFA07A; /* Un orange plus clair pour les accents */
    --error-color: #ef4444;
    --success-color: #22c55e;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header et Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(rgba(248, 248, 248, 0.95), rgba(248, 248, 248, 0.95)), 
                      linear-gradient(to right, 
                          transparent 0%, 
                          var(--primary-color) 20%, 
                          var(--primary-color) 80%, 
                          transparent 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: borderGlow 3s ease-in-out infinite;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Badge entre le logo et les liens */
nav > .award-badge {
    margin-left: 1rem;
    margin-right: auto; /* pousse les liens vers la droite */
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem;
    white-space: nowrap;
}

@keyframes borderGlow {
    0% {
        background-image: linear-gradient(rgba(248, 248, 248, 0.95), rgba(248, 248, 248, 0.95)), 
                         linear-gradient(to right, 
                             transparent 0%, 
                             var(--primary-color) 20%, 
                             var(--primary-color) 80%, 
                             transparent 100%);
    }
    50% {
        background-image: linear-gradient(rgba(248, 248, 248, 0.95), rgba(248, 248, 248, 0.95)), 
                         linear-gradient(to right, 
                             transparent 0%, 
                             var(--primary-color) 40%, 
                             var(--primary-color) 60%, 
                             transparent 100%);
    }
    100% {
        background-image: linear-gradient(rgba(248, 248, 248, 0.95), rgba(248, 248, 248, 0.95)), 
                         linear-gradient(to right, 
                             transparent 0%, 
                             var(--primary-color) 20%, 
                             var(--primary-color) 80%, 
                             transparent 100%);
    }
}

.logo {
    display: flex;
    align-items: center;
    
    color: var(--text-color); /* Couleur du texte adaptée au thème clair */
}

.logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* Badge dans le header (à côté du logo) */
.logo .award-badge {
    margin-left: 1rem;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.25);
    white-space: nowrap;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color); /* Couleur du texte adaptée au thème clair */
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: white; /* Assure que le texte est blanc par défaut */
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Ajout de la transition sur la couleur */
    text-decoration: none;
    display: inline-block;
    border: none; /* Ajout pour les boutons */
    cursor: pointer; /* Ajout pour les boutons */
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white; /* Assure que le texte reste blanc au survol */
    text-decoration: none;
}

/* Badge dans la barre de navigation */
/* Nettoyage styles précédents pour badge dans nav-links (non utilisé) */

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color); /* Utilise la couleur orange pour le texte */
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-color); /* Bordure orange */
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary-color); /* Fond orange au survol */
    color: white; /* Texte blanc au survol */
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color); /* Couleur de l'icône adaptée au thème clair */
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../Images/Studios/IMG_0112.JPG');
    background-size: cover; /* Changé de 100% à cover pour une meilleure responsivité */
    background-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(248, 248, 248, 0.9), rgba(238, 238, 238, 0.7), rgba(238, 238, 238, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.award-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
    text-align: center;
}

.award-badge strong {
    font-weight: 600;
}

/* Badge du hero (par défaut caché en desktop, visible sur mobile via responsive.css) */
.award-badge-hero {
    display: none;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 140, 0, 0.5);
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-buttons a {
    text-decoration: none;
}

/* Sections communes */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

section p {
    color: var(--text-muted); /* Couleur du texte secondaire adaptée */
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.highlight {
    color: var(--primary-color);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background-color: var(--dark-800);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    padding: 2px;
    background: var(--primary-color);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.about-card:hover i {
    transform: scale(1.1);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--text-muted); /* Couleur du texte secondaire adaptée */
    margin: 0;
    font-size: 0.875rem;
}

/* Award Showcase Section */
.award-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.award-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.award-image:hover {
    transform: translateY(-5px);
}

.award-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

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

.award-card {
    background-color: var(--dark-800);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    padding: 2px;
    background: var(--primary-color);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; /* masqué par défaut pour ne pas bloquer la sélection */
    transition: opacity 0.3s ease;
    pointer-events: none; /* ne capte pas les clics / sélections */
}

.award-card:hover::before {
    opacity: 1; /* effet de bordure au survol uniquement */
}

.award-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.award-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.award-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

/* Améliorer l'ergonomie de sélection du texte dans la carte */
.award-card,
.award-card h3,
.award-card p {
    user-select: text;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--dark-800);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    padding: 2px;
    background: var(--primary-color);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-muted);
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.service-price {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0.5rem 0;
}

.service-link {
    margin-top: 1rem;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: none;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--dark-800); /* Fond gris clair pour les boutons de filtre */
    color: var(--text-muted); /* Couleur du texte secondaire adaptée */
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background-color: var(--dark-800); /* Fond gris clair pour le formulaire */
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-700); /* Bordure gris */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted); /* Couleur du texte secondaire adaptée */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--dark-700); /* Fond gris pour les champs de saisie */
    border: 1px solid var(--dark-600); /* Bordure gris */
    border-radius: 0.5rem;
    color: var(--text-color); /* Couleur du texte adaptée */
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--dark-800); /* Fond gris clair pour les cartes d'info */
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-700); /* Bordure gris */
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-muted); /* Couleur du texte secondaire adaptée */
}

.info-card a,
.info-card p {
    color: var(--text-color);
    text-decoration: none;
    margin: 0;
    text-align: left;
}

.info-card a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-800); /* Fond gris clair pour le pied de page */
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-info p {
    color: var(--text-muted); /* Couleur du texte secondaire adaptée */
    margin: 0;
}

.footer-links h3,
.footer-social h3 {
    color: var(--text-color); /* Couleur du texte adaptée */
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-muted); /* Couleur du texte secondaire adaptée */
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    margin-top: 2rem;
    text-align: center; /* Centrer le contenu pour le rendre plus visible */
}

.footer-social h3 {
    margin-bottom: 1.5rem; /* Plus d'espace sous le titre */
    font-size: 1.8rem; /* Rendre le titre plus grand */
    color: var(--primary-color); /* Mettre en couleur le titre */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Espacement entre les icônes */
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.8rem; /* Taille des icônes */
    color: var(--text-muted); /* Couleur par défaut */
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex; /* Permet un meilleur alignement */
    align-items: center;
    justify-content: center;
    width: 50px; /* Taille du cercle */
    height: 50px;
    border-radius: 50%; /* Forme circulaire */
    background-color: var(--dark-700); /* Fond du cercle */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
}

.social-links a:hover {
    transform: translateY(-3px); /* Petit effet de survol */
}

/* Couleurs spécifiques aux réseaux sociaux au survol */
.social-links a .fa-instagram:hover { color: #E1306C; } /* Instagram */
.social-links a .fa-facebook:hover { color: #3b5998; } /* Facebook */
.social-links a .fa-whatsapp:hover { color: #25D366; } /* WhatsApp */
.social-links a .fa-tiktok:hover { color: #000000; } /* TikTok */

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-700);
}

.footer-bottom p {
    color: var(--text-muted); /* Couleur du texte secondaire adaptée */
    margin: 0;
}

/* Mention propulsé par */
.footer-bottom .powered-by {
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.footer-bottom .powered-by a {
    color: inherit;
    text-decoration: underline;
}

/* Modal pour les images */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

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

/* Animation de zoom au survol de la modal */
.modal-content:hover {
    transform: scale(1.02);
}

/* Support pour le clavier (focus) */
.modal-close:focus {
    outline: none;
    color: var(--primary-color);
}

/* Media queries pour la modal */
@media screen and (max-width: 768px) {
    .modal-content {
        max-width: 95%;
    }
    
    .modal-close {
        top: 10px;
        right: 25px;
        font-size: 30px;
    }
}

/* WhatsApp Contact Section */
.whatsapp-contact {
    text-align: center;
    margin-bottom: 2rem; /* Ajoutez de l'espace sous le texte */
}

.whatsapp-contact p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.whatsapp-contact .btn-primary {
    display: block; /* Change à block pour permettre le centrage */
    margin: 1rem auto 0 auto; /* Centrage horizontal et espace au-dessus */
    width: fit-content; /* S'adapte à la largeur du contenu */
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-contact .btn-primary i {
    color: #25D366; /* Couleur verte de WhatsApp */
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color); /* Utilise la couleur de fond du thème */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    opacity: 1;
    visibility: visible;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-bar-container {
    width: 80%;
    max-width: 400px;
    height: 8px;
    background-color: var(--dark-700);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: width 0.1s linear; /* Animation de la barre plus douce */
}

.loading-percentage {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
}

.welcome-message {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
    text-align: center;
    margin-top: 2rem;
}

.welcome-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Preloader */
@media screen and (max-width: 768px) {
    .loading-bar-container {
        width: 90%;
    }

    .welcome-message {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .loading-bar-container {
        width: 95%;
    }

    .welcome-message {
        font-size: 1.2rem;
    }
}

.floating-social-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: #333;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.instagram {
    color: #E1306C;
}

.social-icon.facebook {
    color: #3b5998;
}

.social-icon.whatsapp {
    color: #25D366;
}

.social-icon.tiktok {
    color: #000000;
}

@media screen and (max-width: 768px) {
    .floating-social-bar {
        display: none; /* Masquer sur les petits écrans */
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #000000; /* Couleur noire */
    font-size: 1rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    z-index: 1; /* S'assurer qu'il est au-dessus de l'overlay */
}

.scroll-indicator:hover {
    animation-play-state: paused; /* Arrêter l'animation au survol */
}

.scroll-indicator i {
    font-size: 2rem;
    color: inherit; /* Utilise la couleur du parent */
}

.scroll-indicator span {
    margin-top: 0.25rem;
}

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

@media screen and (max-width: 768px) {
    .scroll-indicator {
        bottom: 5%; /* Ajuster la position pour les petits écrans */
    }

    .scroll-indicator i {
        font-size: 1.5rem; /* Ajuster la taille de l'icône */
    }
}

@media screen and (max-width: 480px) {
    .scroll-indicator {
        bottom: 3%;
    }

    .scroll-indicator i {
        font-size: 1.2rem;
    }
}

/* Séparateurs artistiques */
.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
    background: transparent;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
                linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
                linear-gradient(-45deg, transparent 75%, var(--primary-color) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.1;
    transform: rotate(45deg) scale(2);
}

/* Séparateur spécial pour la navbar */
.navbar-divider {
    position: relative;
    height: 60px;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--primary-color) 80%, 
        transparent 100%);
    opacity: 0.1;
    margin-bottom: -60px;
    z-index: 1;
}

/* Séparateur ondulé pour certaines sections */
.wave-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.wave-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        var(--primary-color) 0%, 
        transparent 20%, 
        var(--primary-color) 40%, 
        transparent 60%, 
        var(--primary-color) 80%, 
        transparent 100%);
    opacity: 0.1;
    transform: skewY(-3deg);
}

/* Ajustements pour les sections */
#accueil {
    margin-top: -60px; /* Pour compenser le navbar-divider */
}

/* Ajustement des marges pour les sections */
#about, #services, #galerie, #contact {
    margin-top: -20px; /* Pour rapprocher légèrement les sections */
}