
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.construction-banner {
  background-color: #de4321 ;
  color: white;
  text-align: center;
  padding: 0.7em;
  font-weight: bold;
  font-size: 1.1em;
  position: relative;
  z-index: 1000;
}


body {
    background-image: url('blue.png');  /* adapte le nom si différent */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* effet parallax léger */
  background-repeat: no-repeat;
  color: white; /* si texte trop sombre sinon */
  font-family: 'Raleway', sans-serif;
  color: #fff;
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); /* assombrit subtilement */
  z-index: -1;
}


.navbar {
  position: sticky;
  top: 0;
  background: rgba(14, 14, 14, 0.9);
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 1em;
  z-index: 999;
}
.navbar a {
  color: #ff7043;
  text-decoration: none;
  font-weight: bold;
}
.navbar a:hover {
  text-decoration: underline;
}

header {
  position: relative;
  height: 100vh;
  background: url('camping.png') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

header .content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2em;
}

header .logo {
  width: 220px;
  margin-bottom: 1em;
}

header h1 {
  font-size: 3em;
  color: #fff8e0;
}

header p {
  font-size: 1.1em;
  margin: 1em 0;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* hauteur du fondu */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #0e0e0e 100%);
  z-index: 1;
}


.btn {
  display: inline-block;
  padding: 1em 2em;
  font-size: 1em;
  background-color: #ff7043;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 1em;
}
.btn:hover {
  background-color: #ff5722;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2em;
  color: #fff8e0;
  animation: bounce 1.5s infinite;
  z-index: 1;
}

main {
  padding: 3em 1em;

}

.explore-stair {
  position: absolute;
  top: 90px; /* ajuste selon ta navbar */
  right: 40px;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 2em;
  text-shadow: 3px 3px 5px black;
  font-weight: 700;
  color: #fff8e0;
  opacity: 0.4; /* fondu léger */
  line-height: 1.1;
  pointer-events: none;
  z-index: 100;
  user-select: none;
  white-space: nowrap;
}

.explore-stair .word1 {
  margin-left: 0;
  display: inline-block;
}

.explore-stair .word2 {
  margin-left: 1em;
  display: inline-block;
}

.explore-stair .word3 {
  margin-left: 4em;
  display: inline-block;
}


/* Pourquoi nous */
.why-us {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.why-us h2 {
  font-size: 2.5em;
  color: #ff7043;
  margin-bottom: 1em;
}
.reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.reason {
  flex: 1 1 250px;
  background: #1a1a1a;
  padding: 1.5em;
  border-radius: 10px;
}

/* Flyer */
.flyer {
  text-align: center;
  margin: 4em 0;
  margin: 4em 0;
}
.flyer img {
  transition: transform 0.4s ease;
  max-width: 70%;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 112, 67, 0.6);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0; width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.modal-content.zoomed {
  transform: scale(2); /* ou 2.5 pour zoom plus fort */
  cursor: zoom-out;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


/* Galerie */
.gallery {
  text-align: center;
}
.gallery h2 {
  color: #ff7043;
  margin-bottom: 1em;
}
.gallery-grid {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-grid img {
  transition: transform 0.3s ease;
  width: 30%;
  border-radius: 10px;
  object-fit: cover;
}

/* Contact */

.contact {
  text-align: center;
  margin-top: 4em;
}
.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.contact input,
.contact textarea {
  padding: 1em;
  border-radius: 8px;
  border: none;
}
.contact button {
  background-color: #ff7043;
  color: white;
  border: none;
  padding: 1em;
  border-radius: 30px;
  cursor: pointer;
}

/*logo*/

.logo {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
 
 /*effet menu*/
 .navbar a {
  position: relative;
}
.navbar a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff7043;
  transition: width 0.3s ease;
}
.navbar a:hover::after {
  width: 100%;
}

/*effet bouton*/

.btn {
  box-shadow: 0 0 8px #ff7043;
  transition: all 0.3s ease;
}
.btn:hover {
  box-shadow: 0 0 15px #ff5722, 0 0 30px #ff5722;
}


.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials {
  padding: 4em 1em;
  text-align: center;
}

.testimonials h2 {
  color: #ff7043;
  margin-bottom: 2em;
  font-size: 2.2em;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  max-width: 1000px;
  margin: auto;
  transition: transform 0.5s ease;
}

.testimonial-grid blockquote {
  border-left: 4px solid;
  padding: 1em.5em;
  border-radius: 10px;
  font-style: italic;
  max-width: 280px;
  color: #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.testimonial-grid blockquote:hover {
  transform: translateY(-5px);
}

.testimonial-grid cite {
  display: block;
  margin-top: 1em;
  font-style: normal;
  color: #aaa;
  font-size: 0.9em;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.arrow {
  background: none;
  border: none;
  color: #ff7043;
  font-size: 2.5em;
  cursor: pointer;
  padding: 0 0.5em;
  user-select: none;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.2);
}



.map {
  margin-top: 2em;
}
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 1em;
}
footer a {
  color: #ff7043;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/*boutons légaux*/

.legal-buttons {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
}

.btn-legal {
  background-color: #ff7043;
  color: white;
  padding: 0.8em 1.5em;
  border-radius: 30px;
  font-size: 0.95em;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-legal:hover {
  background-color: #ff5722;
}


@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

.gallery-grid img:hover { transform: scale(1.03); }
.flyer img:hover { transform: scale(1.03); }