/* ==========================================================================
   GAVONNE – Mode und Accessoires, St. Ingbert
   Modernes, responsives Stylesheet (2026)
   Farben abgeleitet vom Original-Logo (Petrol #06879C)
   Schriften lokal eingebunden (DSGVO-konform, keine externen Dienste)
   ========================================================================== */

/* ---------- Schriften (lokal gehostet) ---------- */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/jost-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/jost-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/jost-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/prata-latin-400-normal.woff2") format("woff2");
}

/* ---------- Design-Token ---------- */
:root {
  --petrol: #06879C;
  --petrol-deep: #045E6D;
  --petrol-tint: #EBF4F6;
  --ink: #2B3438;
  --stone: #66757B;
  --paper: #FAF9F6;
  --white: #FFFFFF;
  --sand: #F4EFE7;
  --line: #E2E6E6;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(6, 135, 156, 0.10);
  --measure: 68ch;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: "Jost", "Segoe UI", system-ui, sans-serif;
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--petrol); text-decoration: none; }
a:hover { color: var(--petrol-deep); text-decoration: underline; }
a:focus-visible {
  outline: 3px solid var(--petrol);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3 {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.wrap {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Kleine Überzeile im Stil des Logo-Zusatzes „MODE UND ACCESSOIRES" */
.eyebrow {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 0.9rem;
}

/* ---------- Kopfbereich ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
}
.brand img { width: clamp(150px, 20vw, 210px); }

.site-nav { display: flex; gap: 1.6rem; }
.site-nav a {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--petrol); text-decoration: none; }
.site-nav a[aria-current="page"] {
  color: var(--petrol);
  border-bottom-color: var(--petrol);
}

/* ---------- Hero (Startseite) ---------- */
.hero { padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 4rem); }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-text p.lead { font-size: 1.15rem; max-width: var(--measure); }

.hero-figure { margin: 0; position: relative; }
.hero-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.hero-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--stone);
  letter-spacing: 0.04em;
}

.btn {
  display: inline-block;
  background: var(--petrol);
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--petrol-deep); color: var(--white); text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}
.btn-ghost:hover { background: var(--petrol-tint); color: var(--petrol-deep); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

/* ---------- Öffnungszeiten-Karte ---------- */
.hours-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-top: 2rem;
  max-width: 26rem;
}
.hours-card h3 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--petrol-deep);
  margin-bottom: 0.7rem;
}
.hours-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1.2rem; }
.hours-card dt { color: var(--stone); }
.hours-card dd { margin: 0; font-weight: 600; }

/* ---------- Markenband ---------- */
.brands {
  background: var(--petrol-tint);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands h2 { text-align: center; }
.brands .eyebrow { text-align: center; }
.brand-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.4rem;
  row-gap: 0.7rem;
  max-width: 60rem;
  margin-inline: auto;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.brand-list li { display: inline-flex; align-items: baseline; }
/* Petrol-Punkt als Trennzeichen – Leitmotiv der Seite */
.brand-list li + li::before {
  content: "·";
  color: var(--petrol);
  font-weight: 700;
  margin: 0 0.55rem;
  font-family: "Jost", sans-serif;
}

/* ---------- Geschichte / Textabschnitte ---------- */
.section { padding: clamp(2.5rem, 7vw, 5rem) 0; }
.section .wrap.narrow { width: min(760px, 92%); }
.section h2 + p, .section p { max-width: var(--measure); }

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: 0 4px 18px rgba(43, 52, 56, 0.05);
}
.card h2, .card h3 { margin-top: 0; }
.card address { font-style: normal; }
.contact-lines { list-style: none; margin: 1rem 0 0; padding: 0; }
.contact-lines li { padding: 0.35rem 0; display: flex; gap: 0.7rem; }
.contact-lines .label {
  min-width: 5.2rem;
  color: var(--stone);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 0.15rem;
}

.map-card {
  background: var(--petrol-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  text-align: center;
}
.map-card p { max-width: none; }
.map-note { font-size: 0.86rem; color: var(--stone); margin-top: 0.9rem; }

/* ---------- Rechtstexte ---------- */
.legal h2 { margin-top: 2.2rem; font-size: 1.45rem; }
.legal h3 { margin-top: 1.6rem; }
.legal p, .legal li { max-width: var(--measure); }
.legal ul { padding-left: 1.2rem; }
.legal .stand { color: var(--stone); font-size: 0.95rem; }

/* ---------- Fußbereich ---------- */
.site-footer {
  background: var(--ink);
  color: #D8DEE0;
  margin-top: clamp(2rem, 6vw, 4rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  font-size: 0.98rem;
}
.site-footer a { color: #9FD4DE; }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.site-footer h3 {
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.site-footer address { font-style: normal; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.18rem 0; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  color: #A9B4B8;
  font-size: 0.9rem;
}

/* ---------- Responsiv ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 560px) {
  .site-header .wrap { flex-direction: column; gap: 0.4rem; padding-bottom: 0.5rem; }
  .site-nav { gap: 1.2rem; }
  body { font-size: 1.02rem; }
}

/* ---------- Druckansicht ---------- */
@media print {
  .site-header, .site-footer, .btn, .map-card { display: none; }
  body { background: #fff; color: #000; }
}
