/* ---------------------------------------------------------------
   GOOGLE FONTS IMPORT (Must be at the very top)
   --------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* =============================================================
   HTW – Hegering Telgte-Westbevern
   Benutzerdefinierte CSS-Stile
   Framework: Bootstrap 5.3
   Basis-Design: Webertise CMS / RGH-Muster
   ============================================================= */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS / CSS-Variablen
   --------------------------------------------------------------- */
:root {
  /* Primärfarben – Jagdgrün & Erdtöne */
  --htw-green: #1e6b38;
  /* Primärgrün (Wald) */
  --htw-green-dark: #13462a;
  /* Dunkelgrün (Navbar, Footer) */
  --htw-green-mid: #2d8653;
  /* Mittleres Grün */
  --htw-green-pale: #edf5f0;
  /* Hellgrün (Hintergründe) */
  --htw-green-light: #c8e6d4;
  /* Helles Grün (Akzente) */

  /* Akzentfarben – Herbst / Jagd */
  --htw-amber: #c97a1e;
  /* Bernsteingelb (Akzent) */
  --htw-amber-light: #f5e9d4;
  /* Helles Bernstein */
  --htw-brown: #6b4226;
  /* Holzbraun */
  --htw-brown-light: #f3ede8;
  /* Helles Braun */

  /* Neutralfarben */
  --htw-text: #1c2b22;
  /* Haupttext */
  --htw-text-muted: #5a6b60;
  /* Sekundärtext */
  --htw-border: #d4e4da;
  /* Rahmenlinien */
  --htw-bg: #f9fcfa;
  /* Seitenhintergrund */
  --htw-bg-section: #f3f8f5;
  /* Abschnittshintergrund */
  --htw-white: #ffffff;

  /* Typografie */
  --htw-font-body: 'Inter', system-ui, sans-serif;
  --htw-font-head: 'Lora', 'Georgia', serif;

  /* Layout */
  --htw-radius: 0.75rem;
  --htw-radius-lg: 1.25rem;
  --htw-shadow: 0 2px 16px rgba(30, 107, 56, 0.08);
  --htw-shadow-md: 0 6px 32px rgba(30, 107, 56, 0.13);
  --htw-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------------------------------------------------------------
   3. BASE / RESET
   --------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--htw-font-body);
  color: var(--htw-text);
  background: var(--htw-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--htw-font-head);
  color: var(--htw-text);
}

a {
  color: var(--htw-green);
  transition: var(--htw-transition);
}

a:hover {
  color: var(--htw-green-dark);
}

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

/* Bootstrap Primary Color Overrides */
.btn-primary {
  background-color: var(--htw-green);
  border-color: var(--htw-green);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--htw-green-dark);
  border-color: var(--htw-green-dark);
  color: #fff;
}

.btn-outline-primary {
  color: var(--htw-green);
  border-color: var(--htw-green);
}

.btn-outline-primary:hover {
  background-color: var(--htw-green);
  border-color: var(--htw-green);
  color: #fff;
}

/* ---------------------------------------------------------------
   4. NAVBAR
   --------------------------------------------------------------- */
.htw-navbar {
  background: var(--htw-white);
  border-bottom: 1px solid var(--htw-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow 0.3s ease;
}

.htw-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.htw-logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.htw-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.htw-brand-text .line1 {
  font-family: var(--htw-font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--htw-green-dark);
}

.htw-brand-text .line2 {
  font-size: 0.72rem;
  color: var(--htw-text-muted);
  font-weight: 400;
}

.htw-navbar .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--htw-text);
  padding: 0.5rem 0.75rem !important;
  border-radius: 0.4rem;
  transition: var(--htw-transition);
}

.htw-navbar .nav-link:hover,
.htw-navbar .nav-link.active {
  color: var(--htw-green);
  background: var(--htw-green-pale);
}

/* Dropdown */
.htw-navbar .dropdown-menu {
  border: 1px solid var(--htw-border);
  border-radius: var(--htw-radius);
  box-shadow: var(--htw-shadow-md);
  min-width: 220px;
  padding: 0.5rem;
}

.htw-navbar .dropdown-item {
  border-radius: 0.4rem;
  font-size: 0.875rem;
  padding: 0.5rem 0.875rem;
  color: var(--htw-text);
  transition: var(--htw-transition);
}

.htw-navbar .dropdown-item:hover {
  background: var(--htw-green-pale);
  color: var(--htw-green);
}

.htw-navbar .dropdown-divider {
  border-color: var(--htw-border);
}

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

.htw-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45);
  transform: scale(1.03);
  transition: transform 8s ease;
}

.htw-hero:hover .htw-hero__bg {
  transform: scale(1.0);
}

.htw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(19, 70, 42, 0.75) 0%,
      rgba(30, 107, 56, 0.4) 60%,
      rgba(0, 0, 0, 0.1) 100%);
}

.htw-hero__content {
  position: relative;
  z-index: 2;
  padding: 1rem 1rem 4rem 1rem;
}

.htw-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
}

.htw-hero h1 {
  font-family: var(--htw-font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.htw-hero .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2rem;
}

.htw-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.htw-hero__wave svg {
  width: 100%;
  display: block;
}

/* Hero Trust Badges */
.htw-hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

/* ---------------------------------------------------------------
   6. SECTION UTILITIES
   --------------------------------------------------------------- */
.htw-section {
  padding: 4.5rem 0;
}

.htw-section--sm {
  padding: 3rem 0;
}

.htw-section--light {
  background: var(--htw-bg-section);
}

.htw-section--green {
  background: var(--htw-green-dark);
  color: #fff;
}

.htw-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.htw-eyebrow-bar {
  width: 28px;
  height: 3px;
  background: var(--htw-amber);
  border-radius: 2px;
  flex-shrink: 0;
}

.htw-eyebrow-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--htw-text-muted);
}

.htw-section-title {
  font-family: var(--htw-font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--htw-text);
  margin-bottom: 0;
  line-height: 1.25;
}

.htw-section-subtitle {
  color: var(--htw-text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Wave Dividers */
.htw-wave-down svg,
.htw-wave-up svg {
  display: block;
  width: 100%;
}

/* ---------------------------------------------------------------
   7. KARTEN – Nachrichtenartikel
   --------------------------------------------------------------- */
.htw-card-news {
  background: var(--htw-white);
  border-radius: var(--htw-radius-lg);
  overflow: hidden;
  box-shadow: var(--htw-shadow);
  border: 1px solid var(--htw-border);
  transition: var(--htw-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.htw-card-news:hover {
  transform: translateY(-5px);
  box-shadow: var(--htw-shadow-md);
}

.htw-card-news__img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--htw-green-pale);
}

.htw-card-news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.htw-card-news:hover .htw-card-news__img img {
  transform: scale(1.06);
}

.htw-card-news__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--htw-green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}

.htw-card-news__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.htw-card-news__date {
  font-size: 0.78rem;
  color: var(--htw-text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.htw-card-news__title {
  font-family: var(--htw-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--htw-text);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.htw-card-news__excerpt {
  color: var(--htw-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------------
   8. OBMÄNNER – Hervorgehobene Bereiche
   --------------------------------------------------------------- */
.htw-obmann-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.htw-obmann-card {
  background: var(--htw-white);
  border-radius: var(--htw-radius-lg);
  border: 2px solid var(--htw-border);
  overflow: hidden;
  transition: var(--htw-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.htw-obmann-card:hover {
  border-color: var(--htw-green);
  box-shadow: var(--htw-shadow-md);
  transform: translateY(-4px);
}

.htw-obmann-card__header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.htw-obmann-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: var(--htw-green-pale);
  color: var(--htw-green);
}

/* Color variants for each Obmann area */
.htw-obmann-card--natur .htw-obmann-card__icon {
  background: #e6f4ec;
  color: #1e6b38;
}

.htw-obmann-card--brauchtum .htw-obmann-card__icon {
  background: #fef3e2;
  color: #c97a1e;
}

.htw-obmann-card--schiessen .htw-obmann-card__icon {
  background: #ebeef5;
  color: #3a4a7c;
}

.htw-obmann-card--hunde .htw-obmann-card__icon {
  background: #f3ede8;
  color: #6b4226;
}

.htw-obmann-card--junge .htw-obmann-card__icon {
  background: #e8f4ef;
  color: #1e6b38;
}

.htw-obmann-card__title {
  font-family: var(--htw-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--htw-text);
  margin: 0 0 0.15rem;
}

.htw-obmann-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--htw-text-muted);
}

.htw-obmann-card__body {
  padding: 1rem 1.5rem;
  flex: 1;
}

.htw-obmann-card__desc {
  font-size: 0.875rem;
  color: var(--htw-text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.htw-obmann-card__contact {
  font-size: 0.78rem;
  color: var(--htw-green);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 500;
}

.htw-obmann-card__contact:hover {
  color: var(--htw-green-dark);
  text-decoration: underline;
}

.htw-obmann-card__footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--htw-border);
  margin-top: auto;
}

/* Accent bar at top */
.htw-obmann-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--htw-green);
  border-radius: var(--htw-radius-lg) var(--htw-radius-lg) 0 0;
}

.htw-obmann-card--brauchtum::before {
  background: var(--htw-amber);
}

.htw-obmann-card--schiessen::before {
  background: #3a4a7c;
}

.htw-obmann-card--hunde::before {
  background: var(--htw-brown);
}

.htw-obmann-card--junge::before {
  background: #2d8653;
}

/* ---------------------------------------------------------------
   9. EVENTS / TERMINE
   --------------------------------------------------------------- */
.htw-event-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--htw-white);
  border-radius: var(--htw-radius);
  border: 1px solid var(--htw-border);
  margin-bottom: 0.75rem;
  transition: var(--htw-transition);
}

.htw-event-item:hover {
  border-color: var(--htw-green);
  box-shadow: var(--htw-shadow);
}

.htw-event-item:last-child {
  margin-bottom: 0;
}

.htw-event-date {
  min-width: 56px;
  text-align: center;
  background: var(--htw-green);
  color: #fff;
  border-radius: 0.6rem;
  padding: 0.5rem 0.25rem;
  flex-shrink: 0;
}

.htw-event-date .day {
  font-family: var(--htw-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.htw-event-date .month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.htw-event-info .event-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--htw-text);
  margin-bottom: 0.3rem;
  font-family: var(--htw-font-head);
}

.htw-event-info .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--htw-text-muted);
}

.htw-event-info .event-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---------------------------------------------------------------
   10. STATISTIKEN / ZAHLEN
   --------------------------------------------------------------- */
.htw-stat-item {
  text-align: center;
}

.htw-stat-item .stat-number {
  font-family: var(--htw-font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--htw-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.htw-stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--htw-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------------------------------------------------------------
   11. CTA-BEREICHE
   --------------------------------------------------------------- */
.htw-cta {
  background: linear-gradient(135deg, var(--htw-green-dark), var(--htw-green-mid));
  border-radius: var(--htw-radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.htw-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.htw-cta h2 {
  color: #fff;
  font-family: var(--htw-font-head);
}

.htw-cta p {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------------------------------------------------------------
   12. REVIERE / KARTE AREA
   --------------------------------------------------------------- */
.htw-revier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--htw-green-pale);
  color: var(--htw-green);
  border: 1px solid var(--htw-green-light);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  margin: 0.2rem;
}

/* ---------------------------------------------------------------
   13. PAGE-HEADER (Unterseiten-Teaser)
   --------------------------------------------------------------- */
.htw-page-header {
  background: linear-gradient(135deg, var(--htw-green-dark) 0%, var(--htw-green) 100%);
  padding: 3rem 0 2.75rem;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--htw-amber);
}

/* Subtle decorative circle in the background */
.htw-page-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.htw-page-header h1 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.htw-page-header p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  margin-top: 0.5rem;
  font-size: 1rem;
  max-width: 600px;
}

.htw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.htw-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.htw-breadcrumb a:hover {
  color: #fff;
}

/* ---------------------------------------------------------------
   14. AVATAR PHOTO CIRCLES
   --------------------------------------------------------------- */
.htw-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

/* ---------------------------------------------------------------
   15. FOOTER
   --------------------------------------------------------------- */
.htw-footer {
  background: var(--htw-green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0;
}

.htw-footer__wave {
  line-height: 0;
  overflow: hidden;
}

.htw-footer__wave svg {
  display: block;
  width: 100%;
}

.htw-footer h5 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.htw-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.htw-footer-links li {
  margin-bottom: 0.4rem;
}

.htw-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--htw-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.htw-footer-links a:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(3px);
}

.htw-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.htw-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.htw-footer-bottom a:hover {
  color: #fff;
}

/* ---------------------------------------------------------------
   15. ANIMATIONEN
   --------------------------------------------------------------- */
.htw-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.htw-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.htw-animate--delay-1 {
  transition-delay: 0.12s;
}

.htw-animate--delay-2 {
  transition-delay: 0.24s;
}

.htw-animate--delay-3 {
  transition-delay: 0.36s;
}

.htw-animate--delay-4 {
  transition-delay: 0.48s;
}

/* ---------------------------------------------------------------
   16. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 767.98px) {
  .htw-hero {
    min-height: 70vh;
  }

  .htw-hero__content {
    padding: 4rem 1rem 3rem 1rem;
  }

  .htw-cta {
    padding: 2rem 1.5rem;
  }

  .htw-obmann-grid {
    grid-template-columns: 1fr;
  }

  .htw-section {
    padding: 3rem 0;
  }
}

/* ---------------------------------------------------------------
   17. VORSTAND-KARTEN (Über uns – Seite)
   --------------------------------------------------------------- */
.htw-vorstand-card {
  background: var(--htw-white);
  border-radius: var(--htw-radius);
  border: 1px solid var(--htw-border);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--htw-transition);
  height: 100%;
}

.htw-vorstand-card:hover {
  border-color: var(--htw-green);
  box-shadow: var(--htw-shadow);
  transform: translateY(-3px);
}

.htw-vorstand-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.htw-vorstand-card__body {
  flex: 1;
  min-width: 0;
}

.htw-vorstand-card__name {
  font-family: var(--htw-font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--htw-text);
  margin-bottom: 0.15rem;
}

.htw-vorstand-card__role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--htw-text-muted);
  margin-bottom: 0.4rem;
}

.htw-vorstand-card__address {
  font-size: 0.78rem;
  color: var(--htw-text-muted);
  margin-bottom: 0.4rem;
}

.htw-vorstand-card__email {
  font-size: 0.75rem;
  color: var(--htw-green);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}

.htw-vorstand-card__email:hover {
  color: var(--htw-green-dark);
  text-decoration: underline;
}

/* ---------------------------------------------------------------
   18. ZWEISPALTIGE SEITEN-LAYOUT
   --------------------------------------------------------------- */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  max-width: var(--max-width, 1280px);
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .two-col-layout {
    grid-template-columns: 1fr;
  }

  .col-sidebar {
    order: 2;
  }
}

/* ---------------------------------------------------------------
   19. BLOG – Filter-Sidebar
   --------------------------------------------------------------- */
.htw-blog-list {
  padding: 0;
}

.htw-blog-filter {
  background: var(--htw-green-pale);
  border: 1px solid var(--htw-green-light);
  border-radius: var(--htw-radius);
  padding: 1.25rem;
  position: sticky;
  top: 80px;
}

.htw-blog-filter__title {
  font-family: var(--htw-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--htw-green-dark);
  margin-bottom: 1rem;
}

.htw-blog-filter__section-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--htw-green);
  margin-bottom: 0.5rem;
}

.htw-blog-filter__category-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  background: #fff;
  color: var(--htw-green-dark);
  text-decoration: none;
  border: 1px solid var(--htw-border);
  transition: var(--htw-transition);
}

.htw-blog-filter__category-btn:hover,
.htw-blog-filter__category-btn.active {
  background: var(--htw-green);
  color: #fff;
  border-color: var(--htw-green);
}

.htw-blog-filter__count {
  font-size: 0.72rem;
  opacity: 0.7;
}

.htw-blog-filter__year-btn {
  display: block;
  font-weight: 600;
  color: var(--htw-green-dark);
  text-decoration: none;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  transition: var(--htw-transition);
}

.htw-blog-filter__year-btn:hover,
.htw-blog-filter__year-btn.active {
  color: var(--htw-green);
}

.htw-blog-filter__month-list {
  padding-left: 0.75rem;
  border-left: 2px solid var(--htw-green-light);
  margin-top: 0.35rem;
}

.htw-blog-filter__month-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--htw-text-muted);
  text-decoration: none;
  padding: 0.15rem 0;
  transition: var(--htw-transition);
}

.htw-blog-filter__month-btn:hover,
.htw-blog-filter__month-btn.active {
  color: var(--htw-green);
  font-weight: 600;
}

/* ---------------------------------------------------------------
   20. BLOG – Aktive Filter-Pills
   --------------------------------------------------------------- */
.htw-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--htw-green);
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
  transition: var(--htw-transition);
}

.htw-filter-pill:hover {
  background: var(--htw-green-dark);
  color: #fff;
}

/* ---------------------------------------------------------------
   21. BLOG – Artikel-Detailseite
   --------------------------------------------------------------- */
.htw-blog-detail {
  padding-bottom: 3rem;
}

.htw-blog-detail__hero img {
  width: 100%;
  object-fit: cover;
}

.htw-blog-detail__body {
  line-height: 1.85;
  font-size: 1.05rem;
}

.htw-blog-detail__body h2,
.htw-blog-detail__body h3 {
  font-family: var(--htw-font-head);
  color: var(--htw-green-dark);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.htw-blog-detail__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--htw-radius);
}

.htw-blog-detail__body a {
  color: var(--htw-green);
}

.htw-blog-detail__body blockquote {
  border-left: 4px solid var(--htw-green);
  padding-left: 1rem;
  color: var(--htw-text-muted);
  font-style: italic;
}

/* ---------------------------------------------------------------
   22. EVENTS / TERMINE ERGÄNZUNGEN (Liste & Filter)
   --------------------------------------------------------------- */
.htw-filter-pills {
  margin-bottom: 2rem;
}

.htw-events-month-group {
  position: relative;
}

/* ---------------------------------------------------------------
   23. EVENT CATEGORY COLORS
   --------------------------------------------------------------- */
.htw-event-item {
  border-left: 4px solid var(--htw-border);
}

.htw-event-badge {
  font-size: 0.78rem;
  background: var(--htw-green);
  color: #fff;
  padding: 0.35em 0.8em;
  border-radius: 2rem;
  font-weight: 600;
  transition: var(--htw-transition);
}

/* Category: Natur */
[data-category*="natur" i].htw-event-item { border-left-color: #1e6b38; }
.htw-event-badge[data-category*="natur" i] { background: #1e6b38; }

/* Category: Brauchtum */
[data-category*="brauchtum" i].htw-event-item { border-left-color: #c97a1e; }
.htw-event-badge[data-category*="brauchtum" i] { background: #c97a1e; }

/* Category: Schießen */
[data-category*="schie" i].htw-event-item,
[data-category*="schiessen" i].htw-event-item { border-left-color: #3a4a7c; }
.htw-event-badge[data-category*="schie" i],
.htw-event-badge[data-category*="schiessen" i] { background: #3a4a7c; }

/* Category: Hunde */
[data-category*="hunde" i].htw-event-item { border-left-color: #6b4226; }
.htw-event-badge[data-category*="hunde" i] { background: #6b4226; }

/* Category: Junge Jäger */
[data-category*="junge" i].htw-event-item { border-left-color: #2d8653; }
.htw-event-badge[data-category*="junge" i] { background: #2d8653; }

/* ==========================================================================
   Kontaktbereich Component (ID 125)
   ========================================================================== */

.htw-contact-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--htw-green-dark);
}

.htw-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.htw-contact-item:last-child {
    margin-bottom: 0;
}

.htw-contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--htw-green-light);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1.25rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.htw-contact-box:hover .htw-contact-icon {
    background-color: var(--htw-green-dark);
    transform: scale(1.05);
}

.htw-contact-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--htw-green-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.htw-contact-text p, 
.htw-contact-text address {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}
.htw-contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.htw-contact-text a:hover {
    color: var(--htw-orange-auth);
}

/* Contact Form */
.htw-form label {
    font-weight: 500;
    color: var(--htw-green-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.htw-form .form-control,
.htw-form .form-select {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.htw-form .form-control:focus,
.htw-form .form-select:focus {
    border-color: var(--htw-green-light);
    box-shadow: 0 0 0 3px rgba(92, 138, 85, 0.15);
    outline: none;
}
.htw-form .btn-primary {
    background-color: var(--htw-green-dark);
    border-color: var(--htw-green-dark);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.htw-form .btn-primary:hover {
    background-color: var(--htw-orange-auth);
    border-color: var(--htw-orange-auth);
    transform: translateY(-2px);
}