:root{
    --primaryColor: #f8b800;
    --darkColor: #8B0000;
}
body{
    margin: 0;
    padding-top: 83px; /* pour compenser le header fixed */
}

/* HEADER */
.titre{
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    background-color: #D8CFC4;
    width: 100%;
    padding: 15px 40px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}
.titre .logo img{
    width: 150px; /* taille fixe mieux que 100% */
    height: auto;
    display: block;
}

/* CONTACT HEADER */
.contact-header{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--darkColor);
    white-space: nowrap;
}
.contact-header i{
    color: var(--primaryColor);
    font-size: 1.1rem;
}

/* NAVIGATION */
#toggle-btn{
    display: none;
    cursor: pointer;
    color: var(--darkColor);
}

nav ul{
    display: flex;
    justify-content: center;
    gap: 5px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li{
    position: relative;
    font-size: 15px;
    font-weight: 600;
    height: 45px;
    line-height: 45px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav ul li a{
    color: #4A4A4A;
    text-decoration: none;
    padding: 0 20px;
    display: block;
    transition: color 0.3s ease;
}

/* EFFET HOVER : Trait qui glisse */
nav ul li::after{
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primaryColor);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
nav ul li:hover::after{
    width: 60%;
}
nav ul li:hover{
    transform: translateY(-2px);
}
nav ul li:hover a{
    color: var(--darkColor);
}

/* EFFET ACTIVE : Page en cours */
nav ul li.active{
    background: linear-gradient(135deg, var(--primaryColor) 0%, #e0a600 100%)!important;
}
nav ul li.active a{
    color: white;
}
nav ul li.active::after{
    display: none; /* pas de trait si déjà actif */
}

/* RESPONSIVE MOBILE */
@media (max-width: 992px){
    .titre{
        grid-template-columns: auto 1fr auto;
        padding: 15px 20px;
    }
    .contact-header span{
        display: none; /* cache le numéro, garde juste l'icône */
    }
    #toggle-btn{
        display: block;
    }
    nav ul{
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    nav ul.show{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    nav ul li{
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
}

/* SECTION CAROUSEL V2 */
.carrousel{
	max-height: 550px;
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #2F2F2F; /* 1. Fini le blanc. Fond anthracite = ciné */
	display: flex;
	align-items: center; 
	justify-content: center;
	border-radius: 12px; /* 2. Coins arrondis doux */
	box-shadow: 0 8px 24px rgba(0,0,0,0.25); /* 3. Ombre pour le faire flotter */
}

.carrousel .images{
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1); /* 4. Transition plus smooth */	
}

.slider-item{
	flex-shrink: 0;
	width: 100%; /* Important pour le translateX en % */
	max-height: 550px;
	object-fit: cover;
	display: block;
}

/* Effet vignette pour que le texte/flèches ressortent */
.carrousel::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
	pointer-events: none; /* <- déjà là, parfait */
	z-index: 1; /* Ajoute ça pour être sûr qu'il est sous les flèches */
}

.fleches {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10;
}

.fleches span {
    cursor: pointer;
    font-size: 1.8rem;
    color: #F5F5F5; /* 6. Blanc par défaut pour contraste */
    background: rgba(0,0,0,0.3); /* 7. Bouton rond semi-transparent */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px); /* Effet verre */
    border: 1px solid rgba(255,255,255,0.1);
}
.fleches span:hover {
    background: var(--primaryColor); /* 8. Jaune #f8b800 au hover */
    color: #2F2F2F; /* Texte foncé sur jaune */
    transform: scale(1.1);
    border-color: var(--primaryColor);
}

/* Points de navigation en bas */
.dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}
.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	cursor: pointer;
	transition: all 0.3s;
}
.dot.active {
	background: var(--primaryColor); /* Jaune actif */
	width: 24px;
	border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .carrousel { max-height: 350px; border-radius: 8px; }
    .fleches span {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .fleches { padding: 0 10px; }
    .dots { bottom: 12px; }
}
/* ARTICLES */
.articles{
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	padding: 30px 5%;
	background-color: #f5f5f5;
	font-size: 0.95rem;
	align-items: stretch;
}

/* Titres avec petit trait dessous */
.articles h4, 
.articles h5{
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-align: center;
	color: #8B0000;
	position: relative;
	padding-bottom: 10px;
}
.articles h4::after, 
.articles h5::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background: #8B0000;
}

/* Colonne 1 : Suggestions */
.un {
	padding: 25px 30px;
	background: white;
	border-radius: 20px 0 0 20px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.un p{
	margin: 0;
	padding: 8px 0;
	line-height: 1.6;
	border-bottom: 1px dashed #eee; /* séparateur discret entre plats */
	display: flex;
	justify-content: space-between; /* prix à droite */
}
.un p:last-child{ 
	border-bottom: none; 
} /* pas de trait sur le dernier */

/* Icônes des plats */
.un p i{
	color: #8B0000;
	font-size: 16px;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

/* Ligne de CATÉGORIE */
.un p.categorie{
	padding: 15px 0 8px 0;
	margin-top: 10px;
	border-bottom: 2px solid #8B0000; /* trait plus épais */
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #8B0000;
	gap: 10px;
}

/* Grosse icône de catégorie */
.un p.categorie i{
	font-size: 20px;
	color: #8B0000;
	width: 25px;
}

/* Prix à droite */
.un p span{
	margin-left: auto;
	font-weight: bold;
	color: #8B0000;
	white-space: nowrap;
}
.un b{
	color: #8B0000;
	display: block;
	margin-top: 15px;
	margin-bottom: 5px;
	border-bottom: none;
	font-size: 1rem;
	letter-spacing: 1px;
}

/* Colonne 2 : Texte + Bouton */
.deux{
	padding: 30px 35px;
	background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
	border-left: 4px solid #8B0000; /* un peu plus marqué */
	border-radius: 0 20px 20px 0;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px; /* espace entre les p */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Titre */
.deux h4{
	font-size: 1.5rem;
	color: #8B0000;
	text-align: center;
	margin-bottom: 5px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

/* 1ère phrase en gras */
.deux p:first-of-type{ 
	font-weight: 600;
	color: #333;
	font-size: 1.05rem;
	text-align: left; /* on repasse à gauche */
	display: flex;      
	align-items: center;   /* centre verticalement icône + texte */
	justify-content: center; /* centre le bloc au milieu de la colonne */
	gap: 10px; /* espace entre icône et texte */
}

/* Style des p avec icônes */
.deux .menu-infos p{
	display: flex;
	align-items: flex-start;
	gap: 12px;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

.deux .menu-infos p i{
	color: #8B0000;
	font-size: 1.1rem;
	margin-top: 3px; /* aligne avec le texte */
	flex-shrink: 0;
}

/* Phrase d'alerte */
.deux .alerte{
	color: #8B0000;
	font-weight: 700;
	text-align: center;
	margin: 10px 0 5px;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.un, .deux{
	position: relative;
	overflow: hidden;
}
.un::before, .deux::before{ /* petit coin replié */
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-top: 30px solid #f5f5f5;
	border-left: 30px solid transparent;
}

/* Au survol de la carte entière */
.un:hover, .deux:hover{
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Bouton avec effet */
.bouton{
	background: linear-gradient(135deg, #8B0000 0%, #6a0000 100%);
	color: white;
	padding: 15px 20px;
	font-size: 15px;
	font-weight: bold;
	border: none;
	border-radius: 10px; /* un peu plus arrondi */
	margin-top: auto; /* colle en bas */
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.bouton:hover{
	background: linear-gradient(135deg, #a00000 0%, #8B0000 100%);
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(139,0,0,0.4);
}
.bouton i{
	font-size: 1.1rem;
}

/* SECTION AVIS */
.temoignages{
    padding: 60px 20px;
    background: #fdfdfd;
    text-align: center;
}
.temoignages h2{
    font-size: 2rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.temoignages .sous-titre{
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

.temoignage_card{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* responsive auto */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.temoignage_card.scroll-x {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	padding: 20px 10px;
	
	/* Cache la barre de scroll sur Chrome/Safari */
	&::-webkit-scrollbar {
		height: 8px;
	}
	&::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 10px;
	}
}

/* Chaque carte */
.temoignage_card.scroll-x .card {
	flex: 0 0 320px; /* largeur fixe des cartes */
	scroll-snap-align: start;
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Pour mobile : on swipe avec le doigt */
@media (max-width: 768px) {
	.temoignage_card.scroll-x {
		padding-left: 15px;
	}
	.temoignage_card.scroll-x .card {
		flex: 0 0 85%; /* 1 carte prend 85% de l’écran */
	}
}

.card{
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #8B0000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.card-header .fa-quote-left{
    font-size: 1.8rem;
    color: #8B0000;
    opacity: 0.3;
}
.etoiles{
    color: #FFA500; /* doré */
    font-size: 0.9rem;
}

.card p{
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    flex-grow: 1; /* pousse le nom en bas */
}
.name{
    font-size: 16px;
    font-weight: 700;
    color: #8B0000;
    margin: 0;
}

.temoignages .bouton-avis{
    background: linear-gradient(135deg, #8B0000 0%, #6a0000 100%);
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 14px 30px;
    width: auto;
    min-width: 300px;
    margin: 40px auto 0;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.temoignages .bouton-avis:hover{
    background: linear-gradient(135deg, #a00000 0%, #8B0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139,0,0,0.3);
}

/* FOOTER */
footer{
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 40px 20px;
    font-size: 14px;
}
.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: left;
}
.footer-col h4{
    color: var(--primaryColor); /* ton jaune #f8b800 */
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col p{
    margin: 8px 0;
    line-height: 1.6;
    color: #aaa;
}
.footer-col i{
    color: var(--primaryColor);
    font-size: 0.9rem;
}

.footer-bottom{
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* HOVER EFFET */
.footer-col p:hover{
    color: white;
    transition: color 0.3s ease;
}

.socials{
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.socials a{
    color: #F5F5F5;
    font-size: 1.3rem;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}
.socials a:hover{
    background: var(--primaryColor);
    color: #2F2F2F;
    transform: translateY(-3px);
}

.footer-bottom{
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .footer-container{
        grid-template-columns: none; /* LA MAGIE */
        gap: 30px;
        text-align: center;
    }
    .footer-col h4{
        justify-content: center;
    }
    .socials{
        justify-content: center;
    }
}

/* BANNIERE PAGE */
.page-banner{
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-top: -90px;
}
.page-banner h1{ 
	font-size: 2.5rem; 
	margin-bottom: 10px; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	gap: 15px; 
}

.entrees{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/entrees.jpg) center / contain;
    background-repeat: no-repeat;
    background-size: cover;
}

.plats{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/plats.jpg) center / contain;
    background-repeat: no-repeat;
    background-size: cover;
}

.desserts{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/desserts.jpg) center / contain;
    background-repeat: no-repeat;
    background-size: cover;
}

.boissons{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/boissons.jpg) center / contain;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/logo.png) center / contain;
    background-repeat: no-repeat;
    background-size: cover;
}

/* GRILLE MENU */
.menu-section{ 
	padding: 60px 20px; 
	max-width: 1200px; 
	margin: 0 auto; 
}

.menu-grid{ 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
	gap: 30px; 
}

.menu-item{ 
	display: flex; 
	gap: 20px; 
	background: white; 
	border-radius: 12px;
	padding: 15px; 
	box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
	transition: transform 0.3s ease; 
}

.menu-item:hover{ 
	transform: translateY(-5px); 
}

.menu-item-img img{ 
	width: 100px; 
	height: 100px; 
	object-fit: cover; 
	border-radius: 10px; 
}

.menu-item-content h3{ 
	font-size: 1.1rem; 
	margin: 0 0 8px 0; 
	display: flex; 
	justify-content: space-between; 
	align-items: center; color: #333; 
}

.menu-item-content .prix{ 
	color: var(--darkColor); 
	font-weight: 700; 
	font-size: 1rem; 
}

.note-menu{ 
	text-align: center; 
	margin-top: 40px; 
	color: var(--darkColor); 
	font-style: italic; 
}

/* ===== SECTION CONTACT GLOBALE ===== */
.contact-section {
    padding: 80px 5%;
    background: #fdfdfd;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Le formulaire un peu plus grand */
    gap: 40px;
    margin-bottom: 50px;
}

/* ===== BLOC INFOS ===== */
.contact-infos {
    background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.1);
    border-left: 6px solid #c0392b;
    transition: transform 0.3s ease;
}

.contact-infos:hover {
    transform: translateY(-5px);
}

.contact-infos h2 {
    font-size: 26px;
    color: #c0392b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-infos h3 {
    font-size: 19px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f0e0d6;
    padding-bottom: 10px;
}

.contact-infos p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}

.contact-infos p strong {
    color: #222;
    font-weight: 600;
    min-width: 90px;
    display: inline-block;
}

.contact-infos a {
    color: #c0392b;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.contact-infos a:hover {
    color: #a93226;
    text-decoration: underline;
}

/* RESEAUX */
.reseaux { margin-top: 30px; }
.reseaux h3 { border: none; margin-bottom: 18px; }

.reseaux a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #c0392b;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 12px;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.reseaux a:hover {
    background: #a93226;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 15px rgba(192, 57, 43, 0.3);
}

/* ===== BLOC FORMULAIRE ===== */
.contact-form {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-size: 26px;
    color: #c0392b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #c0392b;
    background: white;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-envoyer {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.2);
}

.btn-envoyer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
}

/* ===== GOOGLE MAPS ===== */
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-map iframe {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section { padding: 50px 4%; }
    .contact-infos, .contact-form { padding: 30px 25px; }
    .contact-infos h2, .contact-form h2 { font-size: 22px; }
}

/* RESPONSIVE MENU MOBILE */
@media (max-width: 992px){
    nav ul{ position: absolute; top: 90px; left: 0; width: 100%; flex-direction: column; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; }
    nav ul.show{ opacity: 1; visibility: visible; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px){
	.articles{
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 40px 5%;
	}
	.un{
		border-radius: 20px 20px 0 0;
	}
	.deux{
		border-radius: 0 0 20px 20px;
		border-left: none;
		border-top: 3px solid #8B0000;
	}

	/* AVIS */
	.temoignages h2{
		font-size: 24px;
		font-weight: bold;
		margin: 20px 0 40px 0;
	}
	.temoignage_card{
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: auto;
		gap: 15px 20px;
		padding: 20px;
	}
	.card{
		grid-column: span 2;
		box-shadow: 2px 2px 5px #444;
		padding: 0 15px;
	}
	.name{
		font-size: 18px;
		font-weight: bold;
		margin-top: 10px;
	}
	.card p{
		font-size: 14px;
	}
	.temoignages button{
		background-color: var(--primaryColor);
		color: white;
		font-size: 14px;
		width: 300px;
		height: 40px;
		display: block;
		margin: 40px auto;
		border-radius: 5px;
		cursor: pointer;
	}

	/* FOOTER */
	footer{
		color: #ccc;
		font-size: 12px;
		text-align: center;
		padding: 20px 100px;
	}
}

/* RESPONSIVE */
@media screen and (max-width: 900px){
	#toggle-btn{ display: block }
    nav ul{
        opacity: 0;
        flex-direction: column;
        width: 250px;
        padding: 0;
        top: 225px;
        left: calc(50% - 125px);
    }
    .un, .deux{ grid-column: span 2; }
}

@media screen and (min-width: 901px){
    nav ul{ opacity: 1 !important; }
}

@media screen and (max-width: 580px){
	.titre { justify-content: space-between; }
    .titre h3{ font-size:  14px; }
    .titre img{ width: 220px; }
    .card{ grid-column: span 3;}	
}