/* RESET SIMPLE */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #0A5E57;          /* Vert profond */
  background: #F5F7F4;     /* Fond doux global */
}

/* PALETTE (référence)
   --vert-fonce: #0A5E57;
   --vert-eau:   #00BFA6;
   --jaune:      #FFC300;
   --beige:      #F0EEE9;
   --fond-doux:  #F5F7F4;
*/

/* LAYOUT GÉNÉRAL */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 780px;
}

/* HERO INDEX */
.hero {
  position: relative;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 20px;
 /* background:
    radial-gradient(circle at top left, rgba(255,195,0,0.26), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0,191,166,0.22), transparent 55%),
    #F5F7F4;*/
  color: #0A5E57;

  background-image: url("static/img/hero-bg-lekkantu.png"); /* ton image */
  background-size: cover;      /* remplit le hero */
  background-position: center; /* centrage esthétique */
  background-repeat: no-repeat;
  background-blend-mode: lighten;
}


.hero-inner {
  max-width: 680px;
  z-index: 1;
}

/* Logo dans une carte blanche pour lisser le carré */
.logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  margin-bottom: 26px;
}

.logo {
  width: 65px;
  border-radiud:16px;
}

/* TITRES & TEXTES HERO */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  margin: 0 0 6px;
}

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin: 0 0 16px;
  color: #0A5E57;
}


.subtitle {
  font-size: 16px;
  margin: 0 0 30px;
  line-height: 1.7;
  color: #285C55;
}

/* Bouton principal du hero */
.cta {
  display: inline-block;
  background: #FFC300;       /* Jaune solaire */
  color: #0A5E57;
  padding: 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  background: #FFD54A;
}

/* SECTIONS INDEX */
.section {
  padding: 80px 0;
}

.section-light {
  background: #FFFFFF;
}

.section-alt {
  background: #F0EEE9;   /* Beige naturel */
}

.section-soft {
  background: #F5F7F4;
}

.section-form {
  background: #F5F7F4;
}

.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  margin: 0 0 20px;
  text-align: center;
}

.lead {
  font-size: 18px;
  margin-bottom: 18px;
  text-align: center;
}

.lead-small {
  font-size: 16px;
  margin-top: 6px;
  text-align: center;
  color: #285C55;
}

.section p {
  font-size: 15.5px;
  line-height: 1.7;
}

/* CARDS GÉNÉRALES */
.card {
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

/* CARD MAIN */
.card-main {
  padding: 26px 22px 26px;
}

.card-main h2 {
  text-align: left;
  margin-bottom: 14px;
}

.card-main .lead {
  text-align: left;
  margin-bottom: 14px;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.step-card {
  padding: 22px 20px;
}

.step-icon {
  font-size: 26px;
  display: inline-block;
  margin-bottom: 10px;
}

.step-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* SECTION FORMULAIRE */
.form-card {
  margin-top: 30px;
  padding: 24px 22px 26px;
}

.form-text {
  margin: 0 0 20px;
  font-size: 15.5px;
}

/* BOUTON FORMULAIRE LARGE */
.cta-large {
  display: inline-block;
  width: 40%;
  text-align: center;
  background: #FFC300;
  color: #0A5E57;
  padding: 16px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.cta-large:hover {
  background: #FFD54A;
  transform: translateY(-2px);
}

/* HERO MENTIONS LÉGALES */
.legal-hero {
  padding: 70px 0 40px;
  background: #F0EEE9;
  text-align: left;
}

.legal-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  margin: 0 0 10px;
}

.legal-intro {
  font-size: 15.5px;
  color: #285C55;
}

/* CONTENU MENTIONS */
.legal-main {
  padding: 40px 0 60px;
  background: #FFFFFF;
}

.legal-content section {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
}

.legal-note {
  font-size: 13px;
  color: #777;
}

.legal-backlink {
  margin-top: 20px;
  font-size: 14px;
}

.legal-backlink a {
  color: #0A5E57;
  text-decoration: none;
}

.legal-backlink a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #0A5E57;
  color: #FFFFFF;
  padding: 20px 0;
  font-size: 14px;
}

.footer-inner {
  text-align: center;
}

.footer-main {
  font-size: 14px;
  margin: 0;
}

.footer-sub {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

footer a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 16px;
    min-height: 80vh;
  }

  h1 {
    font-size: 32px;
  }

  .tagline {
    font-size: 18px;
  }

  .subtitle {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  .card-main {
    padding: 20px 18px;
  }

  .form-card {
    padding: 18px 16px;
  }

  .legal-hero {
    padding: 60px 16px 30px;
  }

  .legal-main {
    padding: 30px 0 50px;
  }
  }

.hero {
  
  padding: 60px 20px;
}

.hero {
  min-height: 60vh;
  padding: 60px 20px;
}
@media (min-width: 1024px) {
  .hero {
    
    padding: 60px 20px;
  }
}
h1 {
  font-size: 34px;
}

.tagline {
  font-size: 18px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .hero {
    
    padding: 40px 20px;
  }

  .logo-wrapper {
    margin-bottom: 12px;
  }

  .logo {
    width: 60px;
  }

  h1 {
    font-size: 30px;
    margin-bottom: 6px;
  }

  .tagline {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
h1 {
  margin-bottom: 4px;
}

.tagline {
  margin-bottom: 4px;
  font-size: 16px;
}

.subtitle {
  margin-bottom: 12px;
  font-size: 14px;
}

.logo-wrapper {
  padding: 6px;
  margin-bottom: 10px;
  border-radius: 16px;
}

.logo {
  width: 55px;
}

.hero {
  padding-top: 30px;
  padding-bottom: 40px;
}


/* === HERO ULTRA COMPACT === */

.hero {
  padding-top: 10px !important;
  padding-bottom: 20px !important;
}

/* Logo wrapper plus compact */
.logo-wrapper {
  padding: 6px;
  border-radius: 20px;
  background: #fff;
}

/* Logo plus petit */
.logo {
  width: 65px !important;
}

/* Titre compacté */
h1 {
  font-size: 28px !important;
  margin-bottom: 4px !important;
}

/* Tagline très compacte */
.tagline {
  font-size: 15px !important;
  margin-bottom: 4px !important;
}

/* Texte compact */
.subtitle {
  font-size: 13px !important;
  margin-bottom: 10px !important;
}

/* Bouton compact */
.cta {
  margin-top: 10px !important;
}

.logo {
  width: 65px;
  border-radius: 16px;
}

.logo-wrapper {
  padding: 6px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.logo {
  width: 65px;
  border-radius: 12px; /* léger arrondi interne possible */
  }

/* CTA large par défaut (mobile-first) */
.cta-large {
  display: inline-block;
  width: 100%;                /* parfait sur mobile */
  padding: 14px 32px;
  background: #007C91;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Version PC */
@media (min-width: 1024px) {
  .cta-large {
    width: auto;              /* IMPORTANT : casse le 100% */
    max-width: 260px;         /* largeur visuellement parfaite */
    padding: 14px 40px;       /* légèrement plus long mais équilibré */
    margin: 0 auto;           /* centrer le bouton */
  }
}

/* Effet hover (optionnel mais magnifique) */
.cta-large:hover {
  background: #00BFA6;
  transform: translateY(-2px);
}

/* CTA large : version mobile-first */
.cta-large {
  display: block;
  width: 100%;
  padding: 14px 32px;
  background: #007C91;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
  transition: 0.25s ease;
}

/* Version PC */
@media (min-width: 1024px) {
  .cta-large {
    width: 240px;          /* largeur idéale */
    padding: 14px 40px;     /* plus élégant */
    margin: 0 auto;         /* centré */
  }
}

/* Effet hover (PC uniquement, optionnel) */
@media (hover: hover) {
  .cta-large:hover {
    background: #00BFA6;
    transform: translateY(-2px);
  }
  }


.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.social-links a img {
  width: 26px;
  height: 26px;
  opacity: 0.9;
  transition: 0.2s ease;
}

.social-links a img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

/* Chaque icône dans une petite "case" identique */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.social-links img {
  width: 22px;
  height: 22px;
  display: block;
  opacity: 0.9;
  transition: 0.2s ease;
}

.social-links img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 12px;
}

.social-links .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;   /* CENTRAGE VERTICAL */
  justify-content: center; /* CENTRAGE HORIZONTAL */
}

.social-links .icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;   /* NORMALISE TOUT */
  margin: 0;             /* PAS DE décalage interne */
  padding: 0;
  opacity: 0.9;
  transition: 0.2s ease;
}

.social-links .icon img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-links img {
  width: 26px;
  height: 26px;
}

footer .social-links img {
  width: 28px;
  height: 28px;
  display: block;
  margin: 10px auto 0; /* espace haut + centrage */
}
.social-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.social-links img {
  width: 28px;
  height: 28px;
}

/* FOOTER */
footer {
  background: #0A5E57;
  color: #FFFFFF;
  padding: 18px 0 16px;   /* un peu moins de padding bas */
  font-size: 14px;
}

.footer-inner {
  text-align: center;
}

.footer-main {
  font-size: 14px;
  margin: 0;
}

.footer-sub {
  font-size: 12px;
  opacity: 0.85;
  margin: 4px 0 0;
}

footer a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Icône LinkedIn */
.social-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.social-links .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links .icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.vision-img {
  width: 100%;
  border-radius: 18px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}
/* ---- Image de section Lekkantu ---- */


.section-photo {
  width: 100%;
  padding: 0;
  margin: 2rem 0;
}

.full-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.photo-card {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.photo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

@media (min-width: 1024px) {
  .cta-large {
    width: 240px;
  }
}
