/* -------------------------------
   Structure globale
--------------------------------*/
/* ==========================
   POLICE PERSONNALISÉE
========================== */
@font-face {
  font-family: 'Amarante';
  src: url('../fonts/Amarante-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ✅ Style global */
html, body {
  font-family: 'Amarante', Arial, sans-serif;
  font-size: 21px; /* ✅ Taille par défaut */
  line-height: 1.6;
  color: #fff;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;            /* ✅ occupe toute la hauteur visible */
  display: flex;
  flex-direction: column;       /* disposition verticale : header > contenu > footer */
  background-color: #D1D1D1;
  color: white;
}

/* -------------------------------
   HEADER
--------------------------------*/
header {
  position: relative;
  background-color: #000;
  color: white;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Logo superposé */
.logo {
  position: absolute;
  top: 0;
  left: 20px;
  height: 140px;
  width: auto;
  z-index: 11;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Liens du menu */
nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #BABABA;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-decoration 0.3s, transform 0.3s ease;
}

nav a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  transform: scale(1.1); /* ✅ léger zoom au survol */
}

/* ✅ Liseré sous le menu : dégradé horizontal */
.liseret {
  height: 3px;
  background: linear-gradient(to right, white, black);
}

/* -------------------------------
   PAGE D’ACCUEIL : FOND D'ÉCRAN
--------------------------------*/
.hero-index {
  background-image: url('../img/fondindex.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: calc(100vh - 140px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-index main {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
}

/* -------------------------------
   SECTION HERO (image de fond)
--------------------------------*/
.hero {
  position: relative;
  flex: 1;
  height: 500px;
  overflow: hidden;

  background-image: url("../img/illustration.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #D1D1D1;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero main {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 800px;
  padding: 20px;
}

/* Bouton décoratif */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ffcc00;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #ffd84d;
}

/* -------------------------------
   TABLEAU TARIF
--------------------------------*/
.gradient-border {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: inline-block;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 8px;
  background: linear-gradient(to bottom, #FFFFFF, #000000);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

table {
  width: 80vw;
  height: 30vw;
  position: relative;
  border-collapse: collapse;
  background: transparent;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  z-index: 1;
}

th, td {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 16px;
  background: transparent;
}

th {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #3D3D3D;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

.title {
color: #ffcc00;             /* 🔸 couleur dorée lisible sur fond sombre */
font-weight: bold;
text-transform: uppercase;  /* 🔠 majuscules élégantes */
letter-spacing: 1px;
text-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* 💫 légère lueur pour la lisibilité */
}


/* -------------------------------
   TABLEAUX CONTENUS PAGES
--------------------------------*/
.page-content table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  max-width: 100%;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-content h2,
.page-content h3 {
  margin-top: 30px;
}

/* -------------------------------
   FOOTER
--------------------------------*/
footer {
  background-color: #000;
  color: #BABABA;
  text-align: center;
  padding: 20px 0;
  font-size: 11px;
  font-style: italic;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.4);
  border-top: 2px solid #222;
}

footer p {
  margin: 0;
  transition: color 0.3s ease;
}

footer p:hover {
  color: #FFFFFF;
}

/* ==========================
   MENU BURGER MOBILE
========================== */

/* --- Bouton burger (mobile) --- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 35px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* État "ouvert" du burger */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ✅ Cacher le menu mobile par défaut */
@media (max-width: 900px) {
  nav {
    display: none; /* ✅ caché par défaut */
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: calc(100vh - 80px);
    padding: 40px 0;
    gap: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    z-index: 15;
  }

  nav.show {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .burger {
    display: flex;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

/* ===============================
   📱 TABLEAUX — VERSION MOBILE
=============================== */
@media (max-width: 768px) {

  .hero {
	padding-top: 100px;   /* 🔼 espace sous le menu */
	padding-bottom: 100px; /* 🔽 espace avant le footer */
  }
	
  /* Tableaux dans la page Concept */
  .hero table {  
	width: 100% !important;
    font-size: 14px;                 /* police plus petite */
	overflow-x: auto;  
	table-layout: auto !important;
  }

  .hero td,
  .hero th {
    padding: 6px 8px;                /* réduit les marges internes */
    display: block;                  /* met les cellules les unes sous les autres */
    width: 100% !important;          /* chaque cellule prend toute la largeur */
    text-align: center;
	box-sizing: border-box;
  }

  .hero tr {
    display: block;
    margin-bottom: 20px;             /* espace entre les lignes */
  }

  .hero img,
  .hero video {
    max-width: 80%;
    height: auto;
  }
  
	.title {
	color: #ffcc00;             /* 🔸 couleur dorée lisible sur fond sombre */
	font-weight: bold;
	text-transform: uppercase;  /* 🔠 majuscules élégantes */
	letter-spacing: 1px;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* 💫 légère lueur pour la lisibilité */
	}

  /* Tableaux dans la page Tarifs */
  
  
  .gradient-border table {   
    font-size: 14px;
  }

  .gradient-border th,
  .gradient-border td {
    padding: 8px;
  }

  .gradient-border th {
    font-size: 13px;
  }
  
  .hero h2, 
  .hero p {
    word-wrap: break-word;
    overflow-wrap: break-word; /* ✅ évite les textes qui débordent */
    white-space: normal;       /* ✅ permet les retours à la ligne */
  }
  
     video {
    margin: 0 10px !important; /* 🔽 espace horizontal réduit à 10px de chaque côté */
    width: 35% !important;     /* optionnel : un peu plus large sur mobile */
  }
  
  /* =========================================
   📱 Supprimer la première ligne du tableau Tarif sur mobile
========================================= */
  .gradient-border table thead tr:first-child {
    display: none !important;  /* masque la ligne d'en-tête */
  }

}