/*-----------------------------------------------------------------------------------*/
/*  GENERAL CSS
/*-----------------------------------------------------------------------------------*/


:root{
  /* PALETTE YOURY */
  --youry-brown:#542E2E;       /* ton marron */
  --youry-brown-900:#3D2020;
  --youry-sand:#F5EEE9;
  --youry-accent:#C65A46;      /* TERRACOTTA élégante */
  --youry-text:#161616;

  /* TYPO / RYTHME */
  --h1:clamp(36px,5vw,56px);
  --h2:clamp(28px,4vw,40px);
  --h3:clamp(22px,3vw,28px);
  --base:18px;
  --radius:18px;
  --shadow:0 10px 28px rgba(0,0,0,.08);
}

    html,body{font-family:Inter,system-ui,Arial,sans-serif;font-size:var(--base);color:var(--youry-text);margin:0}
    h1,h2,h3{font-family:Montserrat,Inter,Arial,sans-serif;margin:0 0 .5em}
    h1{font-size:var(--h1);font-weight:800;line-height:1.05}
    h2{font-size:var(--h2);font-weight:800}
    h3{font-size:var(--h3);font-weight:700;color:var(--youry-brown)}
    p{margin:.5em 0 1em}
    ul{margin:.25em 0 1em 1.1em}




    /* Layout utilitaires */
    .container{max-width:1120px;margin:0 auto;padding:0 20px}
    section{padding:88px 0}
    .grid{display:grid;gap:28px}
    @media (min-width:960px){ .grid-2{grid-template-columns:1fr 1fr} .grid-3{grid-template-columns:repeat(3,1fr)} }

    /* Cartes & boutons */
    .card{background:#fff;border:1px solid #eee;border-radius:var(--radius);box-shadow:var(--shadow);padding:28px}
    .note{font-size:.96rem;color:#444;background:var(--youry-sand);padding:10px 12px;border-radius:12px}
    .btn{display:inline-block;padding:14px 20px;border-radius:14px;text-decoration:none;font-weight:700;border:2px solid transparent;transition:.2s}
    .btn-primary{background:var(--youry-brown);color:#fff;border-color:var(--youry-brown)}
    .btn-primary:hover{background:var(--youry-brown-900);border-color:var(--youry-brown-900)}
    .btn-outline{background:#fff;color:var(--youry-brown);border-color:var(--youry-brown)}
    .btn-outline:hover{background:var(--youry-sand)}

    /* Boutons : toujours lisibles */
  a.btn, a.btn:visited { color:#fff; text-decoration:none; }
  .btn-primary, .btn-primary:visited, .btn-primary:hover, .btn-primary:focus {
    color:#fff !important; text-decoration:none !important;
  }
  /* Liens normaux uniquement (hors .btn) */
  a:not(.btn):hover { text-decoration: underline; }

    /* Liens (fini le violet souligné) */
    a, a:visited{color:var(--youry-brown);text-decoration:none}
    a:hover{color:var(--youry-brown-900);text-decoration:underline}
    .brand, .brand:visited{color:var(--youry-brown);text-decoration:none}
    /* Ne pas appliquer le style de lien par défaut aux boutons */
  a.btn, a.btn:visited { color:#fff; text-decoration:none; }

  /* Bouton primaire : forcer le blanc à tous les états */
  .btn-primary, .btn-primary:visited, .btn-primary:hover, .btn-primary:focus {
    color:#fff !important; text-decoration:none !important;
  }

  /* Liens classiques seulement (hors .btn) */
  a:not(.btn):hover { color: var(--youry-brown-900); text-decoration: underline; }

    /* Header / menu */
    .site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #eee;z-index:50}
    .nav-wrap{display:flex;align-items:center;justify-content:space-between;min-height:72px}
    .brand-logo{height:46px;width:auto}
    .nav{display:flex;gap:18px;align-items:center}
    .nav a{font-weight:700}
    .nav-cta{background:var(--youry-accent);color:#fff !important;padding:10px 14px;border-radius:12px}
    .nav-cta:hover{filter:brightness(.95)}
    .nav-toggle{display:none;flex-direction:column;gap:6px;background:transparent;border:0}
    .nav-toggle span{width:28px;height:2px;background:#333;border-radius:2px}
    @media (max-width:900px){
      .nav{position:fixed;inset:72px 0 auto 0;background:#fff;flex-direction:column;gap:14px;padding:16px;border-top:1px solid #eee;transform:translateY(-120%);transition:.25s}
      .nav.open{transform:translateY(0)}
      .nav-toggle{display:flex}
    }

    /* HERO Bannière photo + overlay */
    .hero{
    position:relative;min-height:58vh;display:flex;align-items:center;
    background:url('images/hero-youry.png') center/cover no-repeat; /* mets ici TA photo */
  }
  .hero::before{
    content:"";position:absolute;inset:0;
    background:linear-gradient(180deg,rgba(20,20,20,.45),rgba(20,20,20,.55));
  }
  .hero .inner{position:relative;z-index:1;color:#fff}
  .reveal{opacity:0;transform:translateY(16px);animation:fadeUp .7s ease .1s forwards}
  @keyframes fadeUp{to{opacity:1;transform:none}}

    
    .phrase-rouge{
      display:inline-block;
      color:#fff;background:var(--youry-accent);
      padding:.18em .5em;border-radius:10px;
      box-shadow:0 6px 20px rgba(0,0,0,.25)
    }
    .phrase-blanche{
      display:inline-block;
      color:#fff;background:var(--youry-accent);
      padding:20px ;border-radius:10px;
      box-shadow:0 6px 20px rgba(0,0,0,.25)
    }
    .hero p{font-size:1.2rem;max-width:820px;opacity:.95}

    /* Animation douce */
    .reveal{opacity:0;transform:translateY(16px);animation:fadeUp .7s ease .1s forwards}
    @keyframes fadeUp{to{opacity:1;transform:none}}

  .nav img, footer img { filter:grayscale(100%); transition:.2s; }
  .nav img:hover, footer img:hover { filter:none; }

/* Liste de questions sans puces et plus espacées */
.questions {
  list-style: none;          /* supprime les puces */
  padding-left: 0;           /* supprime le retrait */
  margin: 1em 0;             /* marge autour */
}

.questions li {
  margin-bottom: 0.8em;      /* espace entre chaque question */
  line-height: 1.5;          /* hauteur de ligne plus lisible */
  font-size: 1.05rem;        /* légèrement plus grand */
}

  /*temoignages*/
  .eyebrow{position:relative;display:inline-block;padding-left:18px}
  .eyebrow::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
    width:8px;height:28px;background:var(--youry-accent);border-radius:6px}
  .testi-grid{display:grid;gap:22px}
  @media(min-width:960px){ .testi-grid{grid-template-columns:repeat(3,1fr)} }
  .testi{
    margin:0; background:#fff; border:1px solid #eee; border-radius:16px;
    box-shadow:var(--shadow); padding:22px;
  }
  .testi blockquote{margin:0 0 8px; font-size:13px; line-height:1.5}
  .testi figcaption{opacity:.8; font-size:13px;;font-weight:600; color:var(--youry-brown)}



/* Footer global */

.footer-grid{display:grid;gap:24px}
@media(min-width:960px){ .footer-grid{grid-template-columns:2fr 1fr 1fr} }
.footer-logo{height:40px;width:auto;margin-bottom:10px}
.icon-sm{height:20px;width:auto;vertical-align:middle;margin-right:6px;filter:grayscale(100%);transition:.2s}

.site-footer {
  background:#111;           /* fond sombre */
  color:#eee;                /* texte gris clair */
  padding:48px 0;
  font-size:0.95rem;
}

/* Titres du footer */
.site-footer h3 {
  color:#fff;                /* titres bien visibles */
  margin-bottom:12px;
  font-weight:700;
  font-size:1.1rem;
}

/* Liens du footer */
.site-footer a,
.site-footer a:visited {
  color:#eee;
  text-decoration:none;
  transition:.2s;
}

.site-footer a:hover {
  color:#fff;                /* survol = blanc */
  text-decoration:underline;
}

/* Copyright */
.site-footer .copyright {
  opacity:.7;
  font-size:0.85rem;
  margin-top:16px;
}



/* Icône générique inline (pour le check SVG) */
.icon{height:18px;width:auto;vertical-align:middle;margin-right:8px}

/* Listes propres */
ul.clean{list-style:none;padding-left:0}
ul.clean li{display:flex;gap:8px;align-items:flex-start;margin:.4em 0}

/* Corrige le violet souligné des liens par défaut partout */
a, a:visited{color:var(--youry-brown);text-decoration:none}

a:hover .icon-sm{filter:none}