/* ===== PAGE D'ACCUEIL ===== */

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: white;
  flex-wrap: wrap;
}

.hero img {
  width: 40%;
  margin-top: 20px;
  margin-left: -8%;
  border: 2px solid transparent;
  border-top-left-radius: 50%;
}

.hero-text {
  width: 40%;
  text-align: left;
}

.hero-text h1 {
  font-size: 22px;
  font-weight: bold;
  font-family: "Lovelo Black";
  align-items: center;
  text-align: center;
}

.hero-text button {
  background-color: #c5a67e;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

/* ===== PROMO SECTION ===== */
.promo-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: "Futura";
}

.background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 .promo-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Image fills the container */
.image-promotion {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Title centered at the top of the image */
.promo-title {
  position: absolute;
  top: 100px;              /* distance from top of image */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #1d1d1d;         /* change if your image is dark */
  font-size: 50px;
  font-weight: bold;
    font-family: "Futura";

}

@media (max-width: 600px) { 
 .promo-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Image fills the container */
.image-promotion {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Title centered at the top of the image */
.promo-title {
  position: absolute;
  top: 10px;              /* distance from top of image */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #1d1d1d;         /* change if your image is dark */
  font-size: 20px;
  font-weight: bold;
    font-family: "Futura";

}


  
}




.promo-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #1d1d1d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px 40px;
  text-align: center;
  box-sizing: border-box;
}

.promo-content h1 {
  font-size: 3.5em;
  font-weight: bold;
}

.promo-btn {
  background-color: #1d1d1d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 35px;
  font-size: 2em;
  cursor: pointer;
  margin: 15%;
  text-align: center;
}

/* ===== WELCOME SECTION ===== */
.welcome {
  background-color: #123458;
  color: white;
  text-align: center;
  padding: 10px;
  font-family: "Futura";
  line-height: 18px;
}

/* ===== DISCOVER BUTTON ===== */
.discover {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0;
  color: white;
  background-color: #1e2a57;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FIDELITE SECTION ===== */
.fidelite-section {
  color: white;
}

.header-text {
  font-size: 20px;
  padding: auto;
  height: 40%;
  margin: auto;
  line-height: 3;
  width: 100%;
  color: black;
  text-align: center;
  background-color: #c49a6c;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  text-align: center;
}

.step {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #c49a6c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -40px;
}

.icon-circle i {
  font-size: 40px;
  color: black;
}

.step h3 {
  margin-top: 50px;
  color: black;
}

.step p {
  margin-top: 10px;
  color: black;
}

.step img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe {
  text-align: center;
  padding: 10px;
  margin-top: 30px;
  background-color: #c49a6c;
}

.subscribe img {
  width: 50px;
  margin: 10px 0;
}

.email-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  border: 1px solid;
}

.icon-envelope {
  font-size: 60px;
  color: white;
  z-index: 1;
}

input {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 15px;
  font-size: 16px;
}

button {
  background-color: #1e2a57;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #2e1f14;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero img,
  .hero-text {
    width: 80%;
    margin: 10px 0;
  }

  .promo-content h1 {
    font-size: 2.5em;
  }

  .promo-btn {
    font-size: 1.5em;
    margin: 10%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step {
    width: 80%;
  }

  .discover {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 600px) {
  .promo-content {
    padding: 40px 10px 20px;
  }

  .promo-content h1 {
    font-size: 1.8em;
  }

  .promo-btn {
    font-size: 1.2em;
    padding: 8px 16px;
    margin: 8%;
    width: 80%;
  }

  .hero-text h1 {
    font-size: 18px;
  }

  input {
    width: 80%;
  }

  .email-box {
    flex-direction: column;
    gap: 10px;
    border: none;
  }

  .icon-envelope {
    font-size: 40px;
  }
}

@media screen and (max-width: 400px), screen and (max-height: 600px) {
  .promo-btn {
    font-size: 1em;
    padding: 8px 14px;
    margin: 10% auto;
    width: 80%;
    text-align: center;
  }

  .promo-content h1 {
    font-size: 1.5em;
    padding: 0 10px;
  }
}
