/* ── Self-hosted Fonts ───────────────────────────────── */
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('/fonts/rubik-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('/fonts/rubik-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('/fonts/rubik-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* EchtgeldCasinoApp.de — Hauptstylesheet
   Palette: wine-rose #7A1E4B + steel-blue #4D7EA8
   Fonts: Poppins (heading) + Rubik (body) self-hosted
   Icons: Mingcute (inline SVG)
   Format: D.M.YYYY  */

/* ── Custom Properties ───────────────────────────────── */
:root {
  --clr-wine:        #7A1E4B;
  --clr-wine-mid:    #9B2860;
  --clr-wine-pale:   rgba(122,30,75,.07);
  --clr-steel:       #4D7EA8;
  --clr-steel-pale:  #EBF3FA;
  --clr-text:        #1A1A2E;
  --clr-muted:       #5B5B70;
  --clr-bg:          #FFFFFF;
  --clr-surface:     #F7F5F3;
  --clr-border:      #E4E1DC;
  --clr-green:       #2E7D32;
  --clr-red:         #C62828;

  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Rubik', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --shadow: 0 2px 10px rgba(0,0,0,.07);

  --max-w:  1200px;
  --prose-w: 940px;
}

/* ── Reset ───────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--ff-body);
  line-height: 1.75;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color:var(--clr-wine); text-decoration:none; }
a:hover { text-decoration:underline; }
table { border-collapse:collapse; }

/* ── Typography ──────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family:var(--ff-head); line-height:1.25; }
h1 { font-size:clamp(1.8rem,4vw,2.6rem); font-weight:800; }
h2 { font-size:clamp(1.4rem,3vw,1.9rem); font-weight:700; }
h3 { font-size:clamp(1.1rem,2vw,1.35rem); font-weight:600; }
h4 { font-size:1.05rem; font-weight:600; }
p  { margin-bottom:1rem; }
p:last-child { margin-bottom:0; }

/* ── Layout Containers ───────────────────────────────── */
.container { max-width:var(--max-w); margin:0 auto; padding:0 1.5rem; }
.prose     { max-width:var(--prose-w); margin:0 auto; padding:0 1.5rem; }

/* ── Navigation ──────────────────────────────────────── */
.site-nav {
  position:sticky; top:0; z-index:200;
  background:#fff;
  border-bottom:1px solid var(--clr-border);
  padding:.7rem 0;
}
.site-nav .container {
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
/* Logo */
.site-logo { display:flex; align-items:center; gap:.6rem; text-decoration:none; flex-shrink:0; }
.site-logo svg { width:38px; height:38px; flex-shrink:0; }
.logo-text-wrap { line-height:1.15; }
.logo-name {
  font-family:var(--ff-head); font-size:.95rem; font-weight:700;
  color:var(--clr-wine); display:block;
}
.logo-sub { font-size:.6rem; color:var(--clr-muted); display:block; font-family:var(--ff-body); }
/* Nav links */
.nav-list { display:flex; gap:.2rem; list-style:none; }
.nav-list a {
  display:block; padding:.35rem .7rem;
  font-family:var(--ff-head); font-size:.78rem; font-weight:600;
  color:var(--clr-text); border-radius:var(--r-sm);
  transition:color .15s,background .15s;
  white-space:nowrap;
}
.nav-list a:hover, .nav-list a[aria-current] {
  color:var(--clr-wine); background:var(--clr-wine-pale); text-decoration:none;
}
/* Mobile toggle */
.nav-toggle {
  display:none; background:none; border:1px solid var(--clr-border);
  border-radius:var(--r-sm); cursor:pointer; padding:.35rem .5rem;
  color:var(--clr-text);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero { padding:3.5rem 0 2.5rem; background:#fff; }
.hero .prose { text-align:center; }

/* ── Hero Split (homepage 2-col: text left, image right) ── */
.hero-split { padding:3.5rem 0 0; background:#fff; }
.hero-split__inner { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.hero-split__text { text-align:left; }
.hero-split__figure { margin:0; line-height:0; border-radius:var(--r-md); overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,.12); }
.hero-split__figure picture, .hero-split__figure img { display:block; width:100%; height:auto; }
@media (max-width:767px) {
  .hero-split__inner { grid-template-columns:1fr; gap:1.5rem; }
  .hero-split__text { text-align:center; }
}

.hero-chip {
  display:inline-block; background:var(--clr-wine-pale); color:var(--clr-wine);
  font-family:var(--ff-head); font-size:.7rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  padding:.25rem .85rem; border-radius:100px; margin-bottom:1rem;
}
.hero h1 { margin-bottom:1.1rem; }
.hero h1 em { font-style:normal; color:var(--clr-wine); }
.hero-lead { font-size:1.08rem; color:var(--clr-muted); max-width:680px; margin:0 auto; }

/* ── Hero Figure ─────────────────────────────────────── */
.hero-figure { margin:0; line-height:0; }
.hero-figure img, .hero-figure picture { display:block; width:100%; height:auto; max-height:360px; object-fit:cover; }
.page-hero-figure { max-width:var(--prose-w); margin:0 auto; line-height:0; }
.page-hero-figure picture, .page-hero-figure img { display:block; width:100%; height:auto; max-height:420px; object-fit:cover; object-position:center 25%; }

/* ── Stat Strip ──────────────────────────────────────── */
.stat-strip { background:var(--clr-wine); color:#fff; padding:2rem 0; }
.stat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; text-align:center; }
.stat-num {
  font-family:var(--ff-head); font-size:clamp(2rem,4vw,2.75rem);
  font-weight:800; line-height:1; display:block; letter-spacing:-.02em;
}
.stat-label { font-size:.82rem; opacity:.85; margin-top:.3rem; display:block; }

/* ── Sections ────────────────────────────────────────── */
.section { padding:4rem 0; }
.section--alt { background:var(--clr-surface); }
.section-eyebrow {
  font-family:var(--ff-head); font-size:.68rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--clr-wine);
  display:block; margin-bottom:.35rem;
}
.section-title { margin-bottom:.65rem; }
.section-lead { font-size:1.03rem; color:var(--clr-muted); margin-bottom:1.75rem; }

/* ── Table ───────────────────────────────────────────── */
.table-wrap {
  overflow-x:auto; border:1px solid var(--clr-border);
  border-radius:var(--r-md); margin-bottom:1rem;
}
.data-table {
  width:100%; min-width:780px; font-size:.875rem;
}
.data-table thead th {
  background:var(--clr-wine); color:#fff;
  font-family:var(--ff-head); font-weight:600; font-size:.78rem;
  text-align:left; padding:.7rem 1rem; white-space:nowrap;
}
.data-table tbody td {
  padding:.65rem 1rem; border-bottom:1px solid var(--clr-border); vertical-align:middle;
}
.data-table tbody tr:last-child td { border-bottom:none; }
.data-table tbody tr:nth-child(even) td { background:var(--clr-surface); }
.td-name { font-family:var(--ff-head); font-weight:600; font-size:.875rem; }
.td-rating { font-weight:700; color:var(--clr-wine); font-family:var(--ff-head); }
.td-note { color:var(--clr-muted); font-size:.82rem; }
.table-caption { font-size:.78rem; color:var(--clr-muted); margin-top:.4rem; }

/* ── App Cards ───────────────────────────────────────── */
.card-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.25rem; margin:1.5rem 0; }
.app-card {
  border:1px solid var(--clr-border); border-top:3px solid var(--clr-wine);
  border-radius:var(--r-md); padding:1.25rem; background:#fff;
  box-shadow:var(--shadow);
}
.app-card__name { font-family:var(--ff-head); font-size:1rem; font-weight:700; margin-bottom:.2rem; }
.app-card__meta { font-size:.75rem; color:var(--clr-muted); margin-bottom:.85rem; }
.app-card__body { font-size:.9rem; color:var(--clr-muted); }

/* ── Pro / Con Columns ───────────────────────────────── */
.pro-con { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin:1.5rem 0; }
.pro-box, .con-box {
  border-radius:var(--r-md); padding:1.1rem 1.25rem;
}
.pro-box { background:rgba(46,125,50,.05); border:1px solid rgba(46,125,50,.2); }
.con-box { background:rgba(198,40,40,.04); border:1px solid rgba(198,40,40,.15); }
.pro-box h4 { color:var(--clr-green); font-size:.85rem; margin-bottom:.65rem; }
.con-box h4 { color:var(--clr-red); font-size:.85rem; margin-bottom:.65rem; }
.pro-box ul,.con-box ul { list-style:none; }
.pro-box li,.con-box li { font-size:.875rem; padding:.3rem 0; border-bottom:1px solid rgba(0,0,0,.06); }
.pro-box li:last-child,.con-box li:last-child { border-bottom:none; }
.pro-box li::before { content:"✓ "; color:var(--clr-green); font-weight:600; }
.con-box li::before { content:"– "; color:var(--clr-red); font-weight:600; }

/* ── Testimonials ────────────────────────────────────── */
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1rem; margin:1.5rem 0; }
.testimonial {
  background:#fff; border-radius:0 var(--r-md) var(--r-md) 0;
  border-left:3px solid var(--clr-wine); padding:1rem 1.25rem;
}
.testimonial blockquote { font-size:.9rem; font-style:italic; margin-bottom:.5rem; }
.testimonial cite { font-size:.78rem; color:var(--clr-muted); font-style:normal; font-weight:500; }

/* ── Custom Callout (NOT border-l-4 tint) ────────────── */
.callout {
  display:flex; gap:.9rem; align-items:flex-start;
  border-top:3px solid var(--clr-wine);
  background:#fff; border-radius:0 0 var(--r-md) var(--r-md);
  box-shadow:var(--shadow); padding:1.1rem 1.4rem;
  margin:1.75rem 0;
}
.callout__icon { flex-shrink:0; color:var(--clr-wine); margin-top:.1rem; }
.callout__icon svg { width:20px; height:20px; }
.callout__body { font-size:.92rem; }
.callout__body strong { font-family:var(--ff-head); color:var(--clr-wine); }

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-list { margin:1.5rem 0; }
.faq-list details {
  border:1px solid var(--clr-border); border-radius:var(--r-md);
  margin-bottom:.45rem; overflow:hidden;
}
.faq-list details summary {
  padding:.9rem 1.15rem; font-family:var(--ff-head); font-weight:600;
  font-size:.92rem; cursor:pointer; list-style:none;
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
  transition:background .15s;
}
.faq-list details summary::-webkit-details-marker { display:none; }
.faq-list details summary::after {
  content:"+"; font-size:1.3rem; font-weight:300;
  color:var(--clr-wine); flex-shrink:0; transition:transform .2s;
}
.faq-list details[open] > summary { background:var(--clr-wine-pale); }
.faq-list details[open] > summary::after { transform:rotate(45deg); }
.faq-ans { padding:.1rem 1.15rem 1rem; font-size:.9rem; color:var(--clr-muted); line-height:1.7; }

/* ── Breadcrumb ──────────────────────────────────────── */
.breadcrumb { padding:.65rem 0; font-size:.78rem; color:var(--clr-muted); }
.breadcrumb a { color:var(--clr-muted); }
.breadcrumb a:hover { color:var(--clr-wine); }
.breadcrumb-sep { margin:0 .4rem; }

/* ── Article page layout ─────────────────────────────── */
.page-header { padding:2.5rem 0 2rem; border-bottom:1px solid var(--clr-border); background:#fff; }
.page-body { padding:3rem 0; }
.page-body .prose > *:first-child { margin-top:0; }
.page-body h2 { margin:2.5rem 0 .75rem; }
.page-body h3 { margin:1.75rem 0 .5rem; color:var(--clr-wine); }
.page-body p  { margin-bottom:1rem; }
.page-body ul,
.page-body ol { padding-left:1.5rem; margin-bottom:1rem; }
.page-body li { margin-bottom:.35rem; }
/* Figures break out of prose side padding — full-column visual width */
.page-body figure { margin-left:-1.5rem; margin-right:-1.5rem; }

/* ── Info Box (article sidebar) ──────────────────────── */
.info-strip {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr));
  gap:1rem; padding:1.25rem; background:var(--clr-surface);
  border-radius:var(--r-md); margin:1.5rem 0;
}
.info-strip__item { text-align:center; }
.info-strip__val { font-family:var(--ff-head); font-size:1.15rem; font-weight:700; color:var(--clr-wine); display:block; }
.info-strip__key { font-size:.75rem; color:var(--clr-muted); }

/* ── Pills / Tags ────────────────────────────────────── */
.pill {
  display:inline-block; background:var(--clr-steel-pale); color:var(--clr-steel);
  font-family:var(--ff-head); font-size:.72rem; font-weight:600;
  padding:.2rem .65rem; border-radius:100px;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer { background:#18182A; color:rgba(255,255,255,.65); padding:3rem 0 1.5rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:2rem; margin-bottom:2rem; }
.footer-brand h3 { font-family:var(--ff-head); font-size:.95rem; color:#fff; margin-bottom:.5rem; }
.footer-brand p { font-size:.82rem; }
.footer-col h4 { font-family:var(--ff-head); font-size:.82rem; color:#fff; margin-bottom:.6rem; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:.35rem; }
.footer-col a { color:rgba(255,255,255,.55); font-size:.82rem; transition:color .15s; }
.footer-col a:hover { color:#fff; text-decoration:none; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1); padding-top:1.25rem;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:.5rem; font-size:.78rem;
}
.footer-disclaimer { font-size:.76rem; opacity:.55; margin-top:.75rem; max-width:620px; line-height:1.5; }

/* ── Utility ─────────────────────────────────────────── */
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.text-wine  { color:var(--clr-wine); }
.text-muted { color:var(--clr-muted); }
.mt-sm { margin-top:.5rem; }
.mt-md { margin-top:1.25rem; }
.mb-md { margin-bottom:1.25rem; }
.mb-lg { margin-bottom:2rem; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width:1060px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:960px) {
  .stat-grid { grid-template-columns:1fr 1fr 1fr; }
}
@media (max-width:860px) {
  .nav-list { display:none; }
  .nav-toggle { display:block; }
  .nav-list.is-open {
    display:flex; flex-direction:column; gap:.2rem;
    position:absolute; top:100%; left:0; right:0;
    background:#fff; border-bottom:1px solid var(--clr-border);
    padding:.5rem 1rem;
  }
}
@media (max-width:768px) {
  .stat-grid { grid-template-columns:1fr; gap:1.5rem; }
  .pro-con { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .testimonial-grid { grid-template-columns:1fr; }
  .card-grid { grid-template-columns:1fr; }
  .page-body figure { margin-left:0; margin-right:0; }
}
@media (max-width:540px) {
  .section { padding:2.5rem 0; }
  .hero  { padding:2.5rem 0 1.75rem; }
  h1 { font-size:1.7rem; }
  h2 { font-size:1.35rem; }
  .hero-figure img, .hero-figure picture { max-height:240px; }
  .page-hero-figure picture, .page-hero-figure img { max-height:260px; }
}
