/*
Theme Name: PSV Golf
Theme URI:
Author: PSV Berlin - Abteilung Golf
Description: WordPress Theme fuer die Golf-Abteilung des Polizeisportverein Berlin e.V.
Version: 1.0.0
Text Domain: psv-golf
*/

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

:root {
  --green-900: #0a1f0e;
  --green-800: #133a1a;
  --green-700: #1b5427;
  --green-600: #237034;
  --green-500: #2d8c42;
  --green-400: #4aab5e;
  --green-300: #7cc98a;
  --green-200: #b3e2bb;
  --green-100: #dff3e2;
  --green-50: #f0faf1;
  --navy-900: #0b1628;
  --navy-800: #132844;
  --navy-700: #1a3a60;
  --navy-600: #224d7c;
  --navy-500: #2a6098;
  --navy-400: #4a83b8;
  --navy-300: #7ba8d2;
  --navy-200: #b0ceea;
  --navy-100: #dce8f5;
  --navy-50: #f0f5fb;
  --gold-500: #c9a94e;
  --gold-400: #d4b962;
  --gold-300: #e0ca80;
  --cream: #faf8f2;
  --warm-white: #fdfcf9;
  --text-dark: #1a1a18;
  --text-mid: #4a4a45;
  --text-light: #7a7a72;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  padding: 8rem 3rem 4rem;
  width: 100%;
}

.site-main article {
  max-width: 800px;
  margin: 0 auto;
}

/* ========== WORDPRESS REQUIRED ========== */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}

nav.scrolled {
  background: rgba(10, 31, 14, .92);
  backdrop-filter: blur(12px);
  padding: .85rem 3rem;
}

/* Nav on subpages - solid background */
nav.nav-subpage {
  background: var(--green-900);
  padding: .85rem 3rem;
  position: sticky;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #fff;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-600);
  border: 2px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-text span:first-child {
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
}

.nav-brand-text span:last-child {
  font-size: .7rem;
  font-weight: 300;
  opacity: .7;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Nav links - WordPress menu integration */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .03em;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-400);
  padding: .55rem 1.4rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-500);
  color: var(--green-900);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg,
      var(--green-900) 0%,
      var(--green-800) 25%,
      var(--green-700) 50%,
      var(--green-600) 80%,
      var(--green-500) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 140, 66, .3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(34, 77, 124, .2) 0%, transparent 60%);
}

.hero-slice {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--warm-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.hero-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
  opacity: .4;
}

.hero-deco::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05);
}

.hero-deco::after {
  content: '';
  position: absolute;
  inset: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .04);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 3rem;
  margin-left: 6vw;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(201, 169, 78, .3);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold-400);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeUp .8s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease .15s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s ease .3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .45s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-500);
  color: var(--green-900);
  font-weight: 600;
  padding: .9rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: all .3s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 400;
  transition: all .3s;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  animation: fadeUp .8s ease .6s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
}

.hero-stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .15rem;
}

/* ========== FEATURES STRIP ========== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: -40px auto 0;
  position: relative;
  z-index: 10;
  padding: 0 2rem;
}

.feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.feature-card:first-child {
  border-radius: 10px 0 0 10px;
}

.feature-card:last-child {
  border-radius: 0 10px 10px 0;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  z-index: 2;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.fi-green {
  background: var(--green-100);
  color: var(--green-700);
}

.fi-navy {
  background: var(--navy-100);
  color: var(--navy-700);
}

.fi-gold {
  background: #fdf6e3;
  color: #8a7430;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: .6rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-light);
}

.vorstand-role {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.6;
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 2px 10px;
  margin: 0 0 6px;
  color: var(--green-600);
}

/* ========== NEXT EVENTS ========== */
.section {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: .5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.event-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  padding: 1.75rem;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.event-date {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 8px;
  padding: .6rem .4rem;
}

.event-date-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-800);
  line-height: 1;
}

.event-date-month {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-top: 2px;
}

.event-info h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .3rem;
}

.event-info p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.event-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-top: .5rem;
}

.tag-match {
  background: var(--navy-100);
  color: var(--navy-700);
}

.tag-training {
  background: var(--green-100);
  color: var(--green-700);
}

.tag-event {
  background: #fdf6e3;
  color: #8a7430;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  margin: 2rem 3rem 5rem;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  background: var(--green-900);
  border-radius: 16px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 169, 78, .12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(45, 140, 66, .15) 0%, transparent 50%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: .75rem;
}

.cta-text p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  max-width: 480px;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .5);
  padding: 2.5rem 3rem;
  text-align: center;
  font-size: .78rem;
}

footer a {
  color: var(--gold-400);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

/* ========== MOBILE ========== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all .3s;
  border-radius: 1px;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav.scrolled {
    padding: .75rem 1.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 31, 14, .95);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav-links.active+.nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 0px);
    right: 1.5rem;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-num {
    font-size: 1.5rem;
  }

  .features {
    grid-template-columns: 1fr;
    margin-top: -20px;
    padding: 0 1.5rem;
  }

  .feature-card {
    border-radius: 0 !important;
  }

  .feature-card:first-child {
    border-radius: 10px 10px 0 0 !important;
  }

  .feature-card:last-child {
    border-radius: 0 0 10px 10px !important;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
    margin: 2rem 1.5rem 3rem;
  }

  .cta-text p {
    max-width: 100%;
  }

  .hero-deco {
    display: none;
  }
}

/* ========== FULLWIDTH TEMPLATE ========== */
.site-main--fullwidth {
  padding: 0;
  max-width: none;
  width: 100%;
}


/* ========== ELEMENTOR COMPATIBILITY ========== */
.elementor-page .site-main {
  padding: 0;
  max-width: none;
}

.elementor-page .site-main article {
  max-width: none;
}

/* ========== GUTENBERG BLOCK STYLES ========== */

/* Headings - only on regular pages, not front page sections */
.site-main article h1,
.site-main article h2,
.site-main article h3,
.wp-block-heading {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

/* Buttons */
.wp-block-button__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  border-radius: 5px;
  padding: .9rem 2rem;
  transition: all .3s;
}

.wp-block-button__link:not(.has-background) {
  background: var(--gold-500);
  color: var(--green-900);
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-500);
}

/* Cover block */
.wp-block-cover {
  min-height: 400px;
}

.wp-block-cover h1,
.wp-block-cover h2,
.wp-block-cover h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

/* Group block */
.wp-block-group.has-background {
  padding: 3rem;
  border-radius: 12px;
}

/* Separator */
.wp-block-separator {
  border-color: var(--green-200);
  opacity: 1;
}

.wp-block-separator.is-style-wide {
  border-bottom-width: 2px;
}

/* Quote */
.wp-block-quote {
  border-left: 4px solid var(--gold-500);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-mid);
}

.wp-block-quote cite {
  font-style: normal;
  font-size: .85rem;
  color: var(--text-light);
}

/* Columns */
.wp-block-columns {
  gap: 2rem;
}

/* Image */
.wp-block-image {
  border-radius: 10px;
  overflow: hidden;
}

/* Wide/Full alignment */
.alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.alignfull {
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Editor color palette classes */
.has-green-900-background-color {
  background-color: var(--green-900);
}

.has-green-700-background-color {
  background-color: var(--green-700);
}

.has-green-500-background-color {
  background-color: var(--green-500);
}

.has-green-100-background-color {
  background-color: var(--green-100);
}

.has-navy-700-background-color {
  background-color: var(--navy-700);
}

.has-navy-100-background-color {
  background-color: var(--navy-100);
}

.has-gold-500-background-color {
  background-color: var(--gold-500);
}

.has-gold-300-background-color {
  background-color: var(--gold-300);
}

.has-cream-background-color {
  background-color: var(--cream);
}

.has-text-dark-background-color {
  background-color: var(--text-dark);
}

.has-green-900-color {
  color: var(--green-900);
}

.has-green-700-color {
  color: var(--green-700);
}

.has-green-500-color {
  color: var(--green-500);
}

.has-navy-700-color {
  color: var(--navy-700);
}

.has-gold-500-color {
  color: var(--gold-500);
}

.has-gold-300-color {
  color: var(--gold-300);
}

.has-cream-color {
  color: var(--cream);
}

.has-white-color {
  color: #ffffff;
}

.has-text-dark-color {
  color: var(--text-dark);
}

/* ========== CONTACT PAGE ========== */
.page-header {
  padding: 2.5rem 2.5rem 1.75rem;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--green-900);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.page-header p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
}

.header-rule {
  max-width: 1040px;
  margin: 0 auto;
  height: 1px;
  background: rgba(0, 0, 0, .08);
}

.contact-content {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  padding: 2.5rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Vorstand Cards */
.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.person-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  padding: 1.4rem 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}

.person-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.person-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, .07);
  border-color: rgba(0, 0, 0, .12);
}

.person-card:hover::after {
  transform: scaleX(1);
}

.person-badge {
  display: inline-block;
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
  border: 1px solid var(--green-200);
  border-radius: 3px;
  padding: .18rem .5rem;
  margin-bottom: .75rem;
}

.person-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green-900);
  line-height: 1.2;
}

.person-detail {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
  line-height: 1.5;
}

a.person-detail {
  display: inline-block;
  text-decoration: none;
  color: #666;
}

a.person-detail:hover {
  color: var(--green-700, #2d6a2d);
}

/* Impressum */
.impressum-content {
  max-width: 720px;
  margin: 2.5rem auto;
  padding: 0 1.5rem 3rem;
}

.impressum-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.impressum-section:last-child {
  border-bottom: none;
}

.impressum-section h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-900);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.impressum-section p {
  font-size: .95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: .4rem;
}

.impressum-section a {
  color: var(--green-700, #2d6a2d);
  text-decoration: none;
}

.impressum-section a:hover {
  text-decoration: underline;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.1rem;
}

.info-block {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  padding: 1.3rem 1.5rem;
}

.info-label {
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.info-label svg {
  opacity: .5;
  flex-shrink: 0;
}

.info-links {
  display: flex;
  flex-direction: column;
  gap: .28rem;
}

.info-link {
  font-size: .875rem;
  color: var(--green-700);
  text-decoration: none;
  transition: color .2s;
}

.info-link:hover {
  color: var(--green-900);
  text-decoration: underline;
}

.iban-block {
  background: var(--green-50);
  border-color: var(--green-200);
}

.iban-block .info-label {
  color: var(--green-600);
}

.iban-code {
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--green-900);
}

.iban-bank {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .25rem;
}

/* ========== TERMINE PAGE ========== */

/* Termine Hero */
.termine-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2.5rem 3.5rem;
}

.termine-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
    var(--green-900) 0%,
    var(--green-800) 40%,
    var(--green-700) 70%,
    var(--green-600) 100%);
}

.termine-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.termine-hero-text {
  max-width: 560px;
}

.termine-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.termine-hero-text p {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.termine-hero-stats {
  display: flex;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  flex-shrink: 0;
}

.termine-stat {
  text-align: center;
}

.termine-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

.termine-stat-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: .35rem;
}

/* Termine Section */
.termine-section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 3rem 2.5rem 2rem;
}

.termine-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

/* Event Filter Tabs */
.event-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.event-filter {
  display: inline-block;
  padding: .5rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: all .2s;
}

.event-filter:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}

.event-filter.active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: #fff;
}

/* Termine Cards */
.termine-grid {
  grid-template-columns: repeat(3, 1fr);
}

.termine-card {
  border-radius: 12px;
  border-color: rgba(0, 0, 0, .08);
}

.termine-date {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.termine-date .event-date-day {
  font-size: 1.35rem;
  line-height: 1;
}

.termine-date .event-date-month {
  font-size: .55rem;
  margin-top: 1px;
}

.time-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  margin-right: .25rem;
  vertical-align: middle;
}

/* Termine CTA */
.termine-cta {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1rem 2.5rem 4rem;
}

.termine-cta-inner {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.termine-cta-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.termine-cta-text p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 480px;
}

.termine-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-900);
  color: #fff;
  font-weight: 500;
  font-size: .875rem;
  padding: .85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all .3s;
  flex-shrink: 0;
}

.termine-cta-btn:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .termine-hero {
    padding: 3.5rem 1.5rem 2.5rem;
  }

  .termine-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .termine-hero-stats {
    width: 100%;
    justify-content: space-around;
  }

  .termine-section {
    padding: 2rem 1.5rem;
  }

  .termine-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .termine-grid {
    grid-template-columns: 1fr;
  }

  .termine-cta {
    padding: 1rem 1.5rem 3rem;
  }

  .termine-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .termine-cta-text p {
    max-width: 100%;
  }

  .page-header {
    padding: 2rem 1.5rem 1.25rem;
  }

  .contact-content {
    padding: 1.5rem 1.5rem 3rem;
  }

  .vorstand-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}