/* force redeploy */
/* =========================
   Variables globales
========================= */
:root {
  --gold: #d4af37;
  --saffron: #c98b2f;
  --maroon: #5a1a1a;
  --velvet: #9b0606;
  --red: #8b0505;
  --accent: #f28c08;
  --accent-dark: #7a3d00;
  --bg: #fff5e6;
  --card: #fffaf3;
  --muted: #6b5a4a;
  --green-empire: #004225;
}

/* =========================
   Reset et base
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  background-image: url("assets/kashmir-floral.svg");
  background-repeat: repeat;
  background-size: 300px;
  background-attachment: fixed;
  color: #222;
}

/* Voile Taj Mahal en fond */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("assets/tajmahal.svg") center center no-repeat;
  background-size: 65%;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* =========================
   Bouton Menu flottant
========================= */
.menu-button {
  position: fixed;
  top: 22px;
  right: 22px;
  background: var(--red);
  color: white;
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}
/* Bouton Réservations en haut à gauche — identique au bouton Menu */
.reservations-button {
  position: fixed;
  top: 22px;
  left: 22px;
  background: var(--red); /* même couleur que Menu */
  color: white;
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.reservations-button:hover {
  background: #b22222; /* même hover que Menu */
  transform: scale(1.05);
}

.menu-button:hover {
  background: #b22222;
  transform: scale(1.05);
}
/* Version mobile : boutons plus petits */
@media (max-width: 900px) {

  .menu-button {
    top: 13px;
    right: 13px;
    padding: 6px 11px;
    font-size: 0.8rem;
  }

  .reservations-button {
    top: 13px;
    left: 13px;
    padding: 6px 10.5px;
    font-size: 0.8rem;
  }

}
/* =========================
   Popup livraison
========================= */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.popup-content {
  background: linear-gradient(180deg, var(--red), #5c0303);
  color: #fff;
  padding: 25px 30px;
  border-radius: 18px;
  max-width: 520px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}

.popup-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.popup-buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.popup-buttons a,
.popup-buttons button {
  background: #fff;
  color: var(--red);
  border: 0;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

/* =========================
   Header
========================= */
header {
  margin-top: 40px;
  background: var(--card);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Titre principal */
header h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.0rem;
  color: var(--green-empire);
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

/* Motif floral sous le titre */
header h1::after {
  content: "── ✦ ❁ ✦ ──";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(212,175,55,0.45);
  font-weight: 500;
}

.subinfo {
  font-size: 1.3rem;      /* ajuste comme tu veux */
  font-weight: 600;
  color: var(--red);      /* ton bordeaux */
  line-height: 1.3;
  margin-bottom: 10px;
}

.subinfo-highlight {
  color: var(--red);     
  font-weight: 600;
}


/* Fleur décorative */
.flower {
  margin: 18px auto;
  width: 160px;
  height: 14px;
  background:
    radial-gradient(circle at center, var(--gold) 20%, transparent 21%) repeat-x;
  background-size: 14px 14px;
}

/* MOBILE */
@media(max-width:600px){
  header h1 {
    font-size: 2.1rem;
    margin-bottom: 55px;
  }

  header h1::after {
    bottom: -30px;
    font-size: 1.1rem;
  }

  .subinfo {
    font-size: 1.8rem;
  }
}

/* =========================
   Slider photos
========================= */
.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 420px;
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

@media (min-width: 900px) {
  .slider {
    height: 600px;
  }
}

@media (max-width: 900px) {
  .slider {
    height: 300px;
  }
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: brightness(75%);
}

.slide.active {
  opacity: 1;
}

/* =========================
   Section Menu
========================= */
.menu {
  margin-top: 50px;
  background: var(--card);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.menu h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: var(--green-empire);
  margin-bottom: 40px;
}

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

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 2.4rem;
  }
}

.section h3 {
  font-family: "Playfair Display", serif;
  color: var(--red);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  margin: 22px 0 12px;
}

.item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin: 5px 0;
}

.item span:last-child {
  color: var(--red);
  font-weight: 700;
}

/* =========================
   Footer
========================= */
footer {
  margin: 70px 0 30px;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}

footer a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}
/* Couleur vert empire pour les deux premières lignes du footer */
footer p:first-child,
footer p:nth-child(2),
footer p:first-child strong {
  color: var(--green-empire);
}

footer p:nth-child(5) {
  color: var(--green-empire);
  font-weight: 600;
}

.btn-retour-menu {
  position: fixed;
  top: 120px;
  right: 20px;
  background-color: var(--red);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
/* update */
.btn-retour-menu:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.button-green {
  display: inline-block;
  background: var(--green-empire);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.25s ease;
}

.button-green:hover {
  background: #06351e; /* vert empire foncé */
  transform: scale(1.05);
}
