@charset "UTF-8";
/* ============================================================
   Actuel Coiff — Main Stylesheet
   Edit variables at the top to change colors/fonts globally
   ============================================================ */
/* ---- Google Fonts ---- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
/* ---- Design Tokens ---- */
:root {
  --color-bg: #faf8f5;
  --color-bg-dark: #1a1714;
  --color-text: #2c2825;
  --color-text-light: #7a7068;
  --color-accent: #b8936a;
  --color-accent-dk: #9a7455;
  --color-gold: rgba(255,0,0,0.85);
  --color-page-sub: #e5bfb8;
  --color-white: #ffffff;
  --color-border: #e8e2da;
  --color-overlay: rgba(26,23,20,0.52);
  --color-nav: rgba(255,255,255,0.85);
  --color-nav-bar: #e5bfb8;
  --color-hero-sub: #e5bfb8;
  --color-hero-title: #e5bfb8;
  --color-hero-dots: #e5bfb8;
  --color-btn-hero: #8d7f84;
  --color-btn-hero-hov: #e5bfb8;
  --color-btn: #e5bfb8;
  --color-btn-hov: #8d7f84;
  --color-red: rgba(255,0,0,0.85);
  --color-contact-div: #e5bfb8;
  --color-contact: #e5bfb8;
  --color-footer: #e5bfb8;
  --color-about-img: #e5bfb8;
  --color-banner: #b85c38;
  --color-banner-text: #ffffff;
  --color-banner-border: #8f3e22;
  --font-display: 'Nunito', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --font-nav: 'Nunito', serif;
  --max-w: 1180px;
  --radius: 2px;
  --trans: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Utility ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid var(--color-btn);
  color: var(--color-text);
  background: var(--color-btn);
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
}

.btn:hover {
  background: var(--color-btn-hov);
  color: var(--color-white);
}

.btn--solid {
  background: var(--color-btn-hero);
  border-color: var(--color-btn-hero-hov);
  color: var(--color-white);
}

.btn--solid:hover {
  background: var(--color-btn-hero-hov);
  border-color: var(--color-btn-hero-hov);
  color: var(--color-text);
}

.btn--white {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--color-white);
}

.btn--white:hover {
  background: var(--color-white);
  color: var(--color-text);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0.4em;
}

.section-title span {
  font-style: italic;
  color: var(--color-accent);
}

.section-sub {
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.8em;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--color-page-sub);
  margin: 1.2em 0 1.8em;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
  padding: 0 24px;
}

.site-header.scrolled {
  background: rgba(26, 23, 20, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 128px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.site-nav a {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-nav);
  padding: 8px 14px;
  position: relative;
  transition: color var(--trans);
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--color-nav-bar);
  transform: scaleX(0);
  transition: transform var(--trans);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-white);
  transition: transform var(--trans), opacity var(--trans);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 23, 20, 0.98);
    flex-direction: column;
    padding: 24px 0 32px;
    gap: 0;
    transform: translateY(-120%);
    transition: transform var(--trans);
  }
  .site-nav.open {
    transform: translateY(0);
  }
  .site-nav a {
    padding: 14px 24px;
    font-size: 0.8rem;
  }
  .site-nav a::after {
    display: none;
  }
  .site-logo img {
    height: 28px;
  }
  .site-logo__text {
    font-size: 1.1rem;
  }
}
/* ============================================================
   HOLIDAY BANNER
   All banner styles are here — edit freely.
   ============================================================ */
.holiday-banner {
  position: fixed;
  top: 72px; /* height of the navbar */
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-banner); /* ← banner background color */
  color: var(--color-banner-text); /* ← text color */
  border-bottom: 2px solid var(--color-banner-border); /* ← bottom border color */
}

.holiday-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.holiday-banner__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.holiday-banner p {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  margin: 0;
}

.holiday-banner strong {
  font-weight: 500;
  margin-right: 6px;
}

/* Push page content down so the banner doesn't cover it */
body:has(.holiday-banner) .hero,
body:has(.holiday-banner) .page-hero {
  padding-top: 188px; /* navbar + banner height */
}

@media (max-width: 768px) {
  .holiday-banner__inner {
    padding: 7px 12px;
    gap: 6px;
  }
  .holiday-banner__icon {
    display: none; /* ← hides the emoji on mobile to save space */
  }
  .holiday-banner p {
    font-size: 0.72rem; /* ← adjust this if still too big */
    letter-spacing: 0;
    line-height: 1.4;
  }
  body:has(.holiday-banner) .hero,
  body:has(.holiday-banner) .page-hero {
    padding-top: 114px; /* ← adjust 38px if content still overlaps */
  }
}
/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-slides {
  position: absolute;
  inset: 0;
  list-style: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 40px;
  color: var(--color-white);
}

.hero-content .section-sub {
  color: var(--color-hero-sub);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--color-hero-title);
}

.hero-desc {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.4s ease both;
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  list-style: none;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: background var(--trans);
  padding: 0;
}

.hero-dots button.active {
  background: var(--color-hero-dots);
  border-color: var(--color-hero-dots);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================================
   HERO — Trust labels / badges
   ============================================================ */
.hero-labels {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
  /* Subtle separator from the buttons above */
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-label__logo {
  height: 64px; /* ← change this to resize all logos at once */
  width: auto;
  object-fit: contain;
  /*filter: brightness(0) invert(1);    ← makes any logo white to match the hero */
  opacity: 0.85;
  transition: opacity var(--trans);
}

.hero-label:hover .hero-label__logo {
  opacity: 1;
}

.hero-label__name {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro {
  padding: 96px 24px;
  text-align: center;
  background: var(--color-white);
}

.intro p {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  color: var(--color-text-light);
}

/* ============================================================
   FEATURES / HIGHLIGHTS (3-column icons)
   ============================================================ */
.features {
  padding: 80px 24px;
  background: var(--color-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  text-align: center;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.92rem;
  color: var(--color-text-light);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 100px 24px;
  background: var(--color-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-img::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--color-about-img);
  z-index: 0;
  pointer-events: none;
}

.about-img img {
  position: relative;
  z-index: 1;
}

.about-text p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img img {
    height: 340px;
  }
}
/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 100px 24px;
  background: var(--color-bg);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}

.service-card {
  background: var(--color-white);
  padding: 44px 36px;
  transition: box-shadow var(--trans);
}

.service-card:hover {
  box-shadow: 0 8px 40px rgba(184, 147, 106, 0.15);
}

.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.services-cta {
  text-align: center;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  padding: 100px 24px;
  background: var(--color-white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HOURS / CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 100px 24px;
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-section .section-title {
  color: var(--color-white);
}

.contact-section .divider {
  background: var(--color-contact-div);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

/* --- Horaires sur fond SOMBRE (section accueil) --- */
.contact-section .hours-table tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section .hours-table td {
  padding: 10px 0;
  font-size: 0.9rem; /* ← taille du texte des horaires */
  font-family: var(--font-body); /* ← police (Jost par défaut) */
  color: rgba(255, 255, 255, 0.75);
}

.contact-section .hours-table td:last-child {
  text-align: right;
}

.contact-section .hours-table .closed {
  color: rgba(255, 255, 255, 0.3);
}

/* --- Horaires sur fond CLAIR (pages Coiffeur, Contact…) --- */
.page-content .hours-table tr + tr td,
.contact-page .hours-table tr + tr td {
  border-top: 1px solid var(--color-border);
}

.page-content .hours-table td,
.contact-page .hours-table td {
  padding: 10px 0;
  font-size: 0.9rem; /* ← taille du texte des horaires */
  font-family: var(--font-body); /* ← police (Jost par défaut) */
  color: var(--color-text-light); /* ← gris foncé, lisible sur fond clair */
}

.page-content .hours-table td:last-child,
.contact-page .hours-table td:last-child {
  text-align: right;
}

.page-content .hours-table .closed,
.contact-page .hours-table .closed {
  color: var(--color-border);
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
}

.contact-details .icon {
  color: var(--color-contact);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--trans);
}

.contact-details a:hover {
  color: var(--color-contact);
}

.map-embed {
  margin-top: 28px;
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 8px;
  transition: color var(--trans);
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 24px 80px;
  background: var(--color-bg-dark);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.png") center/cover no-repeat;
  opacity: 0.18;
}

.page-hero .section-sub {
  color: var(--color-page-sub);
  position: relative;
}

.page-hero .section-title {
  font-weight: bold;
  color: var(--color-white);
  position: relative;
}

.page-hero .divider {
  position: relative;
  background: var(--color-page-sub);
}

/* ============================================================
   ABOUT PAGE — full content
   ============================================================ */
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin: 2.5rem 0 0.8rem;
}

.page-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.page-content ul {
  padding-left: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* ============================================================
   COIFFURE / SERVICES PAGE
   ============================================================ */
.services-page {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-block:nth-child(even) .service-block__img {
  order: 2;
}

.service-block:nth-child(even) .service-block__text {
  order: 1;
}

.service-block__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-block__text h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 14px;
}

.service-block__text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .service-block {
    grid-template-columns: 1fr;
  }
  .service-block:nth-child(even) .service-block__img,
  .service-block:nth-child(even) .service-block__text {
    order: unset;
  }
}
/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  margin-bottom: 20px;
  outline: none;
  transition: border-color var(--trans);
  border-radius: var(--radius);
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

@media (max-width: 768px) {
  .contact-page {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   ACTUALITÉS — listing page
   ============================================================ */
.news-page {
  padding: 60px 24px 100px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.news-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}

.news-card:hover {
  box-shadow: 0 8px 40px rgba(184, 147, 106, 0.15);
  transform: translateY(-3px);
}

.news-card__img-link {
  display: block;
}

.news-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg);
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-border);
}

.news-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.news-card__tag {
  background: var(--color-accent);
  color: white;
  padding: 2px 8px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  border-radius: 2px;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-card__title a {
  transition: color var(--trans);
}

.news-card__title a:hover {
  color: var(--color-accent);
}

.news-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.news-card__read-more {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  transition: gap var(--trans);
}

.news-card__read-more:hover {
  color: var(--color-accent-dk);
}

/* ============================================================
   ACTUALITÉS — individual post page
   ============================================================ */
.post-body {
  padding: 72px 24px 100px;
}

.post-body__inner {
  max-width: 740px;
  margin: 0 auto;
}

.post-body__cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 48px;
}

/* Post content typography */
.post-body__inner h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  margin: 2.2rem 0 0.7rem;
}

.post-body__inner h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 1.8rem 0 0.6rem;
  color: var(--color-accent);
}

.post-body__inner p {
  color: var(--color-text-light);
  font-size: 0.97rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.post-body__inner ul, .post-body__inner ol {
  padding-left: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.post-body__inner li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.post-body__inner strong {
  color: var(--color-text);
  font-weight: 500;
}

.post-body__inner a {
  color: var(--color-text);
}

.post-body__inner img {
  max-width: 100%;
  margin: 24px 0;
}

.post-body__footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   MENTIONS LÉGALES / VIE PRIVÉE
   ============================================================ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  margin: 2rem 0 0.6rem;
}

.legal-page p {
  color: var(--color-text-light);
  font-size: 0.93rem;
  margin-bottom: 0.9rem;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-title {
    font-size: 2.4rem;
  }
}

/*# sourceMappingURL=main.css.map */