    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    /* Vidéo fond */
    .background-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    /* Dégradé subtil */
    .page::before {
      content: "";
      position: absolute;
      inset: 0;
      width: 100%;
      background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.10) 20%,
        rgba(255, 255, 255, 0.0) 50%
      );
      pointer-events: none;
      z-index: -1;
    }

    .page {
      position: relative;
      height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* ---- BANDEAU VERRE DÉPOLI ---- */
    .top-nav {
      z-index: 2;
      position: relative;
      font-size: clamp(1.2rem, 2vw, 1.4rem);
      font-weight: 500;
      color: #d5901f;
	  width: 100%;
	  box-sizing: border-box;
	  padding: 12px 12px; 
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  gap: 8px;
	  flex-wrap: nowrap;

    }

    /* Links centrés */
    .nav-links {
      text-align: center;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 0;              /* les séparateurs gèrent l'espace */
	  flex: 1 1 auto;
	  min-width: 0;        /* super important pour éviter overflow */
	  flex-wrap: nowrap;   /* jamais sur 2 lignes */
    }

    .nav-links a {
      color: #92651c;
      text-decoration: none;
      transition: opacity .2s;
      font-weight: 500;
	  min-width: 0;
	  text-align: center;
	  white-space: nowrap;
  padding: 6px 12px; /* donne de l’air autour du texte */
   }

/* menu selectionné */
#select {
	color: #3d290a;
      font-weight: 500;
	  min-width: 0;
	  text-align: center;
	  white-space: nowrap;
  padding: 6px 12px; /* donne de l’air autour du texte */
}

    /* Petit | entre les onglets */
.nav-links a + a{
  position: relative;
  padding-left: 22px;  /* crée la place du | */
  margin-left: 10px;   /* espace visuel entre items */
}

.nav-links a + a::before{
  content: "|";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  pointer-events: none;
}

    .nav-links a:hover {
      opacity: .6;
    }

    /* menus sur 2 lignes */
    .two-lines {
  display: inline-block;
  text-align: center;
  line-height: 1.05;
}

.two-lines span {
  display: block;
}

.two-lines .small {
  font-size: 0.82em;
  letter-spacing: 0.5px;
  opacity: 0.85;
}


/* Drapeau à droite */
.lang-switch {
  right: 0.rem;
  text-decoration: none;
  line-height: 1;
  padding: .35rem .45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .2s, transform .2s;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  padding: 6px 6px;
}
 
.lang-switch:hover {
  opacity: .75;
}

.flag {
  display: inline-block;
  font-size: 1.5rem;
}


/* ---- QUOTE ELEGANTE ---- */
.quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%); /* petit lift pour élégance */
  z-index: 2;

  font-family: "Playfair Display", serif;
  font-weight: 400; /* pas gras */
  color: white;

  text-align: center;
  text-shadow: 0px 4px 18px rgba(0,0,0,0.35);

  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.15;

  max-width: 90%;

  display: flex;
  flex-direction: column;

  opacity: 0;
  animation: fadeUp 1.8s ease forwards;
}

.quote span {
  display: block;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -35%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -45%);
  }
}

/* ---- LOGO ---- */
.logo-section {
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 3rem;
}

.logo-section img {
  max-width: min(70vw, 380px);
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
}
    
 
@media (max-width: 520px) {

  .top-nav{
    padding: 10px 10px;
    font-size: 0.92rem;       /* plus petit que desktop */
  }

   .nav-links a + a::before{
    content: "";              /* bye bye les | sur mobile */

 .nav-links{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    width: 100%;
  }

  .nav-links a{
    padding: 6px 4px;
    min-width: 0;
  }

  /* 2 lignes plus compactes */
  .two-lines{
    line-height: 1.02;
  }

}

@media (min-width: 900px){
  .nav-links{
    justify-content: flex-start;
 }
} 
    


