/* ========== BASE ========== */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #fffaf6;
  color: #222;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #111;
}

/* ========== HEADER & NAVIGATION NORMAL ========== */
header {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: transparent;
}

.fond-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Menu principal avec logo centré */
.menu-principal {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
}

.menu-principal .nav-logo img {
  height: 70px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #000;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  margin-top: 100px;
}

.hero h1, .hero p {
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  margin: 5px auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}

.hero p {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
}

/* ========== PRESTATIONS ========== */
.prestations {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.prestation {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.prestation h2 {
  margin-top: 0;
  color: #009688;
}

/* ========== BOUTON RETOUR ========== */
.btn-retour {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 2rem auto;
  display: block;
  text-align: center;
  width: fit-content;
}

.btn-retour:hover {
  background-color: #333;
}

/* ========== FOOTER ========== */
.footer-site {
  background-color: #fdf9f4;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.footer-site a {
  color: #009688;
  text-decoration: none;
}

.footer-site a:hover {
  text-decoration: underline;
}

/* ================================================== */
/* ========== MENU HAMBURGER POUR MOBILE ========== */
/* ================================================== */

/* ------------------------------------------------------------- */
/* MENU BURGER MOBILE POUR INSTANT PHOTOS - COPY/PASTE POUR PAGES */
/* ------------------------------------------------------------- */

/* le container général */
.menu-principal {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
}

/* logo au centre */
.menu-principal .nav-logo img {
  height: 70px;
  margin: 10px 0;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}

/* bouton burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 10000; /* par dessus le menu */
  margin-top: 10px;
}

.burger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* changement en croix quand open */
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* menu normal desktop */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #000;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ------------------------------------ */
/* MODE MOBILE <= 768px */
/* ------------------------------------ */
@media (max-width: 768px) {

  .menu-principal {
    flex-direction: row;
    justify-content: center; /* centre le logo */
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
  }

  /* Logo au centre */
  .menu-principal .nav-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-principal .nav-logo img {
    height: 60px;
    margin: 10px 0;
  }

  .burger {
    display: flex;
    position: absolute;
    right: 100px; /* ⬅️ ici j’ai mis 40px pour l’éloigner du bord */
    top: 40%;
    transform: translateY(-50%);
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 10000;
}


  /* Nav links reste identique */
  .nav-links {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
    width: 80%;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 50px 20px 20px 20px;
    gap: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 9999;
  }

  .nav-links.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}


/* ------------------------------------------------------------- */


/* ================================================== */
/* ========== FIN DU MENU HAMBURGER MOBILE ========== */
/* ================================================== */