/* ----------------------------------------------------
   RESET & VARIABLES
------------------------------------------------------- */
:root {
  --bg-color: #202c2b; /* Le vert très sombre/anthracite de l'arrière-plan */
  --text-color: #eeebe6; /* Blanc pour les titres et textes principaux */
  --text-muted: #a4b0af; /* Blanc cassé/gris clair pour les descriptions */
  --text-footer: #79c8b2; /* Blanc cassé/gris clair pour les descriptions */
  --border-color: #ffffff; /* Bordure du bouton */
  --font-serif: "Literata", serif;
  --font-sans: "Literata", serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-x: hidden;
}

/* ----------------------------------------------------
   LAYOUT CONTAINER (Mobile First)
------------------------------------------------------- */
.landing-container {
  width: 100%;
  max-width: 1100px; /* Aligné sur la largeur de la box desktop Figma */
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 40px 10px;
}

/* ----------------------------------------------------
   HEADER / LOGO
------------------------------------------------------- */
.logo-area {
  margin-bottom: 40px;
}

.logo {
  max-width: 140px;
  height: auto;
}

/* ----------------------------------------------------
   CONTENT GRID (Mobile par défaut)
------------------------------------------------------- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

/* Colonne Gauche : Titre */
.col-left h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
}

/* Colonne Droite : Textes */
.col-right {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.subtitle {
  font-family: var(--font-serif);
  font-weight: 400; /* Style: Regular */
  font-size: 18px; /* Taille: 20px */
  line-height: 0.99; /* Hauteur de ligne 99% */
  letter-spacing: 0.16em; /* Espacement des lettres 16% */
  text-transform: uppercase; /* Casse: Majuscules */
  text-align: left;

  display: flex;
  flex-direction: column; /* Aligne le texte et la ligne verticalement */
  gap: 18px; /* Espace exact entre le texte et la ligne fine */
  margin-bottom: 24px; /* Espace entre la ligne fine et la description en dessous */
}

/* La ligne fine et courte sous OUVERTURE PROCHAINE */
.subtitle::after {
  content: "";
  display: block;
  width: 65px; /* Largeur exacte de la petite ligne de la capture */
  height: 1px; /* Épaisseur de la ligne (fine) */
  background-color: rgba(
    255,
    255,
    255,
    0.4
  ); /* Ligne pleine blanche avec opacité douce */
}

.description {
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 420px;
}

.description p {
  margin-bottom: 15px;
  text-align: left;
}

.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-top: 10px;
}

/* ----------------------------------------------------
   COMPOSANT : BOUTON (Identique au hover Figma)
------------------------------------------------------- */
.cta-area {
  /* width: 20%; */
  max-width: 350px;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px;
}

.btn-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 25px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-contact:hover {
  background-color: #085d30; /* Vert foncé visible sur le composant actif Figma */
  border-color: #085d30;
  cursor: pointer;
}

.btn-contact .arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.btn-contact:hover .arrow {
  transform: translateX(5px);
}

/* ----------------------------------------------------
   FOOTER
------------------------------------------------------- */
.landing-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-footer);
  letter-spacing: 1px;
  padding-top: 20px;
  font-weight: 500;
}

.landing-footer a {
  color: var(--text-footer);
  text-decoration: underline;
  transition: color 0.2s;
}

.landing-footer a:hover {
  color: var(--text-footer);
}

/* ----------------------------------------------------
   MEDIA QUERIES : DESKTOP DEVIENT IDENTIQUE À LA MAQUETTE
------------------------------------------------------- */
@media (min-width: 768px) {
  .landing-container {
    padding: 0px 40px;
  }
  .logo {
    max-width: 160px;
  }
  .logo-area {
    margin-bottom: 30px;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    margin-bottom: 2%;
    align-items: start;
  }

  .col-left h1 {
    font-size: 64px;
    line-height: 1.15;
  }

  .col-right {
    align-items: flex-start;
    text-align: left;
  }

  .subtitle {
    font-size: 20px;
    margin-top: 14px;

    max-width: none;
    text-align: left;
  }
  .signature-wrapper {
    margin-bottom: 30px;
  }
   .cta-area {
    /* align-self: flex-end;
        max-width: 420px;  */
    width: 22%;
    margin-right: 0;
    margin-bottom: 0px;
    margin-top: 0px;  
  }
 
  .landing-footer {
    flex-direction: row;
    justify-content: space-between;
    border-top: none;
    padding-top: 0;
  }
}
