/* 1. BASES ET CONFIGURATION GÉNÉRALE */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Fredoka', serif;
  background: linear-gradient(180deg, #585be2 0%, #4146E1);
  background-attachment: fixed;
  background-size: cover;
}

html {
  scroll-behavior: smooth;
}

/* On rend les sections transparentes pour voir mon nouveau background du body */
.concept-section, 
.content, 
.form-section, 
.apropos-mini {
    background: transparent !important;
}
/*ACCESSIBILITÉ*/

/* Cache les liens hors de l'écran par défaut */
.skip-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
}

.skip-links a {
    position: absolute;
    top: -200px; 
    left: 0;
    background: #7CFF4F; /* Ta couleur accentuée */
    color: #14006b;
    padding: 15px;
    z-index: 9999;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 10px 0;
    transition: top 0.3s ease;
}

/* Affiche le lien dès qu'on utilise la touche TAB */
.skip-links a:focus {
    top: 0;
}

:focus {
    outline: 3px solid #7CFF4F; /* Utilise ton vert fluo pour le focus */
    outline-offset: 2px;
}

.btn-detail:focus, 
#envoyer:focus,
.nav a:focus {
    box-shadow: 0 0 0 4px rgba(124, 255, 79, 0.5); /* Effet de halo */
    outline: 2px solid white;
}

input:focus, select:focus, textarea:focus {
    outline: 2px solid #7CFF4F;
    border-color: transparent;
}

/* FIL ARIANE */
.fil-ariane {
    margin-top:250px;
    padding: 15px 20px;
    font-family: 'Fredoka', sans-serif;
    max-width:1200px;
    margin-left:auto;
    margin-right: auto;
    display: block !important;
    width:100%;
    padding-left: 115px;
    justify-content: flex-start;
    text-align:left;
}

.fil-ariane ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    text-align:left;
}

.fil-ariane li {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: #ffffff;
}

/*slash*/
.fil-ariane li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #ffffff;
    font-weight: bold;
}

.fil-ariane a {
    color: #ffffff;
    text-decoration: none;
}

.fil-ariane a:hover {
    text-decoration: underline;
}

.fil-ariane li[aria-current="page"] {
    font-weight: 600;
    color: #ffffff;
}
/* 2. HEADER & HERO SECTION */

.hero {
  height: 100vh;
  background-image: url("photos/Maquette-site.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font-family: 'Fredoka', serif;
  position: relative;
  overflow:hidden;
}

.logo-site {
    width: 250px;          
    height: auto;        
    display: block;       
    transition: transform 0.3s ease;
    margin-top: 0;
}

.logo-site:hover {
    transform: scale(1.05);
}

/* 3. NAVIGATION & NAVBAR */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;  
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1001;
  height: 80px;        
}

/* Container qui regroupe Login, Recherche et Menu */
.right-nav-container {
  display: flex;
  align-items: center; /* Aligne verticalement le texte et la barre de recherche */
  gap: 30px;           /* L'espace entre tes éléments */
  background: transparent; 
  padding: 0;
  margin: 0;
}

/* Groupe Login (Bonjour + Déconnexion) */
.login-group {
  font-size: 1rem;
  color: white;
}

.login-group a {
  color: white;
  text-decoration: underline;
  margin-left: 5px;
}

/* Barre de recherche */
.search-form {
  display: flex;
  align-items: center;
  background:white;
  color:#222222;
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 2px 10px;
  max-width: fit-content;
}

.search-form input::placeholder { 
  color: #575757 !important; 
  opacity: 1; 
}


.search-form input {
  background-color: white;
  border: none;
  padding: 5px;
  outline: none;
  width: 150px;
  font-family: 'Fredoka', serif;
  font-size: 0.875rem;
  color: black !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.search-container {
    position: relative;
    width: 250px;
}

.suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none; /* Caché par défaut */
    z-index: 9999;
    max-height: 200px;
    display:none;
    overflow-y: auto;
    color: black;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    color: #333;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.875rem;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
    color: #4b3cc4; /* Ta couleur violette */
}
/* 4. MENU LATÉRAL (BURGER) */

.side-nav {
    height: 100%;
    width: 350px; 
    position: fixed;
    z-index: 2000; /* Au-dessus de tout */
    top: 0;
    right: -350px; /* Caché à droite */
    background-color: #14006b;
    overflow-x: hidden;
    transition: 0.4s; /* Vitesse du glissement */
    padding-top: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

/* Quand le menu est ouvert */
.side-nav.active {
    right: 0;
}

/* Le voile noir */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

#overlay.active {
    display: block;
}

.side-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    color: #7CFF4F;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.close-btn {
    font-size: 2.5rem;
    cursor: pointer;
}

#btn-recherche {
  background: #7CFF4F;
  border: none;
  color: #14006b;
  border-radius: 15px;
  padding: 3px 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.75rem;
}

/* Le menu burger */
.menu {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  margin-right:-15px;
  color: white;
  cursor: pointer;
  font-size:150% !important;
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
  transform: translateY(-20px) !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.right input {
  border-radius: 20px;
  border: 1px solid white;
  background: transparent;
  padding: 5px 10px;
  color: white;
}

/* CONTENU CENTRE */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  width: 70%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

/* TITRE */
.hero-content h1 {
  font-size: 10rem;
  margin: 0;
  font-weight: bold;
  line-height: 0.7;
  letter-spacing: 20px; /* espacement des lettres */
}

.student {
    display: block;
  transform: translateX(180px); /* décalement vers la droite */
}

.hero-content span {
  display: block;
}

/* LIGNE */
.line {
  height: 3px;
  background: white;
  width: 100%;
  margin: 20px 0;
}

/* BOUTON */
.hero button {
  border: 2px solid white; 
 
  background: transparent;
  color: white;
  padding: 15px 40px;
  font-size: 110% ;
  border-radius: 80px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  align-self: center;
  transform: translateY(60px);
  margin:40px auto 0;
  font-family: 'Fredoka',sans-serif;
}

/* FLECHE */
.arrow {
  position: absolute;
  bottom: 30px;        
  left: 50%;           
  transform: translateX(-50%); 
  color: white;
  cursor: pointer;
  z-index: 10;        
  margin: 0;
  font-size: 40px;
  animation: bounce 2s infinite;
}

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

.login {
    margin:0;
    font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 5px;
  }

  .nav {
    padding: 15px 20px;
  }
}

/* 6. SECTION PRÉSENTATION DU CONCEPT */

.concept-section {
    padding: 100px 20px;
    background: linear-gradient(180deg,#585be2 0%, #ffffff 100%);
    background-color: transparent !important;
    text-align: center;
}

.concept-title {
    font-size: 4rem;
    color: #14006b;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 20px;
}

.highlight-text {
    color: #7CFF4F;
    background: #14006b;
    padding: 0 15px;
    border-radius: 10px;
    display: inline-block;
    line-height:1.3;
}

.concept-subtitle {
    font-size: 120%;
    color: #14006b;
    font-weight: bold;
    max-width: 700px;
    margin: 0 auto 60px;
}

.concept-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.concept-card {
    background: #f9f9f9;
    border: 2px solid #14006b;
    border-radius: 25px;
    padding: 40px 30px;
    width: 320px;
    transition: all 0.3s ease;
    cursor: default;
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0px #7CFF4F; /* Ombre décalée */
    background: #fff;
}

.icon-circle {
    font-size: 250%;
    width: 80px;
    height: 80px;
    background: #4b3cc4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.concept-card:hover .icon-circle {
    background: #7CFF4F;
    transform: rotate(15deg);
}

.concept-card h3 {
    color: #14006b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.concept-card p {
    color: #444;
    line-height: 1.6;
}

/* 7. SECTION DES BONS PLANS (LISTE & CARDS)*/
:root {
    --primary: #4b3cc4;  
    --secondary: #14006b; 
    --accent: #7CFF4F;    
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
}

.content {
  padding: 100px 20px;
  text-align: center;
}

.content h2 {
    text-align: center;
    letter-spacing: 9px;
    font-size: 5rem;
    color: white;
    margin-bottom: 90px;
    font-family:'Fredoka', sans-serif;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card h3 {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  padding-bottom: 10px;
}

.card-header {
    padding: 20px 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
}

/* Corps de la card */
.card-body {
    padding: 10px 20px;
    flex-grow: 1;
}

.card-body h3 {
    margin: 0 0 10px 0;
    font-family: 'Fredoka', sans-serif;
    color: var(--secondary);
    font-size: 1.3rem;
}

.location {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer de la card */
.card-footer {
    padding: 20px;
    background: #fcfcfc;
    border-top: 1px solid #eee;
}

/* couleurs catégories */
.nourriture { border-color: #00b3b3; }
.nourriture h3 { border-color: #00b3b3; }
.voyage { border-color: #ff6a00; }
.voyage h3 { border-color: #ff6a00; }
.loisirs { border-color: #b84dff; }
.loisirs h3 { border-color: #b84dff; }

.card ul {
  line-height: 2;
}

.card.scolarite {
    border: 2px solid #1cd9ff; 
}

.card.loisirs[data-titre="Spotify Student"] {
    border: 2px solid #18ff69;
}

/* 8. SECTION FORMULAIRE & CARTE LEAFLET */


.form-section {  
  color: white; 
  padding-bottom: 80px;
  position: relative; 
  z-index: 1;
  text-align: center; 
  margin: 0;
  padding-top: 0; 
} 

.form-section h2 { 
  font-size: 5rem; 
  color: #ffffff;
  margin-bottom: 80px; 
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 6px;
} 

.form-intro h3{
    text-align: center;      
    font-size: 1.4rem;       
    font-weight: bold;      
    margin-bottom: 20px;     
    color: #ffffff;
}

/* Container global du formulaire */
.form-container { 
  display: flex; 
  justify-content: center; 
  align-items: stretch; 
  flex-wrap: nowrap; 
  gap: 30px; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.form-box { 
  flex: 1;
  border: 3px solid #ff8ccf; 
  border-radius: 25px; 
  padding: 30px; 
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 60px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
} 

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box label {
  margin-bottom: -10px;
  color: #ffffff;
}

.form-box input, .form-box select, .form-box textarea { 
  width: 100%;
  padding: 12px 15px; 
  border-radius: 15px; 
  border: 2px solid white; 
  background: white; 
  color: #14006b; 
  font-family: inherit;
  outline: none;
} 

/* Style du bouton */
#envoyer { 
  margin-top: 20px; 
  background: #7CFF4F; 
  color: #14006b; 
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.1rem;
  padding: 15px;
  border-radius: 15px;
} 

#envoyer:hover { 
  background: white;
  transform: scale(1.05);
}

/* La carte */
#map {
    flex: 1;
    min-height: 500px;
    border-radius: 25px;
    border: 3px solid #ff8ccf;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .form-container { 
      flex-direction: column; 
      align-items: center; 
    }

    .form-box, #map { 
      width: 100%; 
      max-width: 500px; }
}

#message { margin-top: 10px; color: #7CFF4F; font-weight: bold; }

.champs-obligatoires {
    padding: 0px 20px 0px 60px ;
    font-size: 0.81rem;
    color: #ffffff;
    opacity: 0.8;
    font-style: italic;
}


/* 9. SECTION À PROPOS */
.titre-apropos{ /*GARDER*/
  text-align:center;
  font-size:4rem;
  font-weight:900;
  line-height:1.1;
  margin:0 auto 50px auto;
  background: rgba (255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(255, 253, 253, 0.37);
  border-radius: 10px;
  color: #14006b!important;
  letter-spacing: 5px;
  display: table;
  padding:40px 100px ;
  width:fit-content;
  font-family: 'Fredoka', serif;
}


.apropos-mini {
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.bloc-apropos-mini p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 30px;
    line-height: 1.6;
}

.btn-en-savoir-plus {
    display: inline-block;
    background-color: #7CFF4F;
    color: #14006b;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Fredoka', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-en-savoir-plus:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(124, 255, 79, 0.4);
}

.pres-body {
    background: #585be2 !important;
    overflow-x: hidden;
}

/* Structure */
.pres-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5% 60px;
}

/* Titres */
.pres-header-titles { 
  margin-bottom: -40px; 
  position: relative; 
  z-index: 5; 
}
.pres-eyebrow { 
  color: #7CFF4F; 
  letter-spacing: 4px; 
  font-weight: bold; 
  text-transform: uppercase; 
  font-size: 0.8rem; 
}

.pres-main-title { 
  font-size: clamp(3rem, 10vw, 7rem); 
  font-weight: 900; 
  margin: 0; 
  line-height: 0.9; 
  text-transform: uppercase; 
  font-family: serif;
}

.pres-main-title span { 
  display: block; 
  padding-left: 15%; 
  color: transparent; 
  -webkit-text-stroke: 1px white; 
}

/* La Carte */
.pres-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Image */
.pres-img-wrapper { 
  position: relative; 
}
.pres-img-wrapper img {
    width: 100%; height: 500px; 
    object-fit: cover;
    border-radius: 25px;
    transform: rotate(-2deg);
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
}
.pres-img-wrapper:hover img { 
  transform: rotate(0deg) 
  scale(1.03); 
}

.pres-badge {
    position: absolute; top: -10px; 
    right: -10px;
    background: #7CFF4F; 
    color: #14006b;
    padding: 10px 20px; 
    border-radius: 50px;
    font-weight: 900; 
    font-size: 0.7rem; 
    transform: rotate(5deg);
}

/* Texte */
.pres-lead { 
  font-size: 1.6rem; 
  color: #7CFF4F; 
  line-height: 1.3; 
  font-weight: 500; 
}

.pres-long-text h3 {
  margin-top: 30px; 
  font-size: 1.4rem; 
  color: white; 
  border-left: 3px solid #7CFF4F; 
  padding-left: 15px; 
}

.pres-long-text p { 
  line-height: 1.7; 
  color: rgba(255,255,255,0.8); 
  text-align: justify; 
  margin-bottom: 15px; 
}

/* Skills & Bouton */
.pres-skills { 
  display: flex; 
  gap: 10px; 
  margin: 30px 0; 
  flex-wrap: wrap; 
}

.pres-tag { 
  background: rgba(255,255,255,0.1); 
  padding: 8px 18px; 
  border-radius: 50px; 
  font-size: 0.8rem; 
  border: 1px solid rgba(255,255,255,0.15); 
}

.pres-btn {
    display: inline-block; 
    padding: 15px 40px;
    background: white; 
    color: #14006b;
    text-decoration: none; 
    border-radius: 50px;
    font-weight: bold; 
    transition: 0.3s;
}

.pres-btn:hover { 
  background: #7CFF4F; 
  transform: translateY(-5px); 
}


@media (max-width: 1000px) {
    .pres-card { grid-template-columns: 1fr; padding: 30px; }
    .pres-main-title span { padding-left: 0; }
    .pres-img-wrapper img { height: 350px; }
}


/* 11. FOOTER */
.footer {
  background: #14006b;
  color: white;
  padding: 60px 20px 20px;
  font-family: 'Fredoka', sans-serif;
  width: 100%;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}


.footer-bloc {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.footer-bloc a{
  outline: white;
}

.footer-logo-section {
  flex-direction: row !important; 
  align-items: center !important; 
  gap: 20px; /* Espace entre le logo et le texte */
}

.footer-text-wrapper {
  display: flex;
  flex-direction: column; 
}

.logo-footer {
  width: 140px; 
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 0px white) drop-shadow(-2px -2px 0px white) drop-shadow(2px -2px 0px white) drop-shadow(-2px 2px 0px white);
}

.footer-bloc h3 {
  font-size: 1.30rem;
  color: #7CFF4F;
  margin: 5px 0 15px 0;
}

.footer-bloc p {
  margin: 5px 0;
}

.footer-bloc a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 5px 0;
  font-size: 0.900rem;
}

.footer-bloc a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.875rem;
}

/* 12. DESIGN DES PAGES DÉTAILS (TACOS,CINEMA, VOYAGE, ETC.) */
.page-detail {
    background: linear-gradient(135deg, #4b3cc4 0%, #14006b 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
    margin: 0;
    padding: 0;
}

.detail-wrapper {
  flex: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.detail-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-page-tacos {
    width: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cadre-tacos {
    background: white;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sépare en deux colonnes */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.left-tacos {
    position: relative;
    background: #f0f0f0;
}

.left-tacos img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image remplit tout l'espace sans se déformer */
}

.badge-detail {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 2;
}

.right-tacos {
    padding: 40px;
    color: #333;
}

.category-tag {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.right-tacos h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: var(--secondary);
    margin: 10px 0;
}

.info-list p {
    margin: 10px 0;
    font-size: 1.05rem;
}

.description-detail {
    margin-top: 25px;
    line-height: 1.6;
    color: #555;
}

.commentaire {
    background: #f9f9f9;
    border-left: 5px solid var(--accent);
    padding: 15px;
    margin: 25px 0;
    font-style: italic;
    color: #666;
}

.actions-detail {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-retour, .btn-profiter {
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-retour {
    background: #eee;
    color: #555;
}

.btn-profiter {
    background: var(--accent);
    color: var(--secondary);
    flex-grow: 1;
    text-align: center;
}

.btn-profiter:hover {
    background: #6ee644;
}

/* Version Mobile */
@media (max-width: 758px) {
    .cadre-tacos {
        grid-template-columns: 1fr;
    }
    .left-tacos {
        height: 300px;
    }
}
 /* FIN DESIGN PAGES DÉTAILS  */

/*13. BOUTONS DE TRI */
.tri-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding-right: 120px;
    margin-top:-30px;
    margin-bottom:70px;
}

.tri-container button {
    background: #ffffff;
    border: 2px solid #14006b;
    color: #14006b;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    font-family: 'Fredoka', serif;
}

.tri-container button:hover {
    background: #14006b;
    color: white;
}

/* pour styliser un peu le texte "Trier par :" */
.tri-container span {
    font-weight: bold;
    color: #14006b;
    font-size: 1rem;
}

/*  14. MENTIONS LÉGALES */
 .legal-content {
            max-width: 900px;
            margin: 100px auto;
            padding: 40px;
            background: #f9f9f9;
            border-radius: 20px;
            color: #14006b;
            line-height: 1.8;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .legal-content h1 { 
        color: #4b3cc4; 
        border-bottom: 3px solid #7CFF4F;
        display: inline-block;
        margin-bottom: 30px;
        }

        .legal-content h2 { 
        color: #4b3cc4;
        margin-top: 30px;
        }

        .back-btn { 
        display: inline-block;
        margin-bottom: 20px;
        color: #4b3cc4;
        text-decoration: none;
        font-weight: bold; 
        }

        .legal-content section {
        margin-bottom: 40px;
        border-left: 4px solid #7CFF4F;
        padding-left: 20px;
}
/*FIN DÉTAILS MENTIONS LÉGALES*/

/* 15. ANIMATIONS JS */
.hidden-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}
/*FIN ANIMATIONS JS*/