/* =========================================================
   L'ombre du palmier — landing page clone
   Palette + type pulled from the original site's build:
   primary #093136, secondary #1D878F, accent #208579,
   bright #1EC9B5, cta #FF8F00 — Quicksand / Roboto Slab
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Roboto+Slab:wght@400;600;700&display=swap');

:root{
  --primary:#093136;
  --secondary:#1d878f;
  --accent:#208579;
  --bright:#1ec9b5;
  --cta:#ff8f00;
  --cta-dark:#e07d00;
  --text:#1c2b2c;
  --light-bg:#e8fdff;
  --cream:#fbfaf5;
  --white:#ffffff;
  --wave-fill: var(--primary);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Quicksand', Arial, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{
  font-family:'Roboto Slab', Georgia, serif;
  margin:0 0 .5em;
  line-height:1.25;
  color:var(--primary);
}
p{margin:0 0 1em;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.85rem;
  font-weight:600;
  color:var(--bright);
}
.btn{
  display:inline-block;
  padding:13px 30px;
  border-radius:30px;
  background:var(--cta);
  color:#fff;
  font-weight:600;
  letter-spacing:.02em;
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow:0 6px 16px rgba(255,143,0,.28);
  border:none;
  cursor:pointer;
  font-family:inherit;
}
.btn:hover{background:var(--cta-dark); transform:translateY(-2px);}
.btn-outline{
  background:transparent;
  border:2px solid rgba(255,255,255,.75);
  box-shadow:none;
}
.btn-outline:hover{background:rgba(255,255,255,.12); border-color:#fff;}
.btn-teal{
  background:var(--secondary);
  box-shadow:0 6px 16px rgba(29,135,143,.28);
}
.btn-teal:hover{background:var(--accent);}

/* ---------- wave dividers (recreated from the site's own Elementor SVG shapes) ---------- */
.wave{
  display:block;
  width:100%;
  height:34px;
  margin:0;
  line-height:0;
}
.wave svg{width:100%;height:100%;display:block;}
.wave-top{margin-bottom:-1px;}
.wave-bottom{margin-top:-1px;}

/* ---------- header ---------- */
.site-header{
  position:absolute;
  top:0;left:0;right:0;
  z-index:50;
  padding:18px 0;
}
.site-header.is-solid{
  position:sticky;
  background:var(--primary);
  box-shadow:0 4px 18px rgba(0,0,0,.18);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo img{height:46px;width:auto;}
.main-nav{display:flex;}
.main-nav ul{
  list-style:none;
  display:flex;
  gap:6px;
  margin:0;padding:0;
  flex-wrap:wrap;
}
.main-nav li{position:relative;}
.main-nav>ul>li>a{
  display:block;
  padding:10px 14px;
  font-weight:600;
  font-size:.95rem;
  color:#fff;
  border-radius:6px;
  transition:background .15s ease, color .15s ease;
}
.main-nav>ul>li>a:hover, .main-nav>ul>li.active>a{
  background:rgba(255,255,255,.14);
  color:var(--bright);
}
.main-nav .sub-menu{
  list-style:none;
  position:absolute;
  top:100%;left:0;
  min-width:220px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  padding:8px;
  margin:6px 0 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .16s ease, transform .16s ease, visibility .16s;
  z-index:60;
}
.main-nav li:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0);}
.main-nav .sub-menu a{
  display:block;
  padding:9px 12px;
  border-radius:6px;
  color:var(--primary);
  font-size:.92rem;
  font-weight:500;
}
.main-nav .sub-menu a:hover{background:var(--light-bg); color:var(--accent);}
.header-cta{
  display:flex;
  align-items:center;
  gap:14px;
}
.call-btn{
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--cta);
  color:#fff;
  padding:9px 18px;
  border-radius:24px;
  font-weight:600;
  font-size:.9rem;
  white-space:nowrap;
}
.call-btn:hover{background:var(--cta-dark);}
.nav-toggle{
  display:none;
  background:none;border:none;
  color:#fff;
  font-size:1.6rem;
  cursor:pointer;
}

@media (max-width:960px){
  .main-nav{
    position:fixed;
    top:0; right:-100%;
    width:82%;max-width:340px;
    height:100vh;
    background:var(--primary);
    padding:90px 24px 24px;
    transition:right .25s ease;
    overflow-y:auto;
    z-index:51;
  }
  .main-nav.open{right:0; box-shadow:-14px 0 40px rgba(0,0,0,.4);}
  .nav-backdrop{
    position:fixed; inset:0;
    background:rgba(0,0,0,.45);
    opacity:0; visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
    z-index:49;
  }
  .nav-backdrop.open{opacity:1; visibility:visible;}
  .main-nav ul{flex-direction:column; flex-wrap:nowrap; gap:0;}
  .main-nav .sub-menu{
    position:static;
    opacity:1;visibility:visible;transform:none;
    box-shadow:none;background:rgba(255,255,255,.06);
    display:none;
    margin:2px 0 6px;
  }
  .main-nav li.open .sub-menu{display:block;}
  .main-nav .sub-menu a{color:#fff;}
  .main-nav .sub-menu a:hover{background:rgba(255,255,255,.12); color:var(--bright);}
  .header-cta .call-label{display:none;}
  .nav-toggle{display:block;}
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  background:linear-gradient(160deg, rgba(9,49,54,.88), rgba(9,49,54,.62) 55%, rgba(29,135,143,.55)), url('images/grelinette.jpg') center 30%/cover no-repeat;
  padding:170px 0 90px;
}
.hero-content{max-width:640px;color:#fff;}
.hero h1{
  color:#fff;
  font-size:clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom:.4em;
}
.hero h3{
  color:rgba(255,255,255,.92);
  font-family:'Quicksand', sans-serif;
  font-weight:500;
  font-size:1.15rem;
  max-width:560px;
  margin-bottom:1.6em;
}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap;}

/* ---------- animated tagline strip ---------- */
.tagline-strip{
  background:var(--primary);
  color:#fff;
  text-align:center;
  padding:46px 0;
}
.tagline-strip h2{
  color:#fff;
  font-size:clamp(1.3rem,2.6vw,2rem);
  margin:0;
}
.tagline-strip .accent-word{color:var(--bright);}

/* ---------- section basics ---------- */
.section{padding:88px 0;}
.section-light{background:var(--light-bg);}
.section-cream{background:var(--cream);}
.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 46px;
}
.section-head p{
  font-size:1.05rem;
  color:#3a4a4b;
}

/* ---------- events ---------- */
.events-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:30px;
  margin-top:44px;
}
.event-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(9,49,54,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.event-card:hover{transform:translateY(-6px); box-shadow:0 18px 36px rgba(9,49,54,.14);}
.event-card .event-img{height:210px; overflow:hidden;}
.event-card .event-img img{width:100%;height:100%;object-fit:cover;}
.event-card-body{padding:24px 26px 28px;}
.event-card-body h3{font-size:1.2rem;margin-bottom:.5em;}
.event-card-body p{color:#455;}
.event-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:700;
  color:var(--accent);
}
.event-link:hover{color:var(--cta);}

/* ---------- route / location band ---------- */
.route-band{
  background:linear-gradient(120deg, var(--secondary), var(--accent));
  color:#fff;
  text-align:center;
  padding:80px 0;
}
.route-band .eyebrow{color:#fff; opacity:.85;}
.route-band h2{color:#fff; font-size:clamp(1.5rem,3vw,2.2rem); margin-bottom:.3em;}
.route-band .place{
  font-size:1.2rem;
  font-weight:600;
  margin-bottom:1.6em;
}
.route-band .place strong{color:#eafffb;}

/* ---------- three feature columns ---------- */
.features{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:28px;
}
.feature-card{
  background:#fff;
  border:1px solid #e4efee;
  border-radius:16px;
  padding:34px 28px;
  text-align:center;
  box-shadow:0 8px 22px rgba(9,49,54,.05);
}
.feature-icon{
  width:64px;height:64px;
  margin:0 auto 18px;
  border-radius:50%;
  background:var(--light-bg);
  display:flex;align-items:center;justify-content:center;
  color:var(--accent);
}
.feature-icon svg{width:30px;height:30px;}
.feature-card h3{font-size:1.15rem;}
.feature-card p{color:#455; margin-bottom:1.4em;}

/* ---------- newsletter ---------- */
.newsletter{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:56px;
  align-items:center;
}
.newsletter h2{font-size:clamp(1.4rem,2.8vw,1.9rem);}
.newsletter .fine-print{font-size:.86rem;color:#5a6b6c;}
.newsletter-form{
  background:#fff;
  border-radius:18px;
  padding:34px;
  box-shadow:0 14px 34px rgba(9,49,54,.09);
}
.newsletter-form label{
  display:block;
  font-weight:600;
  font-size:.88rem;
  margin-bottom:6px;
  color:var(--primary);
}
.newsletter-form input{
  width:100%;
  padding:12px 14px;
  border:1.5px solid #d9e6e5;
  border-radius:8px;
  font-family:inherit;
  font-size:.95rem;
  margin-bottom:18px;
}
.newsletter-form input:focus{outline:none; border-color:var(--secondary);}
.newsletter-form .btn{width:100%; text-align:center;}

@media (max-width:820px){
  .newsletter{grid-template-columns:1fr;}
}

/* ---------- products ---------- */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:36px;
  margin-top:10px;
}
.product-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(9,49,54,.08);
}
.product-card .product-img{height:260px; overflow:hidden;}
.product-card .product-img img{width:100%;height:100%;object-fit:cover;}
.product-card-body{padding:28px 30px 32px;}
.product-card-body h3{font-size:1.3rem;}
.product-card-body p{color:#455;}

/* ---------- footer ---------- */
.site-footer{
  background:var(--primary);
  color:rgba(255,255,255,.85);
  padding:70px 0 0;
}
.footer-top{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand img{height:70px; margin-bottom:18px;}
.footer-brand p{max-width:380px; color:rgba(255,255,255,.75);}
.footer-social h2{
  color:#fff;
  font-size:1.15rem;
  text-align:center;
  margin-bottom:20px;
}
.social-icons{
  display:flex;
  gap:14px;
  justify-content:center;
}
.social-icons a{
  width:44px;height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  transition:background .18s ease, transform .18s ease;
}
.social-icons a:hover{background:var(--bright); transform:translateY(-3px);}
.social-icons svg{width:19px;height:19px; fill:#fff;}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  padding:36px 0;
}
.footer-links a{
  padding:9px 20px;
  border:1.5px solid rgba(255,255,255,.28);
  border-radius:22px;
  font-size:.9rem;
  font-weight:600;
  color:#fff;
}
.footer-links a:hover{background:#fff; color:var(--primary);}
.footer-bottom{
  text-align:center;
  font-size:.82rem;
  color:rgba(255,255,255,.55);
  padding:22px 0 26px;
}

@media (max-width:760px){
  .footer-top{grid-template-columns:1fr; text-align:center;}
  .footer-brand p{margin:0 auto;}
}

@media (max-width:600px){
  .hero{padding-top:140px; min-height:560px;}
  .section{padding:64px 0;}
}
