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

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

.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;
}

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

.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;
}

.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%;
}

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

/* ===== 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;
}
