/* Réinitialisation des marges et paddings pour tous les éléments */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corps de la page */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

/* En-tête */
.header {
    background-color: #3498db;
    padding: 20px 0;
    text-align: center;
}

.header .logo h1 {
    color: white;
    font-size: 2rem;
}

.navbar {
    margin-top: 10px;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px;
}

.navbar ul li a:hover, .navbar ul li a.active {
    background-color: #2980b9;
    border-radius: 5px;
}

/* Contenu principal (FAQ) */
.container {
    width: 80%;
    max-width: 900px;
    padding: 30px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Titre FAQ */
.faq-title {
    font-size: 2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Style de chaque élément FAQ */
.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover {
    transform: scale(1.02);
    background-color: #dfe6e9;
}

/* Question FAQ */
.faq-question {
    padding: 20px;
    background-color: #3498db;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-align: left;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.faq-question:hover {
    background-color: #2980b9;
}

/* Réponse FAQ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #f9f9f9;
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
    border-top: 1px solid #ddd;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 20px 0;
}

/* Animation de déploiement */
.faq-answer.show {
    max-height: 300px;
    padding: 20px;
}


/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f8f9fa;
}

/* En-tête */
header {
    background-color: #d0f0c0;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 3px solid #2c5f2d;
}

.titre-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.logo-titre {
    width: 70px;
    height: auto;
}

h1 {
    color: #2c5f2d;
    font-size: 2.4rem;
    letter-spacing: -1px;
}

/* Navigation (version originale corrigée) */
nav {
    background-color: #1a472a;
    padding: 1.2rem;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Contenu principal */
.contenu-principal {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    padding-top: 80px; /* Espace pour le menu */
}

.section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* ... (gardez le reste de votre CSS original) */
/* -------------------------------------------------- */
/* Modification UNIQUEMENT pour le menu mobile caché */
/* -------------------------------------------------- */
@media (max-width: 768px) {
    nav {
        position: fixed;
        width: 100%;
        top: 0;
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-hidden {
        transform: translateY(-100%);
    }

    .contenu-principal {
        padding-top: 160px !important; /* Ajustez cette valeur */
    }

    /* Ajustements mineurs pour le menu */
    nav a {
        display: block;
        margin: 0.8rem 0;
        padding: 0.5rem;
    }
}
/* Menu horizontal */
.menu-principal {
    background: #1a472a;
    padding: 0 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.conteneur-menu {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.liens-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.liens-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.liens-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d0f0c0;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.liens-menu a:hover {
    color: #d0f0c0;
}

.liens-menu a:hover::after {
    width: 100%;
}

/* Version mobile */
@media (max-width: 768px) {
    .conteneur-menu {
        height: auto;
        padding: 1rem 0;
        flex-direction: column;
        gap: 1rem;
    }

    .liens-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .liens-menu a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        background: rgba(255,255,255,0.1);
        border-radius: 25px;
    }

    .liens-menu a::after {
        display: none; /* Désactive l'effet sur mobile */
    }
}
/* Pied de page stylisé */
footer {
    background-color: #1a472a;
    color: white;
    padding: 1.5rem 1rem;
    margin-top: 3rem;
    border-top: 2px solid #d0f0c0;
}

.conteneur-footer {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(208, 240, 192, 0.2);
}

.footer-section {
    text-align: center;
}

.footer-titre {
    color: #d0f0c0;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.lien-email {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.lien-email:hover {
    color: #d0f0c0;
    transform: translateY(-1px);
}

.logo-social {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s;
    color: #d0f0c0;
}

.logo-social:hover {
    color: white;
    background-color: rgba(208, 240, 192, 0.1);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.9;
}

.slogan {
    color: #d0f0c0;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .lien-email {
        font-size: 0.9rem;
    }
}
/* mise en forme de ma page a propos */

/* Styles spécifiques À propos - Version mobile first */
.about-section {
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
    padding: 2rem 0;
}

.text-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Réduit le padding sur mobile */
}

.columns-layout {
    display: block; /* Par défaut sur mobile */
    margin-top: 2rem;
}

.column {
    width: 100%;
    margin-bottom: 2rem;
}

.text-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin: 0 0.5rem;
}

h1 {
    color: #1a472a;
    font-size: 1.8rem; /* Taille réduite pour mobile */
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-box {
    padding: 1rem;
    margin: 1.5rem 0;
}

.elegant-quote {
    font-size: 1.1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.styled-list li {
    font-size: 0.95rem;
    padding-left: 1.5rem;
}

/* Version desktop */
@media (min-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .text-container {
        padding: 0 2rem;
    }

    .columns-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .text-card {
        padding: 2rem;
        margin: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Correction spécifique pour très petits écrans */
@media (max-width: 480px) {
    .text-container {
        padding: 0 0.5rem;
    }

    .text-card {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }
}
/* Ajoutez ces règles dans votre fichier style.css */
.text-card p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.highlight-box p {
    text-align: left; /* Conserve l'alignement naturel pour les encadrés */
}

.elegant-quote {
    text-align: center; /* Conserve l'alignement centré pour les citations */
}

/* Pour les petites résolutions */
@media (max-width: 480px) {
    .text-card p {
        hyphens: manual; /* Meilleur contrôle sur mobile */
        text-align: left; /* Alignement gauche sur très petits écrans */
    }
}


/* Design Minimaliste Futuriste */
.cyber-header {
    background: rgba(16, 22, 36, 0.98);
    padding: 2rem 0;
    position: relative;
    border-bottom: 1px solid rgba(208, 240, 192, 0.1);
}

.hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(208, 240, 192, 0.05), transparent 60%);
    pointer-events: none;
}

.header-core {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.logo-portal {
    width: 80px;
    height: 80px;
    position: relative;
    transition: transform 0.4s ease;
}

.hologram-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(208, 240, 192, 0.2));
}

.digital-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(208, 240, 192, 0.1), transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.header-titles {
    border-left: 2px solid #d0f0c0;
    padding-left: 2rem;
}

.cyber-title {
    color: #d0f0c0;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 0 10px rgba(208, 240, 192, 0.3);
}

.cyber-subtitle {
    color: rgba(208, 240, 192, 0.8);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin: 0.5rem 0 0;
}

/* Animation au survol */
.logo-portal:hover {
    transform: rotateZ(-5deg) scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-core {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .header-titles {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #d0f0c0;
        padding-top: 1rem;
    }

    .cyber-title {
        font-size: 2rem;
    }
}


/* Menu complet stylisé */
.neo-menu {
    background: linear-gradient(145deg, #1a472a, #2c5f2d);
    padding: 1rem 3rem;
    position: relative;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
}

.menu-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-link {
    color: #d0f0c0;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
}

.menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 8px;
}

.menu-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.menu-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Version mobile améliorée */
@media (max-width: 768px) {
    .neo-menu {
        padding: 1rem;
    }
    
    .menu-list {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 280px;
        background: #1a472a;
        flex-direction: column;
        padding: 80px 30px;
        gap: 1.5rem;
        transition: 0.4s ease;
    }

    .menu-link {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .menu-link:hover {
        transform: translateX(10px);
    }

    .hamburger {
        right: 1.5rem;
    }
}

/* Animation du bouton hamburger */
.menu-toggle:checked ~ .menu-list {
    left: 0;
}



/* pour la page nos prestations */

/* Styles globaux pour le corps */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Titre principal de la page */
.page-title {
    text-align: center;
    color: #2d572c;
    margin: 20px 0;
    font-size: 2rem;
}

/* Texte d'introduction */
.intro-text {
    text-align: center;
    margin: 0 10px 20px;
    color: #444;
    font-size: 1.1rem;
}

/* Grille des prestations */
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Carte individuelle */
.prestation-card {
    background-color: #e8f5e9;
    border: 1px solid #2d572c;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prestation-card h2 {
    color: #2d572c;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.prestation-card p {
    color: #555;
    font-size: 1rem;
}

/* Responsivité */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header .menu ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Styles pour la grille */
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Grille flexible */
    gap: 20px;
    padding: 20px;
}

/* Adaptations pour les petits écrans */
@media (max-width: 768px) {
    .prestations-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur les écrans étroits */
    }

    .prestation-card {
        padding: 15px;
        font-size: 0.9rem;
    }

    .prestation-card h2 {
        font-size: 1.2rem;
    }

    .prestation-card p {
        font-size: 0.9rem;
    }
}

/* Adaptations pour les très petits écrans (moins de 480px) */
@media (max-width: 480px) {
    .header {
        flex-direction: column;
        padding: 10px;
    }

    .header .menu ul {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .prestations-grid {
        padding: 10px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .prestation-card {
        padding: 10px;
    }

    .prestation-card h2 {
        font-size: 1rem;
    }

    .prestation-card p {
        font-size: 0.8rem;
    }
}



/* Structure Générale */
.contenu-principal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.intro-section {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #444;
}

/* Grille des Genres */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.genre-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.genre-card:hover {
    transform: translateY(-5px);
}

.image-frame {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.genre-card h3 {
    padding: 1rem;
    margin: 0;
    background: #2c5f2d;
    color: white;
}

.genre-list {
    padding: 1rem;
    margin: 0;
    list-style: none;
}

.genre-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.genre-list li:last-child {
    border-bottom: none;
}

/* Publications Récentes */
.publication-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.publication-card {
    text-align: center;
}

.book-cover {
    height: 300px;
    background: #f8f8f8;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.genre-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #e8f5e9;
    color: #2c5f2d;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .genre-card {
        margin-bottom: 1.5rem;
    }
}
/* Améliorations Mobile */
@media (max-width: 768px) {
    .cyber-header {
        padding: 15px;
    }

    .header-core {
        flex-direction: column;
        text-align: center;
    }

    .logo-portal {
        margin-bottom: 15px;
    }

    .grid-4-colonnes {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .cadre-oeuvre {
        margin: 0 10px;
    }

    .cadre-oeuvre img {
        height: 200px;
    }

    .info-oeuvre {
        padding: 1rem;
    }

    .neo-menu .menu-list {
        flex-direction: column;
        padding: 10px 0;
    }

    .menu-link {
        padding: 12px;
        font-size: 0.9rem;
    }

    .cyber-title {
        font-size: 1.8rem;
    }

    .cyber-subtitle {
        font-size: 1rem;
    }

    .section-intro h2 {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .cadre-oeuvre img {
        height: 180px;
    }

    .info-oeuvre h3 {
        font-size: 1.1rem;
    }

    .info-oeuvre p {
        font-size: 0.8rem;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 1rem;
    }
}
/* Menu Mobile */
.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1000;
    }

    .menu-list {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0d3d0d;
    }

    .menu-toggle:checked ~ .menu-list {
        display: flex;
        flex-direction: column;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background: #fff;
        transition: all 0.3s;
    }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 80vh;
    margin: 5% auto;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.8);}
    to {transform: scale(1);}
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #2ecc71;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.close:hover {
    color: #27ae60;
    transform: rotate(90deg);
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .close {
        top: 15px;
        right: 25px;
        font-size: 30px;
    }
}
/* Thème Cyberpunk */
.cyber-theme {
    background: #0a0a12;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Thème principal */
.cyber-theme {
    background: #0a0a12;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Header */
.cyber-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, #0a0a12, #1a1a2e);
}

.hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent, 
        #3fefef, 
        transparent);
    opacity: 0.1;
}

/* Navigation responsive */
.neo-menu {
    padding: 1rem;
    background: rgba(16, 16, 32, 0.9);
}

.menu-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.menu-list a {
    color: #3fefef;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.menu-list a:hover {
    background: rgba(63, 239, 239, 0.1);
}

.hamburger {
    display: none;
}

/* Conteneur principal */
.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Formulaire */
.cyber-form-section {
    background: rgba(16, 16, 32, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #3fefef;
    box-shadow: 0 0 30px rgba(63, 239, 239, 0.1);
}

.input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3fefef;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(63, 239, 239, 0.2);
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3fefef;
}

.cyber-button {
    background: #3fefef;
    color: #0a0a12;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.cyber-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 239, 239, 0.3);
}

/* Section informations */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(16, 16, 32, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #3fefef;
}

.info-card i {
    font-size: 1.5rem;
    color: #3fefef;
    margin-bottom: 1rem;
    display: block;
}



/* Footer */
.cyber-footer {
    text-align: center;
    padding: 2rem;
    background: #1a1a2e;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .menu-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a0a12;
        flex-direction: column;
        padding: 1rem;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1000;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: #3fefef;
        margin: 5px 0;
        transition: 0.4s;
    }

    .menu-toggle:checked ~ .menu-list {
        display: flex;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .cyber-header {
        padding: 1rem;
    }

    .input-group input,
    .input-group textarea {
        padding: 0.8rem;
    }
}
/* Nouveau système responsive */
.contact-main {
    padding: 20px;
}

.contact-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.form-section, 
.info-section {
    flex: 1 1 600px;
}

/* Adaptation mobile avancée */
@media (max-width: 768px) {
    .cyber-header {
        padding: 15px;
    }

    .cyber-title {
        font-size: 1.5rem;
    }

    .cyber-subtitle {
        font-size: 0.9rem;
    }

    .contact-wrapper {
        gap: 25px;
    }

    .form-section, 
    .info-section {
        flex-basis: 100%;
    }

    .input-group input,
    .input-group textarea {
        font-size: 16px !important;
        padding: 12px 15px !important;
    }

    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .info-card {
        padding: 15px !important;
    }

    .map-wrapper iframe {
        height: 250px !important;
    }

    /* Menu mobile optimisé */
    .neo-menu {
        position: relative;
    }

    .menu-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a12;
        flex-direction: column;
        display: none;
        z-index: 1000;
    }

    .menu-toggle:checked ~ .menu-list {
        display: flex;
    }

    .menu-list a {
        padding: 12px 20px !important;
    }
}

@media (max-width: 480px) {
    .cyber-button {
        width: 100%;
        padding: 15px !important;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .form-header h2 {
        font-size: 1.4rem !important;
    }

    .form-header p {
        font-size: 0.9rem;
    }
}
/* Menu mobile holographique */
.hamburger .bar {
    background: #3fefef;
    box-shadow: 0 0 5px #3fefef;
}

.menu-list {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(63, 239, 239, 0.3);
}

.menu-list a {
    transition: all 0.3s ease;
    position: relative;
}

.menu-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3fefef;
    transition: width 0.3s;
}

.menu-list a:hover::before {
    width: 100%;
}
/* Général */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #222;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.intro {
    padding: 30px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.intro h1 {
    color: #333;
    font-size: 36px;
}

.intro p {
    color: #666;
    font-size: 18px;
    margin-top: 20px;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

/* Publications */
.publications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 30px;
}

.publication-card {
    width: 280px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publication-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.publication-image {
    width: 100%;
    border-radius: 10px;
}

.publication-card h3 {
    font-size: 22px;
    color: #333;
    margin-top: 15px;
}

.resume {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

.read-more {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #005bb5;
}

/* Style général des publications */
.publication-card {
    width: 300px;
    margin: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

/* Effet de survol sur l'image */
.publication-card:hover {
    transform: scale(1.05);
}

.publication-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.publication-image:hover {
    transform: scale(1.1);
}

/* Style pour l'effet lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

/* Réagir aux écrans plus petits */
@media (max-width: 768px) {
    .publication-card {
        width: 100%;
        margin: 10px 0;
    }
}

/* Style des titres des œuvres */
.publication-card h3 {
    color: #2c3e50; /* Couleur de base */
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Effet de couleur au survol du titre */
.publication-card h3:hover {
    color: #e74c3c; /* Changer la couleur au survol */
    transform: translateY(-5px); /* Effet léger de décalage vers le haut */
}

/* Autres styles déjà existants */
.publication-card {
    width: 300px;
    margin: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.publication-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.publication-image:hover {
    transform: scale(1.1);
}



/* Modifier la couleur et la police du texte */
body {
    font-family: 'Roboto', sans-serif; /* Utiliser une police moderne */
    color: #2c3e50; /* Une couleur de texte sombre pour le contraste */
}

h1, h2, h3 {
    color: #e74c3c; /* Ajouter de la couleur sur les titres */
}
/* Responsive Design pour petits écrans */
@media (max-width: 768px) {
    body {
        background: linear-gradient(45deg, #8e44ad, #3498db); /* Modifier le dégradé sur les petits écrans */
    }

    .publication-card {
        width: 100%; /* Les cartes prennent toute la largeur de l'écran */
        margin: 10px;
    }
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
  }
  
  header {
    text-align: center;
    padding: 2rem;
    background: #5a9;
    color: white;
    border-bottom: 5px solid #4a7;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  main {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
  }
  
  .contact-form,
  .contact-details {
    flex: 1 1 50%;
    padding: 1rem;
  }
  
  .contact-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form h2 {
    margin-bottom: 1rem;
    color: #4a7;
  }
  
  form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  form button {
    background: #4a7;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  form button:hover {
    background: #5a9;
  }
  
  .contact-details {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-details h2 {
    color: #4a7;
  }
  
  .contact-details p {
    font-size: 1rem;
    color: #333;
  }
/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    color: #333;
  }
  
  /* Header */
  .contact-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, #5a9, #4a7);
    color: white;
    border-bottom: 5px solid #4a7;
  }
  
  .contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Main Container */
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  /* Contact Form */
  .contact-form {
    flex: 1 1 45%;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form h2 {
    margin-bottom: 1rem;
    color: #4a7;
  }
  
  form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  form button {
    background: #4a7;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background: #5a9;
  }
  
  form #responseMessage {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
  }
  
  /* Contact Details */
  .contact-details {
    flex: 1 1 45%;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-details h2 {
    color: #4a7;
    margin-bottom: 1rem;
  }
  
  .contact-details .details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .contact-details .details strong {
    color: #4a7;
  }
  
  .contact-details .details em {
    font-style: italic;
    color: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      gap: 2rem;
    }
  
    .contact-form,
    .contact-details {
      flex: 1 1 100%;
    }
  }
  .contact-header {
    position: relative;
    text-align: center;
    padding: 3rem 1rem;
    background-image: url('biblio.webp'); /* Image dans le même dossier */
    background-size: cover;
    background-position: center;
    color: white;
    height: 250px; /* Ajustez selon vos préférences */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-header .overlay {
    background: rgba(0, 0, 0, 0.6); /* Superposition pour lisibilité */
    padding: 2rem;
    border-radius: 10px;
  }
  
  .contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-header p {
    font-size: 1.2rem;
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
  }
      
  /* Prestations Header */
.prestations-header {
    text-align: center;
    padding: 2rem;
    background-color: #f4f4f4;
    color: #333;
    border-bottom: 2px solid #ddd;
  }
  
  .prestations-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff;
  }
  
  .prestations-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Prestations Container */
  .prestations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .prestation {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--accent-color, #007bff);
  }
  
  .prestation:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
  
  .prestation h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color, #007bff);
  }
  
  .prestation p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .prestations-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* Dynamic Colors */
  .prestation:nth-child(odd) {
    --accent-color: #28a745; /* Green */
  }
  
  .prestation:nth-child(even) {
    --accent-color: #17a2b8; /* Teal */
  }
/* Navbar styles */
.navbar {
    background-color: #007bff; /* Primary blue */
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .navbar li {
    display: inline;
  }
  
  .navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover {
    color: #ffcc00; /* Highlight color */
  }

 /* Footer Styles */
.footer {
    background-color: #001f3f; /* Dark blue background */
    color: #ffffff; /* White text */
    padding: 20px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-menu li {
    display: inline;
  }
  
  .footer-menu a {
    color: #ffcc00; /* Highlight color for menu links */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .footer-menu a:hover {
    color: #ffffff; /* Hover effect */
  }
  
  .footer-info {
    margin: 15px 0;
  }
  
  .footer-email {
    display: inline-block;
    margin-right: 15px;
    color: #ffcc00; /* Highlight color for email link */
    text-decoration: none;
    font-size: 1.1rem;
  }
  
  .footer-email:hover {
    text-decoration: underline;
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.1);
  }
  
  .facebook-link {
    text-decoration: none;
    color: #ffcc00; /* Highlight color for Facebook link */
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .facebook-link:hover {
    color: #ffffff;
  }
  
  .footer-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #cccccc; /* Lighter text for footer note */
  }
  
  /* Styles généraux */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
}

p {
    color: #555;
}

/* En-tête animé */
.animated-header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.header-titles h1 {
    font-size: 3rem;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

.header-titles p {
    font-size: 1.5rem;
    color: #ecf0f1;
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Menu de navigation */
.dynamic-nav {
    background: #2c3e50;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}

/* Contenu principal */
.main-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section, .mission-section, .services-section, .relax-section {
    margin-bottom: 60px;
}

.services-grid, .relax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card, .relax-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, .relax-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Pied de page */
.dynamic-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #f1c40f;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.slogan {
    font-style: italic;
    color: #f1c40f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .header-titles h1 {
        font-size: 2rem;
    }

    .header-titles p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
/* Styles généraux */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8; /* Fond clair par défaut */
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Appliquer un fond gris uniquement sur mobile */
@media (max-width: 768px) {
    body {
        background-color: #e0e0e0; /* Fond gris pour mobile */
    }
}

/* En-tête animé */
.animated-header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.header-titles h1 {
    font-size: 3rem;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

.header-titles p {
    font-size: 1.5rem;
    color: #ecf0f1;
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Menu de navigation */
.dynamic-nav {
    background: #2c3e50;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}

/* Contenu principal */
.main-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section, .mission-section, .services-section, .relax-section {
    margin-bottom: 60px;
}

.services-grid, .relax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card, .relax-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, .relax-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Pied de page */
.dynamic-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #f1c40f;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.slogan {
    font-style: italic;
    color: #f1c40f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .header-titles h1 {
        font-size: 2rem;
    }

    .header-titles p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
/* Styles généraux */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* En-tête animé */
.animated-header {
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Dégradé par défaut */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Appliquer un fond gris uniquement sur mobile */
@media (max-width: 768px) {
    .animated-header {
        background: #e0e0e0; /* Fond gris pour mobile */
        color: #333; /* Changer la couleur du texte pour qu'il soit lisible */
    }
}
/* Styles généraux */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8; /* Fond clair par défaut */
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}



/* Menu de navigation */
.dynamic-nav {
    background: #2c3e50;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}

/* Contenu principal */
.main-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff; /* Fond blanc par défaut */
}

/* Appliquer un fond gris uniquement sur mobile */
@media (max-width: 768px) {
    .main-content {
        background-color: #e0e0e0; /* Fond gris pour mobile */
    }
}

.welcome-section, .mission-section, .services-section, .relax-section {
    margin-bottom: 60px;
}

.services-grid, .relax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card, .relax-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, .relax-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Pied de page */
.dynamic-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #f1c40f;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.slogan {
    font-style: italic;
    color: #f1c40f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .header-titles h1 {
        font-size: 2rem;
    }

    .header-titles p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.header-titles h1 {
    font-size: 3rem;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

.header-titles p {
    font-size: 1.5rem;
    color: #ecf0f1;
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Menu de navigation */
.dynamic-nav {
    background: #2c3e50;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}

/* Contenu principal */
.main-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section, .mission-section, .services-section, .relax-section {
    margin-bottom: 60px;
}

.services-grid, .relax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card, .relax-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, .relax-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Pied de page */
.dynamic-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #f1c40f;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.slogan {
    font-style: italic;
    color: #f1c40f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .header-titles h1 {
        font-size: 2rem;
    }

    .header-titles p {
        font-size: 1rem;
        color: #333; /* Assurer la lisibilité sur fond gris */
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
/* --- Styles de base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* --- Structure principale --- */
header,
nav,
main,
footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #34495e;
    color: #fff;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #f39c12;
}

/* --- Sections générales --- */
.section {
    padding: 30px 15px;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- Cartes ou colonnes (Grille) --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
}

/* --- Boutons --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #f39c12;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d35400;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 15px 0;
    background-color: #2c3e50;
    color: #fff;
    font-size: 0.9rem;
}

/* --- Images --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* --- Médias Queries pour Responsiveness --- */

/* Pour les petits écrans (smartphones) */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar ul li {
        width: 100%;
        text-align: left;
    }

    .navbar ul li a {
        padding: 10px;
        display: block;
    }

    .section {
        text-align: left;
    }

    .btn {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* Pour les tablettes (600px à 1024px) */
@media (min-width: 600px) and (max-width: 1024px) {
    .navbar ul {
        gap: 10px;
    }

    .section {
        padding: 20px;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Pour les grands écrans (plus de 1024px) */
@media (min-width: 1024px) {
    .navbar ul {
        gap: 20px;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Styles pour le pied de page */
.footer {
    background-color: #333; /* Couleur de fond */
    color: #fff; /* Couleur du texte */
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espace entre les sections */
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne sur les petits écrans */
    gap: 15px; /* Espace entre les liens */
}

.footer-menu ul li {
    margin: 0;
}

.footer-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #007BFF; /* Changement de couleur au survol */
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Espace entre les éléments */
}

.footer-email {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #007BFF; /* Changement de couleur au survol */
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre l'icône et le texte */
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1); /* Effet de zoom au survol */
}

.footer-note {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 10px;
}

/* Responsive Design pour les petits écrans */
@media (max-width: 768px) {
    .footer-menu ul {
        flex-direction: column; /* Les liens s'empilent verticalement */
        gap: 10px; /* Espace réduit entre les liens */
    }

    .footer-menu ul li a {
        font-size: 0.9em; /* Taille de police réduite pour les petits écrans */
    }

    .footer-info {
        flex-direction: column; /* Les éléments s'empilent verticalement */
        gap: 5px; /* Espace réduit entre les éléments */
    }

    .footer-email {
        font-size: 0.9em; /* Taille de police réduite pour les petits écrans */
    }

    .footer-note {
        font-size: 0.8em; /* Taille de police réduite pour les petits écrans */
    }
}
/* --- Nouvelle en-tête --- */
.edition-header {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

/* Conteneur principal */
.header-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Section logo */
.logo-section {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Titre et sous-titre */
.title-section {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.main-title {
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Effet de fond */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .edition-header {
        height: 250px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .logo-section {
        width: 100px;
        height: 100px;
    }

    .logo-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .edition-header {
        height: 200px;
    }

    .main-title {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .logo-section {
        width: 80px;
        height: 80px;
    }

    .logo-image {
        width: 60px;
        height: 60px;
    }
}
/* --- Couleurs du texte ajustées --- */
.main-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffd700; /* Une teinte or pour un contraste élégant avec le dégradé */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 5px;
    color: #f3f3f3; /* Blanc doux légèrement atténué pour une meilleure lisibilité */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Autres ajustements */
.logo-section {
    box-shadow: 0 0 20px rgba(255, 223, 0, 0.7); /* Lueur dorée autour du logo */
}

.header-overlay {
    background: rgba(0, 0, 0, 0.3); /* Accentuation pour faire ressortir les textes */
}

/* Centrer uniquement les titres dans la section principale */
main h1, 
main h2, 
main h3, 
main h4, 
main h5, 
main h6 {
    text-align: center; /* Centre les titres */
    margin: 20px 0; /* Ajoute un espace vertical autour des titres */
}

/* Justification pour les textes dans la section principale */
main p, 
main li {
    text-align: justify; /* Justifie les paragraphes et les listes */
}

/* Ajustements spécifiques pour les petits écrans */
@media (max-width: 768px) {
    main h1, 
    main h2, 
    main h3, 
    main h4, 
    main h5, 
    main h6 {
        text-align: center; /* Maintient les titres centrés sur mobile */
    }

    main p, 
    main li {
        text-align: justify; /* Continue de justifier le texte pour une bonne lisibilité */
    }
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header.cyber-header {
    text-align: center;
    background-color: #1a1a2e;
    padding: 20px;
    color: #fff;
}

.header-titles .cyber-title {
    margin: 0;
    font-size: 2rem;
}

.contact-section {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    text-align: center;
    color: #333;
}

.contact-section p {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #162447;
}

#success-message {
    text-align: center;
    margin-top: 20px;
    color: #ff0000;
    font-weight: bold;
}

#success-message.hidden {
    display: none;
}

.hidden {
    visibility: hidden;
}

/* Correction pour mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header .logo {
        margin-bottom: 15px; /* Ajoute un espacement sous le logo */
        text-align: center;
    }

    header nav {
        width: 100%; /* Assure une largeur uniforme pour le menu */
        justify-content: center;
    }
}

/* Si tu utilises une image pour le logo */
header .logo img {
    max-width: 150px; /* Taille maximale de l'image */
    height: auto; /* Maintient les proportions */
    display: block; /* Centre automatiquement */
    margin: 0 auto;
}
/* Styles de base pour l'entête */
.futuristic-header {
    position: relative;
    height: 500px; /* Hauteur de l'entête */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Fond avec dégradé futuriste */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #ff9a9e 0%, /* Rose */
        #fad0c4 20%, /* Peach */
        #a1c4fd 40%, /* Bleu clair */
        #c2e9fb 60%, /* Bleu pastel */
        #fbc2eb 80%, /* Rose pâle */
        #a6c1ee 100% /* Bleu lavande */
    );
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite; /* Animation du dégradé */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contenu de l'entête */
.header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

/* Logo agrandi et mis en valeur */
.logo-container {
    margin-bottom: 30px;
}

.logo-image {
    max-width: 250px; /* Taille agrandie du logo */
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7)); /* Ombre lumineuse */
    transition: transform 0.3s ease, filter 0.3s ease; /* Animation au survol */
}

.logo-image:hover {
    transform: scale(1.1); /* Effet de zoom au survol */
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)); /* Ombre plus intense */
}

/* Titres et slogan */
.text-container {
    color: white; /* Couleur du texte */
}

.main-title {
    font-size: 4rem; /* Taille du titre */
    margin: 0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Ombre du texte */
}

.subtitle {
    font-size: 1.8rem; /* Taille du sous-titre */
    margin: 10px 0 0;
    font-style: italic;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7); /* Ombre du texte */
}

/* Responsive Design */
@media (max-width: 768px) {
    .futuristic-header {
        height: 400px; /* Réduit la hauteur pour les petits écrans */
    }

    .logo-image {
        max-width: 180px; /* Taille du logo réduite */
    }

    .main-title {
        font-size: 2.5rem; /* Taille du titre réduite */
    }

    .subtitle {
        font-size: 1.4rem; /* Taille du sous-titre réduite */
    }
}
/* Styles de base pour l'entête */
.futuristic-header {
    position: relative;
    height: 500px; /* Hauteur de l'entête */
    max-width: 1200px; /* Largeur réduite de l'entête */
    margin: 0 auto; /* Centrer l'entête */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-radius: 20px; /* Bords arrondis pour un effet moderne */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Ombre portée pour la profondeur */
}

/* Fond avec dégradé futuriste */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #ff9a9e 0%, /* Rose */
        #fad0c4 20%, /* Peach */
        #a1c4fd 40%, /* Bleu clair */
        #c2e9fb 60%, /* Bleu pastel */
        #fbc2eb 80%, /* Rose pâle */
        #a6c1ee 100% /* Bleu lavande */
    );
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite; /* Animation du dégradé */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contenu de l'entête */
.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

/* Logo agrandi et mis en valeur */
.logo-container {
    margin-bottom: 30px;
}

.logo-image {
    max-width: 300px; /* Taille encore plus grande du logo */
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7)); /* Ombre lumineuse */
    transition: transform 0.3s ease, filter 0.3s ease; /* Animation au survol */
}

.logo-image:hover {
    transform: scale(1.1); /* Effet de zoom au survol */
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)); /* Ombre plus intense */
}

/* Titres et slogan */
.text-container {
    color: white; /* Couleur du texte */
}

.main-title {
    font-size: 4rem; /* Taille du titre */
    margin: 0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Ombre du texte */
}

.subtitle {
    font-size: 1.8rem; /* Taille du sous-titre */
    margin: 10px 0 0;
    font-style: italic;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7); /* Ombre du texte */
}

/* Responsive Design */
@media (max-width: 768px) {
    .futuristic-header {
        height: 400px; /* Réduit la hauteur pour les petits écrans */
        max-width: 90%; /* Largeur réduite pour les petits écrans */
    }

    .logo-image {
        max-width: 200px; /* Taille du logo réduite */
    }

    .main-title {
        font-size: 2.5rem; /* Taille du titre réduite */
    }

    .subtitle {
        font-size: 1.4rem; /* Taille du sous-titre réduite */
    }
}
/* Styles de base pour le menu */
.neo-menu {
    background-color: #1a1a1a; /* Fond sombre pour contraster avec les couleurs éclatantes */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Ombre portée */
}

/* Bouton hamburger pour les petits écrans */
.menu-toggle {
    display: none; /* Caché par défaut */
}

.hamburger {
    display: none; /* Caché par défaut */
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Styles de base pour le menu */
.neo-menu {
    background-color: #1a1a1a;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Bouton hamburger pour les petits écrans */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Liste du menu */
.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-list li {
    margin: 0;
}

.menu-list a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Effets au survol */
.menu-list a:hover {
    background-color: #ff6f61;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Lien actif */
.menu-list .active {
    background-color: #ff6f61;
    color: #1a1a1a;
}

/* Styles pour les petits écrans */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .menu-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        gap: 0;
    }

    .menu-list li {
        width: 100%;
    }

    .menu-list a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* Afficher le menu lorsque le bouton est coché */
    .menu-toggle:checked ~ .menu-list {
        display: flex;
    }

    /* Animation du bouton hamburger */
    .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
/* Styles de base pour l'en-tête */
.futuristic-header {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Fond avec dégradé futuriste */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #ff9a9e 0%,
        #fad0c4 20%,
        #a1c4fd 40%,
        #c2e9fb 60%,
        #fbc2eb 80%,
        #a6c1ee 100%
    );
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contenu de l'en-tête */
.header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    padding: 20px;
}

/* Logo agrandi et mis en valeur */
.logo-container {
    margin-bottom: 20px;
}

.logo-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
}

/* Titres et slogan */
.text-container {
    color: white;
}

.main-title {
    font-size: 4rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.subtitle {
    font-size: 1.8rem;
    margin: 10px 0 0;
    font-style: italic;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .futuristic-header {
        height: 40vh;
        min-height: 250px;
    }

    .logo-image {
        max-width: 80%;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }
}
/* Styles existants conservés */

/* Styles spécifiques pour la page témoignages */
.testimonial-intro {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1200px;
    width: 90%; /* Ajout pour la responsivité */
}

.glow-text {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Taille de police responsive */
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.intro-text {
    font-size: clamp(1rem, 2vw, 1.2rem); /* Taille de police responsive */
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
    padding: 0 1rem; /* Ajout de padding pour les petits écrans */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ajusté pour meilleure responsivité */
    gap: 1.5rem; /* Réduit pour les petits écrans */
    padding: 1rem; /* Réduit pour les petits écrans */
    max-width: 1400px;
    margin: 0 auto;
    width: 95%; /* Ajout pour la responsivité */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem; /* Ajusté pour les petits écrans */
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: clamp(60px, 8vw, 80px); /* Taille responsive */
    height: clamp(60px, 8vw, 80px); /* Taille responsive */
    border-radius: 50%;
    background: linear-gradient(45deg, #2196f3, #e91e63);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.avatar-placeholder {
    color: white;
    font-size: clamp(1.2rem, 2vw, 1.5rem); /* Taille responsive */
    font-weight: bold;
}

.author-info h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem); /* Taille responsive */
    color: #333;
    margin: 0.5rem 0;
    text-align: center; /* Ajout pour meilleur alignement */
}

.book-title {
    color: #666;
    font-style: italic;
    text-align: center; /* Ajout pour meilleur alignement */
    font-size: clamp(0.9rem, 1.5vw, 1rem); /* Taille responsive */
}

.testimonial-text {
    color: #444;
    line-height: 1.6;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem); /* Taille responsive */
    position: relative;
    padding: 1rem; /* Ajout de padding pour les citations */
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: clamp(1.5rem, 3vw, 2rem); /* Taille responsive */
    color: #2196f3;
    position: absolute;
}

.testimonial-text::before {
    left: -5px;
    top: -5px;
}

.testimonial-text::after {
    right: -5px;
    bottom: -15px;
}

/* Galerie Photo */
.photo-gallery {
    padding: 2rem 1rem; /* Ajusté pour les petits écrans */
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    margin-top: 2rem;
    border-radius: 15px;
    width: 95%; /* Ajout pour la responsivité */
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.gallery-slide {
    min-width: 100%;
    padding: 0.5rem; /* Réduit pour les petits écrans */
}

.image-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 0.5rem; /* Réduit pour les petits écrans */
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: clamp(0.5rem, 2vw, 1rem); /* Taille responsive */
    cursor: pointer;
    border-radius: 50%;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem); /* Taille responsive */
    transition: background 0.3s ease;
    z-index: 10;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Media Queries pour la responsivité */
@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .gallery-controls {
        padding: 0 0.25rem;
    }

    .prev-btn,
    .next-btn {
        padding: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-intro {
        padding: 2rem 1rem;
    }

    .glow-text {
        margin-bottom: 1rem;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 1.5rem;
    }

    .photo-gallery {
        padding: 1rem;
    }
}

/* Ajustements pour très petits écrans */
@media screen and (max-width: 320px) {
    .testimonial-card {
        padding: 0.75rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .gallery-slide {
        padding: 0.25rem;
    }
}
:root {
    --color-primary: #8e44ad;
    --color-secondary: #2ecc71;
    --color-accent: #e74c3c;
    --color-text: #2c3e50;
    --color-light: #ecf0f1;
    --gradient-header: linear-gradient(120deg, #9b59b6, #3498db);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--color-light);
    color: var(--color-text);
}

/* En-tête élégant */
.elegant-header {
    position: relative;
    height: 300px;
    background: var(--gradient-header);
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="white" stroke-width="0.25" stroke-opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
}

.header-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.logo-frame {
    position: relative;
    width: 120px;
    height: 120px;
}

.logo {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.logo-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    opacity: 0.5;
}

.brand-text {
    text-align: center;
}

.brand-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.brand-text p {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
}

/* Menu Ruban */
.ribbon-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.menu-items {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1rem;
}

.menu-items a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-items a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-items a:hover {
    color: var(--color-primary);
}

.menu-items a:hover::after {
    width: 80%;
}

.menu-toggle,
.menu-icon {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elegant-header {
        height: auto;
        min-height: 250px;
    }

    .brand-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .logo-frame {
        width: 100px;
        height: 100px;
    }

    .brand-text h1 {
        font-size: 2rem;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        padding: 1rem;
    }

    .hamburger {
        width: 24px;
        height: 20px;
        position: relative;
    }

    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-primary);
        transition: all 0.3s ease;
    }

    .hamburger span {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span::before {
        top: -8px;
    }

    .hamburger span::after {
        bottom: -8px;
    }

    .menu-toggle:checked ~ .menu-icon .hamburger span {
        background: transparent;
    }

    .menu-toggle:checked ~ .menu-icon .hamburger span::before {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle:checked ~ .menu-icon .hamburger span::after {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .menu-items {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .menu-toggle:checked ~ .menu-items {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-items a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .menu-items a::after {
        display: none;
    }

    .menu-items a:hover {
        background: var(--color-light);
    }
}
/* Styles de la section Newsletter */
.newsletter-section {
    padding: 40px 20px;
    background: #f4f7fc;
    text-align: center;
}

.newsletter-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.newsletter-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Formulaire de Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #007bff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #0056b3;
}

.newsletter-submit {
    padding: 12px;
    background-color: #007bff;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-submit:hover {
    background-color: #0056b3;
}

/* Message de confirmation */
#success-message {
    font-size: 0.9rem;
    color: #4caf50;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-container {
        padding: 20px;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-description {
        font-size: 1rem;
    }

    .newsletter-input {
        font-size: 1rem;
        padding: 10px;
    }

    .newsletter-submit {
        font-size: 1rem;
        padding: 10px;
    }
}
/* Styles pour les liens sociaux */
.social-link {
    display: flex;
    gap: 15px; /* Espace entre les icônes */
    align-items: center;
    margin-top: 10px;
  }
  
  .social-link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit; /* Utilise la couleur du texte parent */
  }
  
  .social-link img {
    width: 24px; /* Taille des icônes */
    height: 24px;
    margin-right: 8px; /* Espace entre l'icône et le texte */
  }
  
  /* Style spécifique pour WhatsApp */
  .whatsapp-link {
    color: #25D366; /* Couleur verte de WhatsApp */
  }
  
  .whatsapp-link:hover {
    opacity: 0.8; /* Effet de survol */
  }
  /* Style du bouton WhatsApp futuriste */
.whatsapp-button {
    text-decoration: none;
}

.whatsapp-button button {
    background-color: #25D366; /* Couleur de fond de WhatsApp */
    color: white;
    font-size: 18px;
    padding: 15px 40px;
    border: 2px solid #25D366;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); /* Ombre douce */
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.whatsapp-button button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.whatsapp-button button:hover {
    background-color: #128C7E; /* Changer la couleur de fond au survol */
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
    transform: translateY(-5px); /* Effet de décalage */
}

.whatsapp-button button:hover::before {
    width: 400%;
    height: 400%;
}

.whatsapp-button button span {
    position: relative;
    z-index: 1;
}

/* Effet au clic */
.whatsapp-button button:active {
    transform: translateY(2px); /* Effet de "pression" */
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}
.header-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.2;
  }
  /* Pied de page */
.footer {
    text-align: center;
    padding: 30px;
    background: #1c1c1c;
    margin-top: 50px;
    font-size: 1rem;
}

.footer a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #e67e22;
}
/* Style général */

/* Importation d'une police élégante */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #87CEEB; /* Bleu ciel */
    --secondary-color: #004080; /* Bleu foncé pour contraste */
    --accent-color: #FF6B6B; /* Rouge doux pour accentuer */
    --text-color: #333;
    --background-color: #f4f8fb;
    --menu-hover: #00509e;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* En-tête */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

/* Menu */
nav {
    background: var(--secondary-color);
    padding: 15px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
    border-radius: 5px;
}

nav ul li a:hover {
    background: var(--menu-hover);
}

/* Contenu principal */
main {
    padding: 40px;
    text-align: center;
}

h1, h2, h3 {
    color: var(--secondary-color);
}

/* Cartes de service */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
}

/* Pied de page */
footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Effet général sur les liens */
a:hover {
    color: var(--accent-color);
}
@media (max-width: 768px) {
    * {
        animation: inherit !important;
        transition: inherit !important;
    }
}
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-color-scheme: dark) {
    a {
        color: #80cfff !important; /* Bleu ciel adapté au mode sombre */
    }
}


