:root {
  --vud-blue: #1a5190;
  --vud-blue-dark: #0f3a6e;
  --vud-blue-light: #e8f0fa;
  --vud-green: #3a7d3e;
  --vud-green-light: #e8f5e9;
  --text-dark: #1a1a2e;
  --text-body: #3a3a4a;
  --text-muted: #6b7280;
  --bg-warm: #fafaf8;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

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

a { color: var(--vud-blue); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--vud-blue-dark); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 2rem;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--text-body); text-transform: uppercase;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--vud-blue);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--vud-blue); }
.nav-links a:hover::after { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,58,110,0.82) 0%,
    rgba(26,81,144,0.65) 50%,
    rgba(58,125,62,0.45) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 850px; padding: 2rem;
}
.hero-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 1.5rem; border-radius: 50px;
  margin-bottom: 1.5rem; backdrop-filter: blur(10px);
}
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; margin-bottom: 1rem;
}
.hero p {
  font-size: 1.15rem; line-height: 1.8;
  opacity: 0.92; max-width: 650px; margin: 0 auto 2.5rem;
}

/* Stats */
.hero-stats {
  display: flex; justify-content: center; gap: 3rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.5rem; font-weight: 700; display: block;
}
.stat-label {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.8;
}

/* CTAs */
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.02em;
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: #fff; color: var(--vud-blue);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); color: var(--vud-blue-dark); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── Section base ── */
.section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1100px; margin: 0 auto;
}
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--vud-blue); background: var(--vud-blue-light);
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; margin-bottom: 3rem;
}
.section-subtitle.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Über uns ── */
.about { background: var(--bg-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.about-text p { margin-bottom: 1.2rem; }
.about-text .highlight {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.3rem; font-weight: 600; color: var(--vud-blue);
  border-left: 3px solid var(--vud-blue); padding-left: 1.2rem;
  margin: 2rem 0;
}
.about-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── Zielgruppen / Einstieg ── */
.entry { background: var(--bg-warm); text-align: center; }
.entry-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 3rem;
}
.entry-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 3rem 2.5rem; text-align: left;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.entry-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; transition: height 0.3s;
}
.entry-card.golf::before { background: var(--vud-green); }
.entry-card.business::before { background: var(--vud-blue); }
.entry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.entry-card:hover::before { height: 6px; }
.entry-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.5rem;
}
.entry-card.golf .entry-icon { background: var(--vud-green-light); }
.entry-card.business .entry-icon { background: var(--vud-blue-light); }
.entry-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.entry-card p { color: var(--text-muted); margin-bottom: 1.5rem; }
.entry-link {
  font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.entry-card.golf .entry-link { color: var(--vud-green); }
.entry-card.business .entry-link { color: var(--vud-blue); }

/* ── Leistungen ── */
.services { background: var(--bg-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.service-card {
  padding: 2rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease; text-align: center;
}
.service-card:hover {
  border-color: var(--vud-blue);
  box-shadow: 0 4px 20px rgba(26,81,144,0.1);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--vud-blue-light); color: var(--vud-blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.3rem;
}
.service-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Magazine / Medien ── */
.media { background: var(--bg-warm); }
.media-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.media-item {
  background: var(--bg-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
}
.media-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.media-item-img {
  aspect-ratio: 3/4; overflow: hidden;
}
.media-item-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.media-item:hover .media-item-img img { transform: scale(1.05); }
.media-item-body { padding: 1.5rem; }
.media-item-body h4 {
  font-size: 1.1rem; margin-bottom: 0.4rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.media-item-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Vorteile ── */
.benefits { background: var(--vud-blue); color: #fff; position: relative; overflow: hidden; }
.benefits::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.benefits .section-label { background: rgba(255,255,255,0.15); color: #fff; }
.benefits .section-title { color: #fff; }
.benefits .section-subtitle { color: rgba(255,255,255,0.75); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  position: relative; z-index: 1;
}
.benefit {
  background: rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.benefit:hover { background: rgba(255,255,255,0.12); }
.benefit-num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem; font-weight: 700; opacity: 0.3;
  margin-bottom: 0.5rem;
}
.benefit h4 {
  color: #fff; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem;
}
.benefit p { font-size: 0.9rem; opacity: 0.8; line-height: 1.7; }

/* ── GolfPartnerClubs ── */
.partners { background: var(--bg-white); }
.partners-flex {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.partners-visual {
  position: relative;
}
.partners-visual .card-img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%;
}
.partners-visual .logo-badge {
  position: absolute; bottom: -20px; right: -10px;
  width: 140px; background: #fff; border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow-md);
}
.partners-info h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.partners-info p { margin-bottom: 1rem; }
.partners-stats {
  display: flex; gap: 2rem; margin: 1.5rem 0;
}
.partners-stat {
  text-align: center;
}
.partners-stat strong {
  display: block; font-size: 1.8rem; color: var(--vud-green);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.partners-stat span { font-size: 0.8rem; color: var(--text-muted); }

/* ── Online / Plattformen ── */
.online { background: var(--bg-warm); }
.online-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.online-card {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border-light);
  transition: all 0.3s; text-align: center;
}
.online-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.online-card img {
  width: 100%; border-radius: 8px; margin-bottom: 1rem;
  aspect-ratio: 16/9; object-fit: cover;
}
.online-card h4 { font-size: 1rem; margin-bottom: 0.3rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.online-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.online-card a { font-size: 0.85rem; font-weight: 600; }

/* ── Projekte ── */
.projects { background: var(--bg-white); }
.project-scroll {
  display: flex; gap: 1.5rem; overflow-x: auto;
  padding-bottom: 1rem; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: thin;
}
.project-tag {
  flex-shrink: 0; scroll-snap-align: start;
  background: var(--bg-warm); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 1.2rem 1.8rem;
  font-size: 0.9rem; font-weight: 500; white-space: nowrap;
  transition: all 0.3s;
}
.project-tag:hover {
  background: var(--vud-blue-light); border-color: var(--vud-blue);
  color: var(--vud-blue);
}

/* ── Kontakt ── */
.contact {
  background: linear-gradient(135deg, var(--vud-blue-dark) 0%, var(--vud-blue) 100%);
  color: #fff; text-align: center;
}
.contact .section-label { background: rgba(255,255,255,0.15); color: #fff; }
.contact .section-title { color: #fff; }
.contact .section-subtitle { color: rgba(255,255,255,0.75); }
.contact-box {
  background: rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 3rem; max-width: 600px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.contact-names {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem; font-weight: 600; margin-bottom: 0.25rem;
}
.contact-company { opacity: 0.8; margin-bottom: 1rem; }
.contact-detail {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.95rem;
}
.contact-detail a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact-hours {
  margin-top: 1rem; font-size: 0.85rem; opacity: 0.7;
}

/* ── Footer ── */
.footer {
  background: #0a1628; color: rgba(255,255,255,0.5);
  text-align: center; padding: 2rem;
  font-size: 0.8rem;
}
.footer a { color: rgba(255,255,255,0.6); }
.footer a:hover { color: #fff; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 0.75rem; }

/* ── Page template (Impressum, Datenschutz) ── */
.page-content {
  max-width: 800px;
  line-height: 1.8;
}
.page-content h1,
.page-content h2,
.page-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.page-content p {
  margin-bottom: 1rem;
}
.page-content ul,
.page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.page-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid, .entry-cards, .partners-flex { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .media-showcase { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .online-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .services-grid, .media-showcase, .online-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; }
  .section { padding: 4rem 1.25rem; }
}
