/* GENERAL */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: white;
  text-align: center;
  height: 100%;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.6);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, black 0%, transparent 20%, transparent 80%, black 100%);
  z-index: 0;
}
.hero-left-image {
  position: absolute;
  left: 130px;
  top: 80%;
  transform: translateY(-50%);
  width: 250px;   /* 👈 AJOUT IMPORTANT */
  height: auto;
  max-height: 60vh;
  max-width: 30vw;
  z-index: 1;
  pointer-events: none;
}
.hero-left-image {
  right: auto !important;
  margin: 0 !important;
}

/* CONTENT OVERLAY */
.overlay {
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  padding-left: 450px;
  transform: translateY(70px);
}

/* TITLES (inchangés même si inutilisés) */
h1 {
  font-size: 64px;
  letter-spacing: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin: 0;
}

h2 {
  font-size: 22px;
  font-weight: normal;
  margin: 20px 0 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ANCIEN LOGO TEXTE (laissé mais inutile) */
.logo {
  font-size: 64px;
  letter-spacing: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin: 0;
}

.logo sup {
  font-size: 14px;
  position: relative;
  top: -18px;
  margin-left: 3px;
  font-weight: 400;
}
.hero-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: #e5e5e5;
  opacity: 0.6;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.hero-link:hover {
  opacity: 1;
}


/* 🔥 LOGO IMAGE CORRIGÉ */
.logo-landing {
  width: 480px;
  height: auto;
  display: block;
  margin: -80px auto 0px auto;
  transform: translateX(25px, 20px);
    /* 🔥 réduit l’espace → évite que tout descende */
}


/* LANGUAGE BUTTONS */
.lang {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
   margin-bottom: 45px; /* 👈 espace sous les langues */
  flex-wrap: wrap;
  transform: translateX(20px); 
}

.lang button {
  background: transparent;
  color: white;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang button:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.highlight {
  color: #ff4d5a;
  font-style: italic;
  text-align: center;
  margin: 40px 0;
}

/* MOUNTAIN IMAGE */
.mountain {
  width: 80%;
  max-width: 500px;
  display: block;
  margin: -30px auto 15px auto;
  opacity: 0.5;
  transform: translateX(20px);
}

/* PHRASE */
.tagline-below {
   font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #4f6f63;
  filter: brightness(1.5);
  opacity: 1;
  text-shadow:  0 0 8px rgba(79, 111, 99, 0.5);
  margin-top: 60px;
  white-space: nowrap;
  text-align: center;
  padding-left: 60px;
}
.cta-text {
  display: inline-block;
  padding: 10px 16px; /* 👈 plus de présence */
  border: 1.5px solid rgba(217,92,106,0.55); /* 👈 plus visible */
  border-radius: 6px;
  color: #d95c6a;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.cta-text:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(176,58,72,0.7);
}
.cta-group {
  display: flex;
  justify-content: center;
  gap: 15px; /* 👈 espace entre les boutons */
  margin-top: 40px;
  flex-wrap: wrap;
  transform: translateX(24px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
    letter-spacing: 4px;
  }

  h2 {
    font-size: 18px;
  }

  .overlay {
    transform: translateX(20px) translateY(30px);
  }

  .mountain {
    transform: translateX(15px);
  }

  .logo-landing {
    width: 320px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 16px;
  }

  .overlay {
    transform: translateX(0px) translateY(20px);
    padding: 20px 10px;
  }

  .mountain {
    transform: translateX(10px);
    width: 90%;
  }

  .lang {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    transform: translateX(10px);
  }

  .tagline-below {
    font-size: 16px;
    margin-top: 25px;
  }

  .logo-landing {
    width: 260px;
  }
}