/* foregolf.info – Hauptstylesheet */
:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-light: #52b788;
  --gold: #b5924c;
  --gold-light: #d4a96a;
  --bg: #f8f7f4;
  --bg-white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: #e0ddd6;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --radius: 10px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Source Sans 3', system-ui, -apple-system, sans-serif;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/source-sans-3-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); text-decoration: underline; }

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

/* ── HEADER ── */
.site-header {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--gold-light); }
.site-logo:hover { text-decoration: none; color: #fff; }

.main-nav { display: flex; gap: 0.25rem; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.4rem 1rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero-golf-BRf6Xuce.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  max-width: 700px;
}
.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-light); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.section-header { margin-bottom: 2.5rem; }
.section-header .section-title { margin-bottom: 0.4rem; }

/* ── CARDS ── */
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.card-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ── ANBIETER CARDS ── */
.provider-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--border);
}
.provider-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.provider-badge {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
}
.badge-testsieger { background: var(--gold); color: #fff; }
.badge-empfehlung { background: var(--green); color: #fff; }
.badge-preis-tipp { background: #3b82f6; color: #fff; }
.provider-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
}
.provider-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.rating-overall {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-label { font-size: 0.8rem; color: var(--text-muted); }
.rating-bar-wrap { margin: 0.8rem 0; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}
.rating-bar-label { width: 130px; color: var(--text-muted); flex-shrink: 0; }
.rating-bar-track {
  flex: 1;
  height: 6px;
  background: #e8e5de;
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--green-light);
  border-radius: 3px;
}
.rating-bar-val { width: 30px; text-align: right; font-weight: 600; color: var(--text); }

/* ── STARS ── */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

/* ── DESTINATION GRID ── */
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none !important;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.dest-card-name {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}
.dest-card-sub { color: rgba(255,255,255,0.8); font-size: 0.82rem; }

/* ── ARTICLE CARDS ── */
.article-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.article-card-img { width: 100%; height: 180px; object-fit: cover; }
.article-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.article-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.article-tag {
  display: inline-block;
  background: #e8f4ee;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}
.article-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.article-card-excerpt { color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.article-card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); }
.breadcrumb-sep { opacity: 0.5; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--green-dark);
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.page-hero p { opacity: 0.85; max-width: 650px; font-size: 1.05rem; }

/* ── CONTENT ARTICLE ── */
.article-content { max-width: 780px; }
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 2rem 0 0.75rem;
}
.article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 1.5rem 0 0.5rem;
}
.article-content p { margin-bottom: 1rem; }
.article-content ul, .article-content ol { margin: 0.75rem 0 1rem 1.5rem; }
.article-content li { margin-bottom: 0.4rem; }

/* ── PROS/CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros-box, .cons-box {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.pros-box h4 { color: var(--green); margin-bottom: 0.75rem; font-size: 0.95rem; font-weight: 700; }
.cons-box h4 { color: #c0392b; margin-bottom: 0.75rem; font-size: 0.95rem; font-weight: 700; }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box li, .cons-box li { padding: 0.3rem 0; font-size: 0.9rem; padding-left: 1.2rem; position: relative; }
.pros-box li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-box li::before { content: '✗'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-q {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.faq-a { color: var(--text-muted); font-size: 0.95rem; }

/* ── TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th {
  background: var(--green-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.compare-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.compare-table tr:hover td { background: #f0f7f3; }
.compare-table .score { font-weight: 700; color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold-light); }
.footer-desc { font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: #e8f4ee;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; color: var(--green-dark); }

/* ── INFO CARDS ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.info-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  text-align: center;
}
.info-item-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.info-item-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.info-item-value { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-top: 0.2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--green-dark); padding: 1rem; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.6rem 1rem; border-radius: 6px; }
  .hamburger { display: flex; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 420px; }
  .hero h1 { font-size: 1.8rem; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.5rem 0.6rem; }
}

/* ── UTILS ── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.bg-light { background: var(--bg); }
.bg-green-subtle { background: #e8f4ee; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.w-full { width: 100%; }
