:root {
  --rose-pale: #F2D6D0;
  --noir-doux: #222222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: white;
  color: var(--noir-doux);
  padding-top: 64px; /* espace réservé à la navbar fixe */
}

/* NAVIGATION */
.navbar {
  background-color: var(--rose-pale);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--noir-doux);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: black;
}

/
			  
			  
			  
			  
			  * IMAGE DE COUVERTURE */
			  
.hero-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 80%;
}


			  
.hero-image {
  position: relative;
  width: 100%;
  height: 85vh; /* occupe une grande partie de la hauteur écran */
  max-height: 850px;
  overflow: hidden;
  margin: 0 auto;
				
}

.hero-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hero-image img.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;						
				
}
			  

/* Overlay sombre pour mettre en valeur le texte */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.text-bottom-left {
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 80%;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 15px 25px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4); /* plus doux et homogène */
  backdrop-filter: blur(6px); /* effet verre dépoli */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  z-index: 3;
}

text-bottom-left .hover-switch {
  cursor: pointer;
  text-decoration: underline;
  font-weight: 700;
  color: #ffd700;
  transition: color 0.3s ease;
}

.text-bottom-left .hover-switch:hover {
  color: #ffec85;
}		  
			  
/* TEXTE INTRO */
.intro-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
  text-align: center;
}

.intro-box {
  background-color: var(--rose-pale);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 100%;
}

h2 {
  display: inline-block; /* pour que le hr puisse être aligné à la largeur du texte */
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
}

hr {
  border: none;
  border-bottom: 3px solid #bbb; /* couleur dorée, modifie si besoin */
  width: 100%; /* ou une largeur fixe comme 150px */
  max-width: 250px; /* limite la largeur si tu veux */
  margin-left: 0; /* pour que ça démarre bien à gauche */
}
							


.intro-box p {
  font-style: italic;
  font-size: 1.15rem;
  color: #555;
}
						  
/* Mots-clés dynamiques dans le bandeau */
.hover-switch {
  cursor: pointer;
  font-weight: 600;
  color: white;
  font-style: italic;
  position: relative;
  transition: color 0.3s ease;
}

.hover-switch::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.hover-switch:hover::after {
  opacity: 1;
}

						  
.text-bottom-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.hover-switch {
  cursor: pointer;
  position: relative;
}

.hover-switch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: white;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.hover-switch:hover::after {
  opacity: 1;
}						  

@media (max-width: 600px) {
  .hero-image {
    height: 50vh; /* hauteur réduite sur mobile */
    max-height: none; /* pour ne pas limiter */
  }

  .hero-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


@media (max-width: 600px) {
  .hero-text {
    font-size: 1rem !important;
    max-width: 80% !important;
    padding: 4px 8px !important;
    bottom: 8px !important;
    left: 8px !important;
  }
}
			  

				  
			  
				  
.presentation-enora {
  background-color: #f5f5f5; /* même rose que le site */
  padding: 4rem 2rem;
  border-radius: 30px;
  margin: 4rem auto;
  max-width: 1000px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.presentation-contenu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.presentation-image img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: 120px 120px 0 0; /* arche douce */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.presentation-texte {
  flex: 1;
  min-width: 280px;
}

.presentation-texte h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #222;
}

.presentation-texte p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .presentation-contenu {
    flex-direction: column;
    text-align: center;
  }
					
					
					

  .presentation-image img {
    margin: 0 auto;
  }
}


.presentation-image {
  position: relative;
  z-index: 1;
  padding-top: 0; /* on enlève l'espace inutile */
  top: -20px; /* ajuste la hauteur vers le haut */
}

				  

				  
.presentation-image::before {
  content: "";
  position: absolute;
  top: -45px; /* remonte beaucoup plus */
  left: -20px; /* pour décaler un peu sur la gauche */
  width: 270px;
  height: 360px; /* plus grand que l’image */
  border-radius: 135px 135px 0 0; /* adapte au nouveau format */
  background-color: #f2d6d0; /* rose pâle plus saturé */
  z-index: -1;
  opacity: 0.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


				  
				  
.presentation-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-presentation {
  background-color: #dddddd; /* gris doux pour contraster subtilement */
  color: #222;
  padding: 12px 24px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, transform 0.2s;
}
				  
.btn-presentation:hover {
  background-color: #dcd6d4; /* effet au survol */
					
}				  
				  

.btn-presentation.rose {
  background-color: #f2d6d0;
  color: #222;
}

.btn-presentation.rose:hover {
  background-color: #e8bfc0;
}
			  
				  
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
				  
				  
/* Galerie plus moderne et épurée */
.polaroid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  padding: 2rem 1rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lieux-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(176, 85, 76, 0.75);
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.lieux-item:hover .overlay {
  background-color: rgba(176, 85, 76, 0.9);
}

/* Section Ce que j'aime */
.ce-que-jaime {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.ce-que-jaime .images-container {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: stretch; /* pour que les images aient même hauteur */
}

.ce-que-jaime .images-container img {
  flex: 1 1 0;       /* chaque image prend la même place */
  height: 320px;     /* hauteur fixe identique */
  object-fit: cover; /* couverture et recadrage automatique */
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  display: block;
}

@media (max-width: 600px) {
  .ce-que-jaime .images-container {
    flex-direction: column;
    gap: 1rem;
  }

  .ce-que-jaime .images-container img {
    width: 100%;
    height: auto; /* pour garder un bon ratio en mode colonne */
  }
}


.dernieres-photos {
  background-color: var(--rose-pale);
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 20px; /* si tu veux des bords arrondis comme ailleurs */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* optionnel pour un léger relief */
}


.dernieres-photos h2 {
  font-size: 2rem; /* taille plus grande pour desktop */
  color: var(--noir-doux);
  transition: color 0.3s ease;
}



.dernieres-photos .message-prochainement {
  font-size: 1.3rem;
  padding: 1rem 0;
  color: #555;
}

/* Adaptations pour les petits écrans */
@media (max-width: 600px) {
  .dernieres-photos {
    max-width: 100%;
    padding: 2rem 1rem; /* tu peux ajuster si besoin */
    margin: 2rem auto;
  }

  .dernieres-photos h2 {
    font-size: 1.6rem; /* plus petit sur mobile */
  }

  .dernieres-photos .message-prochainement {
    font-size: 1.2rem;
  }
}
				.curiosite-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
						  
						  

.curio-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.curio-item:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.curio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}



.curio-item figcaption {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  color: #444;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  border-top: 1px solid #eee;
  flex-grow: 1;
  display: flex;
  align-items: center;
}


						  
						  
.curiosite h2 {
  color: #222222;  /* couleur plus foncée pour plus de contraste */
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-align: left;
}

.curiosite h2::after {
  background: #555555;  /* barre un peu plus foncée, assortie au texte */
}


.curiosite-description {
  color: #444444;  /* gris foncé, plus lisible */
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
  text-align: left;
}


/* Optionnel : petite barre fine décorative sous le titre */
.curiosite h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #bbb;
  margin-top: 8px;
}							  

						  .curiosite {
  background-color: #f5f5f5; /* gris clair */
  padding: 2rem 1rem;         /* espace autour du contenu */
  border-radius: 12px;        /* coins arrondis */
  max-width: 900px;           /* limite la largeur */
  margin: 0 auto 3rem auto;   /* centre horizontalement + marge en bas */
}


/* === AJOUT ANIMATION AU SCROLL === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
} 
								  
								  
								  
.curiosite-lien {
  margin-top: 1.5rem;
  text-align: center;
}

.curio-link {
  font-size: 1rem;
  color: #666;
  text-decoration: underline;
  font-style: normal;
  transition: color 0.3s ease;
}

.curio-link:hover {
  color: #000;
}
								  
								  
/* MARGE ENTRE LES SECTIONS PRINCIPALES */
.intro-text,
.ce-que-jaime,
.dernieres-photos,
.curiosite {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: #f2d6d0;
  color: #222;
  font-size: 22px;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}						  
						  
						  
						  
						  
.footer-site {
  background-color: #f5f5f5;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 4rem;
}

.footer-nav {
  margin-top: 0.5rem;
}

.footer-nav a {
  color: #666;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #333;
}

footer {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInFooter 1.2s ease-out forwards;
  animation-delay: 0.6s; /* démarre un peu après le reste */
}

@keyframes fadeInFooter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
						  

						  