/* =============================================
   HIRSCHGASSE.COM — SPORTWETTEN GUIDE 2026
   Stylesheet v1.0
   ============================================= */

/* ——— RESET & BASE ——— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: #2c2c2c;
  background: #f5f0e8;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 0; list-style: none; }

/* ——— TYPOGRAPHY ——— */
h1, h2, h3, h4 {
  font-family: Georgia, serif;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); text-transform: uppercase; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ——— COLORS ——— */
:root {
  --red:    #6f1616;
  --brown:  #7a5c3e;
  --cream:  #f5f0e8;
  --dark:   #333333;
  --white:  #ffffff;
  --text-d: #2c2c2c;
  --border: rgba(255,255,255,0.15);
}

/* ——— NAVBAR ——— */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--red);
  border-bottom: 2px solid rgba(255,255,255,0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: bold;
}

.nav-logo span {
  color: #e8b4a0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: #e8b4a0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ——— HERO ——— */
.hero {
  background: var(--red);
  padding: 100px 2rem 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #e8b4a0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--white);
  color: var(--red);
  font-weight: bold;
}

.btn-primary:hover { background: #f0e8e8; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ——— SPLITTER ——— */
.splitter {
  text-align: center;
  padding: 2.5rem 0;
  color: rgba(0,0,0,0.2);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  background: var(--cream);
}

.splitter-dark {
  color: rgba(255,255,255,0.25);
  background: var(--red);
}

.splitter-brown {
  color: rgba(255,255,255,0.25);
  background: var(--brown);
}

/* ——— SECTION WRAPPERS ——— */
.section {
  padding: 80px 2rem;
}

.section-red {
  background: var(--red);
  color: var(--white);
}

.section-brown {
  background: var(--brown);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
  color: var(--text-d);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
}

/* Section headers */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.6rem;
}

.section h2 {
  margin-bottom: 1.5rem;
}

.section-red h2,
.section-brown h2 { color: #fff; }
.section-cream h2 { color: var(--red); }

.section-red h3 { color: #e8b4a0; }
.section-brown h3 { color: #f5ddc8; }
.section-cream h3 { color: var(--brown); }

/* ——— CARDS GRID ——— */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s;
}

.card:hover { transform: translateY(-3px); }

.card-body {
  padding: 1.5rem;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
}

.card p { font-size: 0.9rem; opacity: 0.85; }

/* Light cards */
.cards-grid-light .card {
  background: var(--white);
  border-color: rgba(110,22,22,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cards-grid-light .card h3 { color: var(--red); }

/* ——— ART STEPS ——— */
.art-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.art-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.art-step::before {
  counter-increment: steps;
  content: counter(steps);
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  flex: 0 0 42px;
}

.section-cream .art-step::before {
  background: rgba(110,22,22,0.08);
  border-color: var(--red);
  color: var(--red);
}

.art-step-content { padding-top: 0.5rem; }

.art-step-content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.art-step-content p { font-size: 0.9rem; opacity: 0.88; margin: 0; }

/* ——— ART CHECKLIST ——— */
.art-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.art-checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.art-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: 0.1rem;
  flex: 0 0 22px;
}

.section-cream .art-checklist li::before {
  background: rgba(110,22,22,0.1);
  color: var(--red);
}

/* ——— WÖRTERBUCH (GLOSSARY) ——— */
.glossary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.glossary-item {
  background: rgba(255,255,255,0.08);
  border-left: 3px solid rgba(255,255,255,0.3);
  padding: 1rem 1.2rem;
  border-radius: 0 2px 2px 0;
}

.section-cream .glossary-item {
  background: rgba(255,255,255,0.8);
  border-left-color: var(--red);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.glossary-term {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.section-cream .glossary-term { color: var(--red); }

.glossary-def { font-size: 0.88rem; opacity: 0.85; margin: 0; }

/* ——— INFO BOX ——— */
.info-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-left: 4px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.section-cream .info-box {
  background: rgba(110,22,22,0.05);
  border-color: rgba(110,22,22,0.15);
  border-left-color: var(--red);
}

/* ——— TWO COLS ——— */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ——— QUOTE BLOCK ——— */
.quote-block {
  border-left: 4px solid rgba(255,255,255,0.4);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.9;
  margin: 1.5rem 0;
}

/* ——— FAQ ACCORDION ——— */
.faq-list { margin-top: 2rem; }

.faq-item {
  border-bottom: 1px solid rgba(110,22,22,0.15);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 0;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-d);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: monospace;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ——— HIGHLIGHT STATS ——— */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #e8b4a0;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ——— FOOTER ——— */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 2rem 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.footer-desc { font-size: 0.85rem; line-height: 1.6; }

.footer-heading {
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.45;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a { opacity: 0.7; transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 1; }

.footer-disclaimer {
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.75rem;
  opacity: 0.4;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
}

/* ——— BACK TO TOP ——— */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.btt.visible { opacity: 1; transform: translateY(0); }
.btt:hover { background: #8a1c1c; }

/* ——— PAGE HERO (subpages) ——— */
.page-hero {
  background: var(--red);
  padding: 70px 2rem 60px;
  text-align: center;
}

.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 660px; margin: 1rem auto 0; }

/* ——— BREADCRUMB ——— */
.breadcrumb {
  background: var(--red);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.4; }

/* ——— LEGAL PAGES ——— */
.legal-content h2 { color: var(--red); margin: 2rem 0 0.8rem; font-size: 1.2rem; }
.legal-content h3 { color: var(--brown); margin: 1.5rem 0 0.6rem; }

/* ——— UTILITY ——— */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-cols { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--red);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1rem 0;
  }
  .nav-links.open a {
    padding: 0.75rem 2rem;
    border-bottom: none;
  }
  .nav-hamburger { display: flex; }
  .navbar { position: sticky; }

  .cards-grid { grid-template-columns: 1fr; }
  .glossary { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 60px 1.5rem 50px; }
  .section { padding: 60px 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btt { bottom: 1rem; right: 1rem; }
}
