/* ===== CaniPlus — Styles partagés pour pages SEO et blog ===== */
:root {
  --cyan: #2babe1;
  --cyan-dark: #1e8db8;
  --cyan-light: #e8f6fc;
  --ink: #1f1f20;
  --ink-soft: #3d3d3d;
  --sand: #f8f5f0;
  --gray-bg: #f5f7f9;
  --white: #ffffff;
  --border: #e6e9ec;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.25; color: var(--ink); }
.script { font-family: 'Great Vibes', cursive; }
a { color: var(--cyan-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* NAVBAR */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto; gap: 24px;
}
.logo-img { height: 58px; width: auto; display: block; }
nav ul {
  display: flex; gap: 6px; list-style: none;
  background: var(--cyan-light); padding: 6px; border-radius: 999px;
}
nav a {
  display: inline-block;
  color: var(--ink-soft); font-weight: 500; font-size: 14px;
  padding: 10px 18px; border-radius: 999px;
  transition: all .2s;
}
nav a:hover { color: white; background: var(--cyan); text-decoration: none; }

/* BOUTONS */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; transition: all .25s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--cyan); color: white !important;
  box-shadow: 0 4px 14px rgba(43, 171, 225, 0.3);
}
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-2px); text-decoration: none; }
.btn-outline {
  background: transparent; color: var(--ink) !important; border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: white !important; text-decoration: none; }

/* HERO LOCAL */
.hero-local {
  padding: 70px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-light) 100%);
}
.hero-local .eyebrow {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: white; color: var(--cyan-dark); font-weight: 600; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(43, 171, 225, 0.1);
}
.hero-local h1 { font-size: 44px; margin-bottom: 20px; }
.hero-local h1 em { font-style: normal; color: var(--cyan); font-family: 'Great Vibes', cursive; font-weight: 700; }
.hero-local p.lead { font-size: 18px; color: var(--ink-soft); margin-bottom: 30px; max-width: 700px; }
.hero-local .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* CONTENU ARTICLE */
article.content { padding: 70px 0; }
article.content h2 { font-size: 32px; margin: 48px 0 18px; color: var(--ink); }
article.content h3 { font-size: 22px; margin: 32px 0 12px; color: var(--cyan-dark); }
article.content p { margin-bottom: 18px; color: var(--ink-soft); font-size: 17px; }
article.content ul, article.content ol { margin: 16px 0 24px 28px; color: var(--ink-soft); }
article.content li { margin-bottom: 10px; font-size: 17px; }
article.content strong { color: var(--ink); font-weight: 600; }
article.content blockquote {
  border-left: 4px solid var(--cyan);
  background: var(--cyan-light);
  padding: 20px 28px;
  margin: 28px 0;
  font-style: italic;
  border-radius: 0 12px 12px 0;
}
article.content img { border-radius: 14px; margin: 24px 0; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 32px 0; }
.card {
  background: white; padding: 30px; border-radius: 16px;
  border: 1px solid var(--border);
  transition: all .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.06); border-color: var(--cyan-light); }
.card h3 { font-size: 20px; margin-bottom: 12px; color: var(--ink); }
.card p { font-size: 15px; color: var(--ink-soft); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--cyan) 0%, #7fd4ef 100%);
  padding: 70px 0; text-align: center; color: white;
}
.cta-band h2 { color: white; font-size: 34px; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 17px; max-width: 620px; margin: 0 auto 30px; }
.cta-band .btn-primary { background: white; color: var(--cyan-dark) !important; }
.cta-band .btn-primary:hover { background: var(--ink); color: white !important; }

/* BREADCRUMB */
.breadcrumb {
  padding: 18px 0; font-size: 14px; color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  list-style: none; display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  line-height: 1.4;
}
.breadcrumb li {
  display: inline-flex; align-items: center; gap: 10px;
  line-height: 1.4;
}
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--cyan); line-height: 1; }
.breadcrumb a { color: var(--cyan-dark); }

/* FOOTER */
footer.site-footer {
  background: var(--ink); color: #bfbfc0; padding: 60px 0 30px;
  font-size: 14px;
}
footer.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
footer.site-footer h4 { color: white; font-size: 16px; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 600; }
footer.site-footer ul { list-style: none; }
footer.site-footer ul li { margin-bottom: 8px; }
footer.site-footer a { color: #bfbfc0; }
footer.site-footer a:hover { color: white; text-decoration: none; }
footer.site-footer .footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid #2a2a2b;
  text-align: center; font-size: 13px; color: #7a7a7b;
}
footer.site-footer .footer-logo { height: 54px; margin-bottom: 16px; }

/* AUTHOR BIO (pour articles blog) */
.author-bio {
  background: var(--sand); padding: 24px 28px; border-radius: 16px;
  margin: 40px 0; border-left: 4px solid var(--cyan);
}
.author-bio img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; float: left; margin-right: 20px; }
.author-bio h3, .author-bio h4 { font-family: 'Inter', sans-serif; font-size: 16px; margin-bottom: 6px; font-weight: 600; color: var(--ink); }
.author-bio p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* BLOG INDEX */
.blog-list {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin: 28px 0 40px;
}
.blog-card {
  background: white; padding: 26px 28px; border-radius: 14px;
  border: 1px solid var(--border); transition: all .25s;
}
.blog-card:hover { border-color: var(--cyan); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.blog-card h3 { font-size: 22px; margin: 10px 0; color: var(--ink); }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--cyan-dark); text-decoration: none; }
.blog-card p { font-size: 16px; color: var(--ink-soft); margin-bottom: 8px; }
.blog-card .meta { font-size: 13px; color: var(--ink-soft); opacity: 0.7; margin: 0; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--cyan-light); color: var(--cyan-dark);
  font-size: 12px; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase;
}

/* METADATA (date, reading time, updated notice) */
.meta {
  font-size: 13px; color: var(--ink-soft); opacity: 0.75;
  margin-top: 12px; font-style: italic;
}
article.content .meta { font-size: 13px; color: var(--ink-soft); }

/* FAQ */
.faq-block details {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 22px; margin-bottom: 12px;
  transition: all .2s;
}
.faq-block details[open] { border-color: var(--cyan); box-shadow: 0 4px 16px rgba(43,171,225,0.08); }
.faq-block summary {
  cursor: pointer; font-weight: 600; font-size: 17px;
  color: var(--ink); list-style: none;
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after { content: '+'; float: right; color: var(--cyan); font-size: 22px; transition: transform .2s; }
.faq-block details[open] summary::after { transform: rotate(45deg); }
.faq-block details p { margin-top: 14px; color: var(--ink-soft); }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-local h1 { font-size: 32px; }
  article.content h2 { font-size: 26px; }
  footer.site-footer .container { grid-template-columns: 1fr 1fr; }
  nav ul { display: none; }
  .nav-inner .btn { padding: 10px 18px; font-size: 14px; }
}
@media (max-width: 520px) {
  .hero-local { padding: 50px 0 60px; }
  .hero-local h1 { font-size: 28px; }
  footer.site-footer .container { grid-template-columns: 1fr; }
}
