/* Importation des polices Google */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:wght@700&display=swap');

/* Réinitialisation globale */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #2C5551;
    background: linear-gradient(to bottom, #ffffff, #eeeeee, #dddddd);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Conteneur global pour les sections */
.section {
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

/* Style du header */
.header {
    background: #ffffff;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Utiliser space-between pour mieux distribuer les éléments */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo img {
    max-height: 60px;
}

/* Style du menu burger */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #2C5551;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

/* Animation pour le menu burger (croix lors de l'ouverture) */
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-content {
    transition: margin-top 0.3s ease;
}

/* Icônes des réseaux sociaux */
.social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-right: 30px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-iconss img {
    margin-top: 10px;
    width: 120px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Menu de navigation */
.nav-list {
    display: flex;
    justify-content: center;
    /* Centre les éléments du menu */
    list-style: none;
    padding: 0;
    margin: 0 auto;
    /* Centrer la nav-list en mode desktop */
    gap: 20px;
    font-size: 1.2em;
    flex-wrap: wrap;
    flex: 2;
    /* Assurer que la nav prend plus d'espace que les icônes */
}

.nav-list a {
    text-decoration: none;
    color: #2C5551;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: #ffffff;
    background: #2C5551;
    transform: scale(1.05);
}

/* Introduction */
.introduction {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
    padding: 0px 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 900px;
}

.intro-content {
    max-width: 80%;
    flex: 1 1 100%;
}

.introduction h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 10px;
    color: #2C5551;
}

.introduction p {
    font-size: 1.2em;
    margin: 20px 0;
}

.contact-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background: #2C5551;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background: #2C5551;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Section des images additionnelles */
.additional-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.additional-images img {
    max-width: 100%;
    width: calc(70% - 20px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Reviews */
.reviews {
    padding: 0px 20px;
    margin-top: 0;
    text-align: center;
    width: 100%;
}

.reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2C5551;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.review {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 300px;
}

.review:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review h3 {
    font-size: 1.4em;
    color: #004ff9;
    margin-bottom: 10px;
}

.review p {
    margin: 0 0 15px;
    line-height: 1.5;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.more-reviews {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: #2C5551;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
}

.more-reviews:hover {
    background: #000000;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #2C5551;
    color: white;
    text-align: center;
    padding: 50px 0;
    margin-top: 40px;
    width: 100%;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: inline;
    margin: 0 15px;
}

.footer-list a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #fff;
}

.footer .social-icons {
    margin-top: 8px;
    margin-right: 0;
    justify-content: center;
}

/* Media Queries pour la Responsivité */
@media (max-width: 1024px) {
    .header {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .burger-menu {
        display: flex;
        margin: 0 auto;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        position: absolute;
        top: 70px;
        right: 0;
        z-index: 999;
    }

    .nav-list.active {
        display: flex;
    }

    .header-social-icons {
        display: none;
        /* Masquer les icônes sociales */
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px;
        justify-content: center;
    }

    .burger-menu {
        display: flex;
        margin: 0 auto;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        padding: 10px;
        text-align: center;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .header-social-icons {
        display: none;
        /* Masquer les icônes sociales */
    }
}

/* A PROPOS /*

/* Style pour la section "À Propos" et "Vision" */
.about-content,
.vision-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* Centre le contenu horizontalement */
    gap: 60px;
    /* Augmente l'espace entre le texte et l'image */
    padding: 40px 20px;
    max-width: 1200px;
    /* Limite la largeur totale */
    margin: 0 auto;
    /* Centre le conteneur sur la page */
}

.about-text,
.vision-text {
    flex: 1 1 40%;
    /* Le texte occupe 40% de l'espace disponible */
    max-width: 500px;
    text-align: left;
    /* Aligne le texte à gauche */
}

.about-image,
.vision-image {
    flex: 1 1 50%;
    /* Les images occupent 60% de l'espace disponible */
    max-width: 700px;
    /* Augmente la taille maximale des images */
}

.about-image img,
.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Pour la section "À Propos", image à droite */
.about-content {
    flex-direction: row;
    /* Texte à gauche, image à droite */
}

/* Pour la section "Vision", image à gauche */
.vision-content {
    flex-direction: row;
    /* Texte à droite, image à gauche */
}

/* Responsivité pour les petits écrans */
@media (max-width: 768px) {

    .about-content,
    .vision-content {
        flex-direction: column;
        /* Passe en colonne pour petits écrans */
        text-align: center;
        /* Centre le texte sur petits écrans */
    }

    .about-text,
    .vision-text {
        max-width: 90%;
        /* Largeur ajustée pour petits écrans */
    }

    .about-image,
    .vision-image {
        max-width: 90%;
        /* Largeur ajustée pour petits écrans */
    }
}

/* CONTACT /*

/* Style pour la section du formulaire de contact */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    transition: margin-top 0.3s ease;
}

.contact-section .iframe-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    padding-top: 150%;
    /* Ratio hauteur/largeur (1259px / 640px * 100) */
}

.contact-section .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #2C5551;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    /* Inclut le padding et la bordure dans la largeur totale */
    resize: vertical;
    /* Permet uniquement le redimensionnement vertical */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2C5551;
}

.submit-button {
    padding: 15px 20px;
    background: #2C5551;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
    background: #000;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsivité pour les petits écrans */
@media (max-width: 768px) {

    .contact-form,
    .text-area {
        max-width: 90%;
    }
}

/* MARIAGE */

/* Styles pour la section d'introduction de mariage */
.mariage-introduction {
    padding: 0px 20px;
    border-radius: 10px;
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
}

.mariage-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.mariage-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: #2C5551;
    margin-bottom: 20px;
}

.mariage-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.mariage-images {
    display: grid;
    gap: 20px;
    padding: 40px 20px;
    margin-top: 40px;
    grid-template-columns: repeat(4, 1fr);
    /* 4 colonnes pour équilibrer sur plusieurs lignes */
    grid-auto-rows: 200px;
    /* Hauteur de base des lignes */
    grid-auto-flow: dense;
    /* Remplit les espaces automatiquement pour éviter les trous */
}

.mariage-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Assigner différentes tailles pour créer un effet Bento */
.mariage-images img:nth-child(1) {
    grid-column: span 2;
    /* Image large */
    grid-row: span 2;
    /* Image haute */
}

.mariage-images img:nth-child(3) {
    grid-column: span 1;
    /* Petite image */
    grid-row: span 2;
    /* Image haute */
}

.mariage-images img:nth-child(4) {
    grid-column: span 2;
    /* Image large */
    grid-row: span 1;
    /* Image large */
}

.mariage-images img:nth-child(6) {
    grid-column: span 2;
    /* Image large */
    grid-row: span 1;
    /* Image large */
}

/* Responsivité pour ajuster le bento sur les petits écrans */
@media (max-width: 768px) {
    .mariage-images {
        grid-template-columns: repeat(2, 1fr);
        /* Réduire à 2 colonnes sur petits écrans */
        grid-auto-rows: 150px;
        /* Hauteur de base réduite */
    }
}

@media (max-width: 480px) {
    .mariage-images {
        grid-template-columns: repeat(2, 1fr);
        /* Maintenir 2 colonnes sur très petits écrans */
        grid-auto-rows: 120px;
        /* Hauteur de base encore plus petite */
    }

    .mariage-main-title {
        font-size: 2.2em;
        /* Ajustement du titre pour petits écrans */
    }

    .mariage-description {
        font-size: 1em;
        /* Ajustement des paragraphes pour petits écrans */
    }
}

/*VINTAGE BOOTH */

/* Styles pour la section vintagephotobooth */
.vintagephotobooth {
    display: flex;
    justify-content: center;
    /* Centre les images horizontalement */
    gap: 15px;
    /* Réduit l'espace entre les deux images */
    padding: 20px 0;
    /* Espace au-dessus et en dessous de la section */
}

.vintagephotobooth img {
    width: 50%;
    /* Réduction de la taille des images */
    height: auto;
    border-radius: 8px;
    /* Coins légèrement arrondis pour un aspect moderne */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Ombre douce pour un effet de profondeur */
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Animation douce au survol */
}

.vintagephotobooth img:hover {
    transform: scale(1.01);
    /* Zoom subtil au survol */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Ombre plus marquée pour plus de dynamisme */
}

/* Styles pour la section photobooth */
.photobooth {
    display: flex;
    justify-content: center;
    /* Centre les images horizontalement */
    gap: 15px;
    /* Réduction de l'espace entre les images */
    padding: 20px 0;
    /* Espace au-dessus et en dessous de la section */
}

.photobooth img {
    width: 20%;
    /* Réduction de la taille des images */
    height: auto;
    border-radius: 8px;
    /* Coins légèrement arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Ombre douce */
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photobooth img:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-title {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

/* Pour les écrans de taille moyenne (tablettes par exemple) */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        /* Deux colonnes */
        gap: 20px;
    }
}

/* Pour les petits écrans (mobiles) */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
        /* Une seule colonne */
        gap: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    /* Priorité maximale pour s'assurer que la modal est bien au-dessus */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 10000;
    /* Toujours au-dessus de l'arrière-plan modal */
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
}

/* Nouveau style pour la section blog */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #2C5551;
    background: linear-gradient(to bottom, #ffffff, #eeeeee, #dddddd);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section Blog */
.blog-section {
    display: flex;
    flex-wrap: wrap;
    /* Permet de gérer le wrapping */
    align-items: flex-start;
    /* Aligne les articles en haut */
    justify-content: center;
    /* Centre les articles horizontalement */
    padding: 20px;
    /* Réduit le padding pour les écrans plus petits */
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    /* Fond blanc avec opacité */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Ombre subtile */
    margin: 20px 0;
    /* Espacement entre les articles */
}

.blog-image {
    width: 100%;
    /* Prend 100% de la largeur par défaut */
    max-width: 300px;
    /* Limite la largeur de l'image */
    padding: 10px;
}

.blog-image img {
    max-width: 100%;
    /* L'image s'adapte à la largeur de son conteneur */
    border-radius: 10px;
}

.blog-text {
    width: 100%;
    /* Prend 100% de la largeur par défaut */
    padding-left: 20px;
    text-align: left;
}

/* Media Queries pour les écrans plus larges */
@media (min-width: 768px) {
    .blog-image {
        width: 25%;
        /* 25% pour les écrans moyens et plus larges */
    }

    .blog-text {
        width: 70%;
        /* 70% pour le texte */
    }

    .blog-section {
        padding: 50px 0;
        /* Plus de padding pour les écrans plus grands */
    }
}

@media (min-width: 1200px) {
    .blog-section {
        max-width: 1200px;
        /* Limite la largeur maximale de la section blog */
        margin: 20px auto;
        /* Centrer la section pour des écrans très larges */
    }
}

/* Style de base pour la fenêtre modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 60px 0;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    transition: transform 0.25s ease;
}

/* Styles pour la modale */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

/* Effet de fermeture */
.close {
    position: absolute;
    top: 20px;
    /* Ajoutez une marge pour éviter le chevauchement */
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Styles pour l'image dans la modale */
#modalImg {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    margin: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    /* Optionnel pour un effet esthétique */
}

/* Effet de survol des images miniatures */
.image-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Agrandissement et légère transparence lors du survol */
.image-thumbnail:hover {
    transform: scale(1);
    /* Augmente légèrement l'effet */
    opacity: 0.8;
}

.encarts-portage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
}

.encart {
    background-color: #ffffff;
    border: 2px solid #f4b9a9;
    border-radius: 5px;
    padding: 25px 30px;
    max-width: 550px;
    flex: 1 1 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.encart h2 {
    color: #e08778;
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 1rem;
}

.encart h2 span {
    font-size: 1.5em;
    display: block;
    margin-top: 0.3em;
}

.encart ul {
    list-style: none;
    padding: 0;
}

.encart li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 1rem;
    font-size: 1.05em;
    line-height: 1.5;
}

.encart li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .encart {
        text-align: center;
    }

    .encart ul {
        padding-left: 0;
    }

    .encart li {
        padding-left: 1.5em;
        text-align: left;
    }

    .additional-images img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

.vignettes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.vignette {
    position: relative;
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vignette:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.vignette img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vignette p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .vignette {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .vignette {
        flex: 1 1 100%;
    }
}

.titre-atelier {
    color: #e08778;
}