/*
Theme Name: Hitz Fussball
Theme URI: https://hitz-fussball.de
Author: Hitz Fussball e.V.
Author URI: https://hitz-fussball.de
Description: Modernes, barrierefreies WordPress-Theme fuer Sportvereine. Responsives Design mit Weiss/Blau-Farbschema und Gold-Amber-Akzenten (#D4952A). Hero-Slider, Custom Post Types (Mannschaften, Spiele, Mitgliedschaften) und Customizer-faehig.
Version: 2.2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hitz-fussball
Tags: sports, football, soccer, responsive, accessibility-ready, custom-menu, custom-logo, translation-ready
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  /* Hitz Theme Defaults (Fallback values) */
  --hitz-blue: #0a3d8f;
  --hitz-blue-dark: #083275;
  --hitz-blue-light: #e8f0fe;

  --hitz-green: #D4952A;
  --hitz-green-hover: #C08524;

  --hitz-dark: #1a1a2e;
  --hitz-gray: #64748b;
  --hitz-gray-light: #f1f5f9;

  --hitz-bg-light: #f8fafc;
  --hitz-border: var(--hitz-blue-light);
  --hitz-white: #ffffff;
  --hitz-red: #d4183d;

  /* Defaults */
  --hitz-font: 'Barlow', sans-serif;

  --hitz-header-height: 5rem;
  --hitz-header-height-sm: 6rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--hitz-font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--hitz-dark);
  background: var(--hitz-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--hitz-dark);
}

/* ===========================
   Accessibility
   =========================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--hitz-green);
  color: var(--hitz-dark);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 0.5rem 0;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--hitz-blue);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--hitz-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================
   Layout
   =========================== */
.hitz-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hitz-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hitz-container {
    padding: 0 2rem;
  }
}

.hitz-container-narrow {
  max-width: 72rem;
}

/* ===========================
   Header
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--hitz-white);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hitz-border);
}

/* WP Admin Bar Offset */
.admin-bar .site-header,
.admin-bar .mobile-overlay,
.admin-bar .mobile-drawer {
  top: 32px;
}

@media screen and (max-width: 782px) {

  .admin-bar .site-header,
  .admin-bar .mobile-overlay,
  .admin-bar .mobile-drawer {
    top: 46px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hitz-header-height);
}

@media (min-width: 640px) {
  .header-inner {
    height: var(--hitz-header-height-sm);
  }
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hitz-white);
  font-size: 1.25rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

@media (min-width: 640px) {
  .logo-icon {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-name {
  display: block;
  color: var(--hitz-blue);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-sub {
  color: var(--hitz-gray);
  font-size: 0.8125rem;
  font-weight: 400;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  position: relative;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hitz-dark);
  transition: all 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--hitz-blue);
  background: var(--hitz-blue-light);
}

.desktop-nav a.current-menu-item,
.desktop-nav a[aria-current="page"] {
  color: var(--hitz-blue);
}

.desktop-nav a.current-menu-item::after,
.desktop-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--hitz-green);
  border-radius: 999px;
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--hitz-green);
  color: var(--hitz-dark);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

.header-cta:hover {
  background: var(--hitz-green-hover);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--hitz-blue);
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle:hover {
  background: var(--hitz-blue-light);
}

.mobile-toggle svg {
  width: 1.625rem;
  height: 1.625rem;
}

/* Hamburger icon lines */
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}

.hamburger-line+.hamburger-line {
  margin-top: 5px;
}

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20rem;
  max-width: 85vw;
  background: var(--hitz-white);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .mobile-drawer {
    display: none !important;
  }
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--hitz-border);
}

.drawer-header .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--hitz-gray);
  cursor: pointer;
  transition: background 0.2s ease;
}

.drawer-close:hover {
  background: var(--hitz-blue-light);
}

.drawer-close svg {
  width: 1.375rem;
  height: 1.375rem;
}

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hitz-dark);
  min-height: 3rem;
  transition: all 0.2s ease;
}

.drawer-nav a:hover,
.drawer-nav a:active {
  background: var(--hitz-gray-light);
}

.drawer-nav a.current-menu-item,
.drawer-nav a[aria-current="page"] {
  background: var(--hitz-blue-light);
  color: var(--hitz-blue);
}

.drawer-nav a .chevron {
  color: var(--hitz-gray);
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--hitz-border);
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem;
  background: var(--hitz-green);
  color: var(--hitz-dark);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 3rem;
  transition: background 0.2s ease;
}

.drawer-cta:hover {
  background: var(--hitz-green-hover);
}

/* ===========================
   Buttons (global, no shadows)
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--hitz-font);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
  min-height: 2.75rem;
}

.btn-primary {
  background: var(--hitz-green);
  color: var(--hitz-dark);
}

.btn-primary:hover {
  background: var(--hitz-green-hover);
  transform: scale(1.02);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--hitz-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--hitz-blue);
  border: 1px solid var(--hitz-border);
}

.btn-outline:hover {
  background: var(--hitz-blue-light);
}

.btn-outline-green {
  background: transparent;
  color: var(--hitz-green);
  border: 1px solid var(--hitz-green);
}

.btn-outline-green:hover {
  background: var(--hitz-green);
  color: var(--hitz-dark);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 61, 143, 0.9), rgba(10, 61, 143, 0.7), transparent);
}

.hero-overlay-bt {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 61, 143, 0.5), transparent);
}

.hero-content {
  position: relative;
  max-width: 42rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: rgba(212, 149, 42, 0.2);
  color: var(--hitz-green);
  border: 1px solid rgba(212, 149, 42, 0.3);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

.hero h1 {
  color: var(--hitz-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--hitz-green);
}

.hero-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
  position: relative;
  z-index: 10;
  margin-top: -4rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .stats-section {
    padding: 0 1.5rem;
  }
}

.stats-card {
  max-width: 72rem;
  margin: 0 auto;
  background: var(--hitz-white);
  border-radius: 1rem;
  border: 1px solid var(--hitz-border);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .stats-card {
    padding: 2rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

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

.stat-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  border-radius: 0.75rem;
  background: var(--hitz-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--hitz-blue);
}

.stat-value {
  display: block;
  color: var(--hitz-blue);
  font-size: 1.75rem;
  font-weight: 800;
}

.stat-label {
  color: var(--hitz-gray);
  font-size: 0.875rem;
}

/* ===========================
   Section Styles
   =========================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }
}

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

.section-bg-blue {
  background: var(--hitz-blue);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.section-label {
  display: block;
  color: var(--hitz-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--hitz-blue);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.section-link:hover {
  color: var(--hitz-blue-dark);
}

.section-link svg {
  width: 1rem;
  height: 1rem;
}

/* ===========================
   Match List
   =========================== */
.match-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.match-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--hitz-border);
  background: var(--hitz-white);
  transition: all 0.2s ease;
}

@media (min-width: 640px) {
  .match-item {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.match-item:hover {
  border-color: rgba(10, 61, 143, 0.2);
}

.match-date-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.match-date-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--hitz-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--hitz-white);
}

.match-date-icon .day {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}

.match-date-icon .month {
  font-size: 0.6875rem;
}

.match-time {
  color: var(--hitz-gray);
  font-size: 0.875rem;
}

.match-teams {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .match-teams {
    gap: 1rem;
  }
}

.match-team {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 400;
}

.match-team:first-child {
  text-align: right;
}

.match-team.highlight {
  color: var(--hitz-blue);
  font-weight: 600;
}

.match-vs {
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  background: var(--hitz-blue-light);
  color: var(--hitz-blue);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.match-result {
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--hitz-blue-light);
  color: var(--hitz-blue);
  font-size: 0.9375rem;
  font-weight: 700;
  min-width: 3.75rem;
  text-align: center;
  flex-shrink: 0;
}

.match-league {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--hitz-gray-light);
  color: var(--hitz-gray);
  font-size: 0.75rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* ===========================
   News / Card Grid
   =========================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--hitz-white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--hitz-border);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(10, 61, 143, 0.15);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-image .card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--hitz-blue);
  color: var(--hitz-white);
  font-size: 0.75rem;
  font-weight: 500;
}

.card-image .card-badge-green {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--hitz-green);
  color: var(--hitz-dark);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.card-image-text {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.card-image-text h3 {
  color: var(--hitz-white);
  font-size: 1.25rem;
  font-weight: 700;
}

.card-body {
  padding: 1.25rem;
}

.card-date {
  color: var(--hitz-gray);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  display: block;
}

.card-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.card:hover .card-body h3 {
  color: var(--hitz-blue);
}

.card-body p {
  color: var(--hitz-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card-meta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5rem;
  align-items: start;
}

.card-meta-label {
  color: var(--hitz-gray);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.card-meta-value {
  color: var(--hitz-dark);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===========================
   Page Hero
   =========================== */
.page-hero {
  position: relative;
  padding: 5rem 0 5rem;
  background: var(--hitz-blue);
  overflow: hidden;
  text-align: center;
}

@media (min-width: 640px) {
  .page-hero {
    padding: 7rem 0 7rem;
  }
}

.page-hero-decoration {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.page-hero .hero-badge {
  background: rgba(255, 255, 255, 0.1);
}

.page-hero h1 {
  color: var(--hitz-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}

/* ===========================
   Membership Pricing
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--hitz-white);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--hitz-blue);
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hitz-green);
  display: block;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--hitz-border);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.9375rem;
  color: var(--hitz-gray);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--hitz-green);
  font-weight: 700;
}

.cta-section {
  text-align: center;
}

.cta-section h2 {
  color: var(--hitz-white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

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

/* ===========================
   Filter Tabs
   =========================== */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
}

.filter-tab {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: var(--hitz-gray-light);
  color: var(--hitz-gray);
  font-family: var(--hitz-font);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 2.5rem;
}

.filter-tab:hover {
  background: var(--hitz-blue-light);
}

.filter-tab.active {
  background: var(--hitz-blue);
  color: var(--hitz-white);
}

/* ===========================
   Table
   =========================== */
.league-table {
  background: var(--hitz-white);
  border-radius: 0.75rem;
  border: 1px solid var(--hitz-border);
  overflow: hidden;
}

.league-table table {
  width: 100%;
  border-collapse: collapse;
}

.league-table thead tr {
  background: var(--hitz-blue);
  color: var(--hitz-white);
}

.league-table th {
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
}

.league-table th.center {
  text-align: center;
}

.league-table td {
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  border-top: 1px solid var(--hitz-border);
}

.league-table td.center {
  text-align: center;
}

.league-table tr.highlight {
  background: var(--hitz-blue-light);
}

.league-table tr.highlight td.team-name {
  color: var(--hitz-blue);
  font-weight: 600;
}

.league-table tr:hover:not(.highlight) {
  background: var(--hitz-bg-light);
}

.league-table .points {
  font-weight: 700;
  text-align: center;
}

/* ===========================
   Contact Form
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--hitz-bg-light);
  border: 1px solid var(--hitz-border);
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--hitz-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--hitz-blue);
}

.contact-info-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--hitz-gray);
  font-size: 0.875rem;
}

.contact-info-card a:hover {
  color: var(--hitz-blue);
}

.contact-form-wrap {
  background: var(--hitz-white);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--hitz-border);
}

@media (min-width: 640px) {
  .contact-form-wrap {
    padding: 2rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-label {
  display: block;
  margin-bottom: 0.375rem;
  color: var(--hitz-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-label .required {
  color: var(--hitz-red);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--hitz-border);
  background: var(--hitz-bg-light);
  color: var(--hitz-dark);
  font-family: var(--hitz-font);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--hitz-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 143, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox-wrap input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--hitz-blue);
}

.form-checkbox-wrap label {
  color: var(--hitz-gray);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-checkbox-wrap label a {
  color: var(--hitz-blue);
  text-decoration: underline;
}

/* ===========================
   Contact Grid
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

/* ===========================
   Pricing Cards (Unified)
   =========================== */

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--hitz-white);
}

.pricing-card h3 {
  color: var(--hitz-white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: block;
  color: var(--hitz-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-features {
  margin-bottom: 1.25rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.pricing-features li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--hitz-green);
  flex-shrink: 0;
}

/* ===========================
   About / Verein
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .about-grid.layout-reverse {
    direction: rtl;
  }

  .about-grid.layout-reverse>div {
    direction: ltr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.about-stats-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--hitz-blue);
  color: var(--hitz-white);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 25px rgba(10, 61, 143, 0.2);
}

@media (min-width: 1024px) {
  .about-stats-badge {
    bottom: -1.5rem;
    left: -1.5rem;
  }
}

.about-stats-badge .badge-value {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
}

.about-stats-badge .badge-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--hitz-border);
  background: var(--hitz-white);
  transition: all 0.2s ease;
}

.value-card:hover {
  border-color: rgba(10, 61, 143, 0.2);
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--hitz-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===========================
   Timeline
   =========================== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--hitz-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.625rem;
  top: 0.375rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--hitz-green);
  border: 2px solid var(--hitz-white);
}

.timeline-year {
  color: var(--hitz-blue);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.timeline-text {
  color: var(--hitz-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===========================
   Map Placeholder
   =========================== */
.map-placeholder {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--hitz-border);
  background: var(--hitz-blue-light);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.map-placeholder svg {
  width: 2rem;
  height: 2rem;
  color: var(--hitz-blue);
  margin: 0 auto 0.5rem;
}

.map-placeholder .address {
  color: var(--hitz-blue);
  font-size: 0.875rem;
  font-weight: 500;
}

.map-placeholder .sub {
  color: var(--hitz-gray);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--hitz-blue);
  color: var(--hitz-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-icon {
}

.footer-logo .logo-name {
  color: var(--hitz-white);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--hitz-green);
  color: var(--hitz-dark);
}

.footer-social a svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-heading {
  color: var(--hitz-green);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links li+li {
  margin-top: 0.625rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--hitz-green);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--hitz-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact span,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-contact a:hover {
  color: var(--hitz-white);
}

.footer-hours li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.footer-hours svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--hitz-green);
  flex-shrink: 0;
}

.footer-hours .hours-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-hours .day {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-hours .time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 0;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   404 Page
   =========================== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}

.error-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--hitz-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--hitz-blue);
  font-size: 2rem;
  font-weight: 800;
}

.error-page h1 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.error-page p {
  color: var(--hitz-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.error-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ===========================
   WordPress-specific
   =========================== */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

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

.aligncenter {
  display: block;
  margin: 0 auto 1rem;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.8125rem;
  color: var(--hitz-gray);
  text-align: center;
  margin-top: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}

.gallery-item {
  margin: 0;
}

/* Screen reader text for WordPress */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--hitz-green);
  clip: auto !important;
  clip-path: none;
  color: var(--hitz-dark);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Content area spacing */
.entry-content>*+* {
  margin-top: 1.5rem;
}

.entry-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.entry-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.entry-content p {
  line-height: 1.8;
}

.entry-content a {
  color: var(--hitz-blue);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--hitz-blue-dark);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
}

.entry-content ul {
  list-style-type: disc;
}

.entry-content ol {
  list-style-type: decimal;
}

.entry-content li+li {
  margin-top: 0.5rem;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

/* ===========================
   Utility Classes
   =========================== */
.text-white {
  color: var(--hitz-white);
}

.text-blue {
  color: var(--hitz-blue);
}

.text-green {
  color: var(--hitz-green);
}

.text-gray {
  color: var(--hitz-gray);
}

.bg-white {
  background: var(--hitz-white);
}

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

.bg-blue {
  background: var(--hitz-blue);
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-content {
  margin-top: var(--hitz-header-height);
}

@media (min-width: 640px) {
  .mt-content {
    margin-top: var(--hitz-header-height-sm);
  }
}

/* ===========================
   Legal Pages (Impressum, Datenschutz)
   =========================== */
.legal-content {
  max-width: 100%;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  color: var(--hitz-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-section h3 {
  color: var(--hitz-dark);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.legal-section p {
  color: var(--hitz-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--hitz-blue);
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: var(--hitz-green);
}

.legal-section strong {
  font-weight: 600;
  color: var(--hitz-dark);
}

.legal-subsection {
  margin-bottom: 1.5rem;
}

.legal-subsection:last-child {
  margin-bottom: 0;
}

.legal-update {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hitz-border);
}

.legal-update p {
  color: var(--hitz-gray);
  font-size: 0.875rem;
}

/* Container for legal pages */
.hitz-container-narrow {
  max-width: 56rem;
}

/* ===========================
   Hero Slider
   =========================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: min(800px, 85vh);
  overflow: hidden;
}

.hero-slider:focus {
  outline: none;
}

.hero-slider:focus-visible {
  outline: 3px solid var(--hitz-green);
  outline-offset: -3px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-slide-inner {
  max-width: 42rem;
}


.hero-slide-title {
  color: var(--hitz-white);
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-slide-title .accent {
  color: var(--hitz-green);
}

.hero-slide-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--hitz-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

@media (min-width: 640px) {
  .slider-arrow {
    width: 3rem;
    height: 3rem;
  }
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.slider-prev {
  left: 0.5rem;
}

.slider-next {
  right: 0.5rem;
}

@media (min-width: 640px) {
  .slider-prev {
    left: 1rem;
  }

  .slider-next {
    right: 1rem;
  }
}

/* Slider Controls (dots + play/pause) */
.slider-controls {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .slider-controls {
    bottom: 2rem;
    gap: 1rem;
  }
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .slider-dot {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
  width: 2rem;
  background: var(--hitz-green);
}

@media (min-width: 640px) {
  .slider-dot.active {
    width: 2.5rem;
  }
}

.slider-play-pause {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--hitz-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  padding: 0;
}

@media (min-width: 640px) {
  .slider-play-pause {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.slider-play-pause:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.slider-progress-bar {
  height: 100%;
  background: var(--hitz-green);
  width: 0%;
}



/* Contact Form 7 styling */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.25rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--hitz-border);
  background: var(--hitz-bg-light);
  color: var(--hitz-dark);
  font-family: var(--hitz-font);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--hitz-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 143, 0.15);
}

.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--hitz-green);
  color: var(--hitz-white);
  border: none;
  border-radius: 0.5rem;
  font-family: var(--hitz-font);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--hitz-green-hover);
}