 /* --- VARIABLES DE COULEURS --- */
        :root {
            --primary: #115e59; /* Teal foncé */
            --primary-light: #0d9488; /* Teal clair */
            --bg-color: #f8f9fa;
            --text-main: #374151;
            --text-light: #6b7280;
            --white: #ffffff;
            --border: #e5e7eb;
            
            /* Couleurs spécifiques aux ateliers */
            --amber-bg: #fef3c7; --amber-text: #92400e;
            --cyan-bg: #cffafe; --cyan-text: #155f75;
            --green-bg: #dcfce7; --green-text: #166534;
        }

        /* --- RESET & BASE --- */
        * { box-sizing: border_box; margin: 0; padding: 0; }
        
        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
        }

        h1, h2, h3, .modal-title {
            font-family: 'Playfair Display', serif;
        }

        /* --- LAYOUT UTILITIES --- */
        .container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            background: var(--white);
            padding: 20px 20px 30px 20px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            position: relative; /* Pour positionner le menu en absolu par rapport au header */
        }

        /* --- NOUVEAU STYLE DU MENU DÉROULANT --- */
        .menu-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 100;
            text-align: left;
        }

        .menu-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
        }

        .menu-btn:hover {
            color: var(--primary-light);
        }

        .menu-btn span {
            font-size: 1rem;
            display: none; /* Masqué sur très petits écrans si désiré, ou visible */
        }
        @media (min-width: 480px) {
            .menu-btn span { display: inline; }
        }

        /* Le Menu caché par défaut */
        .dropdown-nav {
            display: none; /* Caché */
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 180px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            flex-direction: column;
            animation: slideDown 0.2s ease-out;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Classe ajoutée par JS pour afficher le menu */
        .dropdown-nav.show {
            display: flex;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-main);
            padding: 5px 20px;
            font-weight: 600;
            transition: background 0.2s;
            border-bottom: 1px solid #f3f4f6;
        }

        .nav-link:last-child {
            border-bottom: none;
        }

        .nav-link:hover {
            background-color: #f9fafb;
            color: var(--primary);
        }

        .nav-link.active {
            color: var(--primary);
            background-color: #f0fdfa;
        }

        .header h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 10px;
            margin-top: 20px; /* Espace pour ne pas chevaucher le menu sur mobile */
        }

        .header p {
            font-size: 1.1rem;
            color: var(--text-light);
            font-style: italic;
        }

        /* --- CARTE ATELIER (RESPONSIVE) --- */
        .workshop-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
            padding-bottom: 50px;
        }

        .card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column; /* Mobile d'abord : image dessus, texte dessous */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background-color: #eee;
        }

        .card-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* HEADER DE LA CARTE */
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        /* TAGS (Débutant, etc.) */
        .tag {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .tag-amber { background: var(--amber-bg); color: var(--amber-text); border: 1px solid #fcd34d; }
        .tag-cyan { background: var(--cyan-bg); color: var(--cyan-text); border: 1px solid #67e8f9; }
        .tag-green { background: var(--green-bg); color: var(--green-text); border: 1px solid #86efac; }

        /* INFO (Date, heure) */
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .meta-info i { margin-right: 5px; }

        .description {
            color: #4b5563;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 8;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .description2 {
            color: #4b5563;
            margin-bottom: 20px;
        }

        /* FOOTER DE LA CARTE */
        .card-footer {
            border-top: 1px solid var(--border);
            padding-top: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .participants {
            font-size: 0.9rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
        }

        .actions {
            display: flex;
            gap: 10px;
        }

        /* BOUTONS */
        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1; /* Sur mobile, les boutons prennent toute la largeur */
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #d1d5db;
            color: #4b5563;
        }
        .btn-outline:hover { background: #f3f4f6; }

        .btn-primary {
            background: var(--primary);
            color: white;
            border: 1px solid var(--primary);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }

        .btn-disabled {
            background: #e5e7eb;
            color: #9ca3af;
            cursor: not-allowed;
            border: none;
        }

        /* --- RESPONSIVE DESKTOP (Media Query) --- */
        @media (min-width: 768px) {
            .card {
                flex-direction: row; /* L'image passe à gauche */
                height: auto;
            }
            .card-image {
                width: 280px;
                height: auto;
            }
            .card-footer {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            .actions {
                width: auto;
            }
            .btn {
                flex: none; /* Les boutons reprennent leur taille naturelle */
            }
        }

         /* --- MODALE --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active { display: flex; opacity: 1; }

        .modal-box {
            background: white;
            border-radius: 12px;
            max-width: 650px;
            width: 100%;
            padding: 35px;
            position: relative;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .close-modal {
            position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 1.5rem; color: #9ca3af; cursor: pointer;
            width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
        }
        .close-modal:hover { background: #f3f4f6; color: #374151; }

        .modal-title { font-size: 1.8rem; color: var(--primary); margin-bottom: 20px; padding-right: 40px; line-height: 1.2; }

        .modal-content-scroll { overflow-y: auto; padding-right: 5px; }
        
        /* Galerie d'images dans la modale */
        .modal-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .modal-gallery img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        .modal-gallery img:hover { transform: scale(1.03); }


        /* --- FOOTER --- */
        footer {
            background: #1f2937;
            color: white;
            padding: 30px 20px;
            text-align: center;
            margin-top: auto;
        }
        
        .footer-link {
            color: #9ca3af;
            text-decoration: underline;
            transition: color 0.2s;
        }
        .footer-link:hover {
            color: white;
        }

         /* --- CONTENU SPÉCIFIQUE CONTACT --- */
        .contact-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 25px auto;
            border: 4px solid #f0fdfa;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .bio-text {
            color: #4b5563;
            margin-bottom: 30px;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .contact-divider {
            height: 1px;
            background: var(--border);
            width: 100px;
            margin: 30px auto;
        }

        /* Bouton Email sécurisé */
        .btn-email {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: var(--primary);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 6px rgba(17, 94, 89, 0.2);
        }

        .btn-email:hover {
            background-color: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(17, 94, 89, 0.3);
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 30px 20px;
            text-align: center;
            margin-top: auto;
        }

        .footer-link { color: #9ca3af; text-decoration: underline; }
/* --- BOUTONS RÉSEAUX SOCIAUX --- */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: white;
    margin: 10px;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Couleur Instagram (Dégradé officiel) */
.btn-insta {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}

/* Couleur Etsy (Orange officiel) */
.btn-etsy {
    background-color: #F16521; 
}


/* --- CONTENU SPÉCIFIQUE PRÉSENTATION --- */
        .intro-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .intro-text {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #4b5563;
        }

        /* Grille Photos */
        .gallery-title {
            text-align: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .gallery-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--primary-light);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .gallery-grid {
            display: grid;
            /* Responsive : colonnes automatiques min 280px */
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }

        .gallery-item {
            position: relative;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Effet de zoom au survol */
        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            text-align: center;
            font-size: 0.9rem;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 30px 20px;
            text-align: center;
            margin-top: auto;
        }
        .footer-link { color: #9ca3af; text-decoration: underline; }

        .footer2 { font-weight: bold; color: #115e59; }

        .image-gauche {
  float: right;
  margin: 0 15px 10px 0;
}

.bouton-mail { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; padding: 0; margin: 0; vertical-align: middle; line-height: 1; background-color: #1f4380; border-radius: 50%; color: white; text-decoration: none; transition: transform 0.2s ease, background-color 0.2s ease; } .bouton-mail svg { width: 18px; height: 18px; fill: currentColor; display: block; }

.blue-txt {color: #0b3c80;}


/* ==========================================================================
   ICONES

   Dessinees directement dans les pages (balises <svg class="icone">), sans
   aucune bibliotheque exterieure. Elles prennent la taille et la couleur du
   texte qui les entoure : rien a regler au cas par cas.
   ========================================================================== */

.icone {
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.2em;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Reprend l'espacement qu'appliquait l'ancienne balise <i> */
.meta-info .icone { margin-right: 5px; }


/* ==========================================================================
   FORMULAIRE DE CONTACT
   ========================================================================== */

.formulaire {
    text-align: left;          /* .contact-content centre tout, pas le formulaire */
    max-width: 560px;
    margin: 0 auto;
}

.champ {
    margin-bottom: 22px;
}

/* Prenom et nom cote a cote sur grand ecran, l'un sous l'autre sur mobile */
.champs-paire {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 520px) {
    .champs-paire {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.champ label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    color: #374151;
    font-size: 0.95rem;
}

.champ input[type="text"],
.champ input[type="email"],
.champ textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.champ input:focus,
.champ textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.champ textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

/* Le selecteur nomme l'element (input / textarea) et pas seulement la classe :
   sans cela, la regle ".champ input[type=..]" ci-dessus, plus specifique,
   garderait le dessus et les champs texte resteraient gris en cas d'erreur. */
.champ input.en-erreur,
.champ textarea.en-erreur {
    border-color: #dc2626;
    background: #fef2f2;
}

.champ .erreur {
    display: block;
    margin-top: 6px;
    color: #b91c1c;
    font-size: 0.87rem;
}

/* Case de consentement : la case et son texte alignes proprement */
.champ-case label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 0.9rem;
    color: #4b5563;
    cursor: pointer;
    line-height: 1.5;
}

.champ-case input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 1px 0 0 0;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.btn-envoyer {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

/* Champ piege a robots : invisible sans etre display:none, que certains
   robots savent detecter. Egalement retire du parcours au clavier. */
.pot-de-miel {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.message-erreur-global {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 25px;
    text-align: left;
}

.message-succes {
    padding: 20px 0 10px;
}

.message-succes h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.6rem;
    margin: 18px 0 12px;
}

.message-succes p {
    color: #4b5563;
    margin-bottom: 28px;
}

.icone-succes {
    width: 58px;
    height: 58px;
    color: var(--primary-light);
    stroke-width: 1.6;
}


/* ==========================================================================
   PAGE MENTIONS LEGALES
   ========================================================================== */

.legal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #4b5563;
    line-height: 1.7;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.3rem;
    margin: 20px 0 10px 0;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content a {
    color: var(--primary-light);
}

@media (max-width: 600px) {
    .legal-content { padding: 20px 20px; }
}