/* Hublingua Home — à domicile pages
   Palette + type matched to hublingua-hub-site.pages.dev */

:root {
  --navy: #175984;
  --navy-dark: #10405f;
  --orange: #FD9902;
  --orange-dark: #e08600;
  --cream: #FBF8F3;
  --white: #ffffff;
  --ink: #1c2a33;
  --muted: #5b6c78;
  --border: #e7ddcd;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px rgba(23, 89, 132, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
  font-family: "Poppins", "DM Sans", sans-serif;
  color: var(--navy);
  margin: 0;
}

a { color: var(--navy); }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
}

.brand {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand small {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.eyebrow-link:hover { border-color: var(--orange); }

/* Hero */
.hero {
  padding: 64px 0 40px;
}

.hero .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--orange-dark);
  background: rgba(253, 153, 2, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 780px;
}

.hero p.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 16px;
}

.hero p.footnote {
  max-width: 640px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 14px;
}

/* Zone banner */
.zone-banner {
  background: var(--navy);
  padding: 16px 0;
}

.zone-banner p {
  margin: 0;
  color: var(--white);
  font-size: 0.92rem;
  text-align: center;
}

.zone-banner strong { color: var(--orange); font-weight: 600; }

/* Section headings */
.section {
  padding: 48px 0;
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.section .section-intro {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 28px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  text-align: center;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Formules cards */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.formule-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.formule-card .formule-index {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
  text-transform: uppercase;
}

.formule-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.formule-card p.desc {
  color: var(--muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.formule-card p.hours {
  color: var(--ink);
  font-size: 0.88rem;
  background: rgba(23, 89, 132, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.formule-card .btn {
  margin-top: 6px;
  align-self: flex-start;
}

/* Pricing pages (zones) */
.pricing-header {
  padding: 48px 0 8px;
}

.pricing-header h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.2rem);
  font-weight: 600;
}

.pricing-header .pricing-note {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-card .price .amount {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.pricing-card .price .rate {
  font-size: 0.92rem;
  color: var(--orange-dark);
  font-weight: 600;
}

.pricing-card .reservation-note {
  font-size: 0.88rem;
  color: var(--ink);
  background: rgba(253, 153, 2, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.pricing-card .card-notes {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-card .card-notes p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.cta-section {
  text-align: center;
  padding: 16px 0 56px;
}

.cta-section .btn {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Placeholder page */
.placeholder-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.placeholder-box p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

/* Footer (matches hublingua-hub-site) */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  margin-top: 24px;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 12px;
}

.site-footer p.legal-line {
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover { color: var(--navy); }

@media (max-width: 640px) {
  .hero { padding: 44px 0 32px; }
  .section { padding: 32px 0; }
  .formule-card, .pricing-card { padding: 22px 20px; }
}
