/* ================================================
   beLucid Coaching — style.css v10
   Architecture : PHP includes + CSS centralisé
   ================================================ */

@font-face {
  font-family: 'Astonpoliz';
  src: url('/astonpoliz.woff2') format('woff2'),
       url('/astonpoliz.ttf')  format('truetype');
  font-weight: normal; font-display: swap;
}
@font-face {
  font-family: 'Mistrully';
  src: url('/mistrully.woff2') format('woff2'),
       url('/mistrully.ttf')  format('truetype');
  font-weight: normal; font-display: swap;
}

/* ── TOKENS ── */
:root {
  --navy:       #48909E;
  --teal:       #006071;
  --cyan:       #003D52;
  --gold:       #EDD98C;
  --gold-st:    #D9C364;
  --gold-lt:    #F7EECA;
  --ivory:      #fffded;
  --orange:     #F77008;
  --yellow:     #FFE79C;
  --cream:      #F7F5F2;
  --beige:      #FBF6DC;
  --white:      #FFFFFF;
  --yale-bl:    #033E63;
  --seafoam:    #6CACAF;
  --blue-lt:    #84AAC2;
  --blue-mid:   #5490B3;
  --blue-dk:    #004870;
  --pale-mint:  #DBE9DE;

  --font-title:  'Astonpoliz', 'Comfortaa', sans-serif;
  --font-sub:    'Comfortaa', sans-serif;
  --font-body:   'Cormorant Garamond', Georgia, serif;
  --font-script: 'Mistrully', cursive;

  --nav-h:   70px;
  --r-sm:    20px;
  --r-md:    14px;
  --r-pill:  100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--navy); background: var(--cream); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── NAVIGATION BLANCHE ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0,26,51,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  gap: 1rem;
}



.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-links ul a {
  font-family: var(--font-sub);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .25s;
  position: relative;
}
.nav-links ul a:hover { color: var(--cyan); }
.nav-links ul a.active { color: var(--navy); }
.nav-links ul a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold-st);
  border-radius: var(--r-pill);
}

.btn-nav {
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--orange);
  padding: .6rem 1.4rem;
  border-radius: var(--r-pill);
  border: none;
  transition: background .25s, transform .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.btn-nav:hover { background: var(--navy); transform: translateY(-1px); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,26,51,.08);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 199;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-sub);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,26,51,.7);
}
.nav-mobile-menu a.active { color: var(--navy); font-weight: 700; }

/* ── LAYOUT SPLIT ── */
.site-body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--nav-h));
}

/* ── PANNEAU GAUCHE ── */
.panel-left {
  /*background-image: url('/Fond_.webp');*/
  background-size: cover;
  background-position: center;
  background-color: var(--teal);
  color: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 340px;
}

.panel-logo {
  width: 120px;
  height: 120px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.panel-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.panel-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-weight: normal;
  padding-top: .1em;
  margin-top: .5rem;
}
.panel-title em { font-style: normal; color: var(--yellow); display: block; }

.panel-slogan {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-lt);
  display: block;
  margin-top: .6rem;
}

.panel-sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-top: .75rem;
  max-width: 28ch;
}

.panel-cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-start;
}

/* ── BOUTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem 1.8rem;
  border-radius: var(--r-pill);
  border: none;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--navy); transform: translateX(4px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .75rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,.4);
  transition: border-color .25s, background .25s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-ghost {
  font-family: var(--font-sub);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .25s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-ghost:hover { color: var(--gold-lt); }

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem 1.8rem;
  border-radius: var(--r-pill);
  border: none;
  transition: background .25s;
}
.btn-dark:hover { background: var(--teal); }

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem 1.8rem;
  border-radius: var(--r-pill);
  border: none;
  transition: background .25s;
}
.btn-teal:hover { background: var(--navy); }

/* ── PANNEAU DROIT ── */
.panel-right { flex: 1; }

/* ── UTILITAIRES COMMUNES ── */
.section-eyebrow {
  font-family: var(--font-sub);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.section-title em { font-style: normal; color: var(--gold); }

.section-body {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(0,26,51,.7);
  max-width: 52ch;
  margin-top: 1.25rem;
}

/* ── ZG BADGE ── */
.zg-section { padding: 3.5rem 2.5rem; border-top: 4px solid var(--orange);  border-bottom: 4px solid var(--orange); }
.zg-logo { height: 52px; width: auto; max-width: 160px; object-fit: contain; margin-bottom: .75rem; opacity: .85; }
.zg-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem 1.1rem;
  border: 1.5px solid var(--teal);
  border-radius: var(--r-pill);
  font-family: var(--font-sub);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
}
.zg-badge::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: var(--teal); flex-shrink: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--seafoam);
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-title);
  font-size: .95rem;
  color: var(--white);
  text-transform: lowercase;
  letter-spacing: .05em;
}
.footer-brand span { color: var(--yellow); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-sub);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255);
  transition: color .25s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-copy {
  width: 100%;
  font-family: var(--font-body);
  font-size: .85rem;
  font-style: italic;
  color: rgba(255,255,255);
}

/* ── DESKTOP ── */
@media (min-width: 1024px) {
  .nav-links      { display: flex; }
  .nav-hamburger  { display: none; }

  .site-body {
    flex-direction: row;
    align-items: flex-start;
    min-height: calc(100vh - var(--nav-h));
  }
  .panel-left {
    width: 38%;
    flex-shrink: 0;
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    overflow: hidden;
    padding: 3rem 2.5rem;
  }
  .panel-right { flex: 1; min-height: calc(100vh - var(--nav-h)); }
}

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .panel-title {
    animation: slideUp .9s cubic-bezier(.16,1,.3,1) both;
  }
  .panel-slogan {
    animation: slideUp .9s .12s cubic-bezier(.16,1,.3,1) both;
  }
  .panel-cta {
    animation: fadeIn 1s .3s both;
  }
  @keyframes slideUp {
    from { transform: translateY(28px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}
