/* Reset & Fonts */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #222;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Image de fond */
.fond-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Header */
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;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

nav .nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



nav ul.menu-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}


nav .nav-content.centered-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

nav .logo img {
  height: 80px; /* Augmente la taille ici */
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
  margin-bottom: 0.5rem;
}

nav ul.menu-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}



nav ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: "";
  display: block;
  height: 2px;
  background: #000;
  width: 0;
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  margin-top: 100px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.btn {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #000;
  color: white;
}


/* Contact */
#contact {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Roboto', sans-serif;
}

button {
  background-color: #000;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #444;
}

/* Footer */



/* Galeries haut de gamme */
#galeries {
  background-color: #fdfaf6;
  padding: 6rem 2rem;
  text-align: center;
}

#galeries h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  color: #111;
}

#galeries .intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.galerie-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  height: 500px;
}

.galerie-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.galerie-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 30%; /* centré sur les visages */
  display: block;
  transition: transform 0.5s ease;
}



.galerie-card:hover img {
  transform: scale(1.05);
}

.galerie-text {
  padding: 1.5rem;
  text-align: center;
}

.galerie-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 0.8rem; /* espace raisonnable */
}

.galerie-text a {
  display: inline-block;
  margin-top: 0.5rem; /* petit espace */
  color: #009688;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.galerie-text a:hover {
  border-color: #009688;
}


/* Responsive */
@media (max-width: 768px) {
  .galerie-card {
    height: 420px;
  }

  .galerie-card img {
    height: 220px;
  }
}


/*--------A propos----------*/
/* Section À propos stylée */
#a-propos {
  background-color: #fdfaf6;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.a-propos-container {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  gap: 3rem;
  align-items: center;
}

.a-propos-texte {
  flex: 1;
  min-width: 300px;
}

.a-propos-texte h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.a-propos-texte p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.a-propos-photo {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.a-propos-photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



/*--------------témoignage---------*/ 

#temoignages {
  background: #fdf9f4; /* même fond que le site */
  padding: 4rem 2rem;
  text-align: center;
}

#temoignages h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #111;
}

.carousel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.temoignage {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 700px;
  width: 100%;
  transition: transform 0.3s ease;
}

.temoignage:hover {
  transform: translateY(-4px);
}

.temoignage p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #222;
}

.temoignage h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
}

/* ✅ Photo plus grande et large */
.temoignage-photo-bottom {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 20%; /* on remonte un peu, pour centrer les visages */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}



.temoignage-photo-bottom:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .temoignage-photo-bottom {
    width: 120px;
    height: 120px;
  }
}


/* ================================================== */
/* ========== 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 ========== */
/* ================================================== */