/* ==========================================================================
   Maxis Schülerladen e.V. - Modernes Kids-Themed Styling mit Darkmode & Mobile-UX
   ========================================================================== */

:root {
  /* Farbpalette - Helles Design (Weiss, Bordeaux-Rot, Forest-Green, Charcoal) */
  --bordeaux: #701424;        /* Bordeaux-Rot */
  --bordeaux-hover: #520D1A;
  --forest-green: #1E4D2B;    /* Forest-Green */
  --forest-green-hover: #14351E;
  --charcoal: #212529;        /* Charcoal Text & Dark Elements */
  --charcoal-muted: #495057;

  --primary: var(--bordeaux);
  --primary-hover: var(--bordeaux-hover);
  --secondary: var(--forest-green);
  --secondary-hover: var(--forest-green-hover);
  --accent-yellow: #D9A01B;
  --accent-green: var(--forest-green);
  --accent-purple: #701424;

  --bg-main: #F8FAF9;         /* Weiss / Off-White Hintergrund */
  --bg-card: #FFFFFF;         /* Crisp White Karte */
  --bg-alt: #F0F4F2;          /* Sanfter hellgrün-grauer Bereich */

  --text-dark: var(--charcoal);
  --text-muted: var(--charcoal-muted);
  --text-light: #FFFFFF;

  --border-color: rgba(33, 37, 41, 0.12);
  --input-bg: #FAFAFA;
  --input-border: #CED4DA;

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(33, 37, 41, 0.06);
  --shadow-md: 0 8px 24px rgba(112, 20, 36, 0.12);
  --shadow-lg: 0 16px 32px rgba(33, 37, 41, 0.14);

  --font-family-body: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-heading: 'Comfortaa', 'Fredoka', 'Segoe UI', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Dunkelmodus - Dunkles Design (Charcoal, Mint-Green, Crisp-White) */
[data-theme="dark"] {
  --charcoal-dark: #141719;
  --charcoal-card: #1F2326;
  --charcoal-alt: #181B1D;
  --mint-green: #3EB489;
  --mint-green-hover: #52C89C;
  --crisp-white: #FFFFFF;

  --bg-main: var(--charcoal-dark);
  --bg-card: var(--charcoal-card);
  --bg-alt: var(--charcoal-alt);

  --text-dark: var(--crisp-white);
  --text-muted: #A0A6AD;
  --text-light: #FFFFFF;

  --primary: var(--mint-green);
  --primary-hover: var(--mint-green-hover);
  --secondary: var(--mint-green);
  --secondary-hover: var(--mint-green-hover);
  --accent-green: var(--mint-green);
  --accent-yellow: #F3C623;

  --border-color: rgba(255, 255, 255, 0.12);
  --input-bg: var(--charcoal-dark);
  --input-border: #343A40;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-body);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  font-feature-settings: "kern", "liga", "clig", "calt";
  transition: background-color var(--transition-normal), color var(--transition-normal);
  position: relative;
}

p {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus-visible {
  color: var(--primary-hover);
  text-decoration: underline;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-family-heading);
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Blocksatz (Justified Text) für Fließtext mit optimierter Silbentrennung & engen Wortlücken */
.hero-description,
.hero-text-card p,
.offer-card p,
.verein-info-box p,
.spenden-wrapper p,
.spenden-card p,
.hortalltag-text-block p,
.hortalltag-card p,
.anmeldung-card p,
.konzept-card p,
.paedagogik-card p,
.paedagogik-list li,
.werte-item p,
.amy-content p,
.anmeldung-highlight p,
.modal-body p,
.modal-body li,
.footer-brand p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-text-align-last: left;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-spacing: -0.015em;
}

h1 {
  font-size: clamp(1.4rem, 4vw + 0.6rem, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-wrapper h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary), var(--accent-yellow), var(--accent-green));
  border-radius: var(--border-radius-full);
  margin: 8px auto 0;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0.5rem auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  text-decoration: none !important;
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
  min-height: 48px;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--primary-hover);
  color: var(--text-light);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}

[data-theme="dark"] .site-header {
  background-color: rgba(20, 23, 25, 0.95);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: padding var(--transition-normal);
}

.site-header.scrolled .header-container {
  padding: 0.35rem 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;

  /* Eyecatcher Kasten Badge */
  background-color: var(--bg-card);
  padding: 0.5rem 1.1rem;
  border-radius: 0 0 16px 16px;
  border: 2px solid var(--border-color);
  border-top: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  top: 12px;
  margin-bottom: -12px;
  z-index: 1010;
  transition: all var(--transition-normal);
}

.brand-logo:hover {
  transform: translateY(2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  border-color: var(--primary);
}

.brand-logo-img {
  height: 76px;
  width: auto;
  max-height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

/* Scrolled Header State: Logo shrinks by ~40% for compact sticky navigation & box becomes invisible */
.site-header.scrolled .brand-logo {
  padding: 0.25rem 0.75rem;
  top: 0;
  margin-bottom: 0;
  font-size: 1.05rem;
  border-radius: 0;
  border-color: transparent;
  background-color: transparent;
  box-shadow: none;
}

.site-header.scrolled .brand-logo-img {
  height: 44px;
  max-height: 46px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Theme Toggle Button (Supports Auto, Light, Dark - Kompakt) */
.theme-toggle {
  background: var(--bg-alt);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-full);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background-color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
  color: var(--text-dark);
  touch-action: manipulation;
  flex-shrink: 0;
}

.theme-toggle:hover {
  transform: scale(1.08);
  border-color: var(--primary);
}

.theme-toggle .icon-auto,
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: none;
}

[data-theme-mode="auto"] .theme-toggle .icon-auto {
  display: block;
}

[data-theme-mode="light"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme-mode="dark"] .theme-toggle .icon-moon {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.4rem 0.15rem;
  font-size: 0.95rem;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--secondary);
  border-radius: var(--border-radius-full);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.25rem;
}

.nav-cta .btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  min-height: 40px;
}

.mobile-nav-toggle {
  display: none;
  background: var(--bg-alt);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  transition: background-color var(--transition-fast);
  touch-action: manipulation;
  min-height: 44px;
  min-width: 44px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 1.5rem 6rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-main) 100%);
  overflow: hidden;
  transition: background var(--transition-normal);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(30, 77, 43, 0.1);
  color: var(--forest-green);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 1.25rem;
}

[data-theme="dark"] .hero-badge {
  background-color: rgba(62, 180, 137, 0.15);
  color: var(--mint-green);
}

.hero-title span {
  color: var(--secondary);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

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

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-card {
  width: 100%;
  max-width: 460px;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--bg-alt);
  position: relative;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.hero-text-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.feature-pill-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-main);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-md);
  border-left: 5px solid var(--primary);
  transition: transform var(--transition-fast), background-color var(--transition-normal);
}

.feature-pill:nth-child(2) { border-left-color: var(--secondary); }
.feature-pill:nth-child(3) { border-left-color: var(--accent-yellow); }
.feature-pill:nth-child(4) { border-left-color: var(--accent-green); }

.feature-pill:hover {
  transform: translateX(6px);
}

.pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.pill-text {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pill-text h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.pill-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Decorative Waves */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Common Section Layout */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hort & Angebote */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.offer-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.offer-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.icon-blue { background-color: rgba(112, 20, 36, 0.1); color: var(--bordeaux); }
.icon-red { background-color: rgba(112, 20, 36, 0.1); color: var(--bordeaux); }
.icon-yellow { background-color: rgba(30, 77, 43, 0.1); color: var(--forest-green); }
.icon-green { background-color: rgba(30, 77, 43, 0.1); color: var(--forest-green); }

[data-theme="dark"] .icon-blue,
[data-theme="dark"] .icon-red,
[data-theme="dark"] .icon-yellow,
[data-theme="dark"] .icon-green {
  background-color: rgba(62, 180, 137, 0.15);
  color: var(--mint-green);
}

.offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.offer-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
}

/* Verein Section */
.verein-section {
  background-color: var(--bg-alt);
  position: relative;
  transition: background-color var(--transition-normal);
}

.verein-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.verein-info-box {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal);
}

.verein-info-box p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.board-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal);
}

.board-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed var(--border-color);
}

.board-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(112, 20, 36, 0.1);
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

[data-theme="dark"] .board-header-icon {
  background-color: rgba(62, 180, 137, 0.15);
  color: var(--mint-green);
}

.board-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.board-member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--bg-main);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color var(--transition-normal);
}

.board-member-icon {
  color: var(--primary);
}

/* Spenden Section */
.spenden-wrapper {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--forest-green) 100%);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 2.5rem;
  color: white;
  box-shadow: var(--shadow-md);
  text-align: center;
}

[data-theme="dark"] .spenden-wrapper {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-card) 100%);
  border: 2px solid var(--mint-green);
}

.spenden-wrapper h2 {
  color: white;
  margin-bottom: 1rem;
}

.spenden-wrapper h2::after {
  background: white;
}

.spenden-wrapper p {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.spenden-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.spenden-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.spenden-card h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spenden-card p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

/* Kontakt Section */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.kontakt-info-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background-color: rgba(112, 20, 36, 0.1);
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

[data-theme="dark"] .info-icon {
  background-color: rgba(62, 180, 137, 0.15);
  color: var(--mint-green);
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-text p, .info-text a {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Formular */
.form-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--input-border);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-normal), color var(--transition-normal);
  background-color: var(--input-bg);
  color: var(--text-dark);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(112, 20, 36, 0.15);
}

[data-theme="dark"] .form-input:focus, [data-theme="dark"] .form-textarea:focus {
  box-shadow: 0 0 0 4px rgba(62, 180, 137, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-alert {
  padding: 0;
  border-radius: var(--border-radius-sm);
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-weight: 600;
  font-size: 0.95rem;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
  border: 1px solid transparent;
}

.form-alert.success,
.form-alert.error {
  max-height: 450px;
  opacity: 1;
  margin-top: 1.25rem;
  padding: 1.25rem;
}

.form-alert.success {
  background-color: rgba(30, 77, 43, 0.1);
  color: var(--forest-green);
  border: 1px solid var(--forest-green);
}

[data-theme="dark"] .form-alert.success {
  background-color: rgba(62, 180, 137, 0.15);
  color: var(--mint-green);
  border: 1px solid var(--mint-green);
}

.form-alert.error {
  background-color: rgba(112, 20, 36, 0.1);
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
}

[data-theme="dark"] .form-alert.error {
  background-color: rgba(255, 118, 118, 0.15);
  color: #FF7676;
  border: 1px solid #FF7676;
}

/* Honeypot Spam Protection (Hidden from human users) */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* Modals for Impressum & Datenschutz */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1rem;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  overflow: hidden;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-alt);
}

.modal-header h3 {
  font-size: 1.35rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: 50%;
  line-height: 1;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  touch-action: manipulation;
}

.modal-close:hover {
  color: var(--text-dark);
  background-color: rgba(0, 0, 0, 0.08);
}

.modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal-body h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.modal-body p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background-color: #141719;
  color: #A0A6AD;
  padding: 3.5rem 1.5rem 2rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  max-width: 360px;
  line-height: 1.6;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: #94A3B8;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

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

/* 5:4 Image Placeholders & Gallery Styling */
.img-placeholder-54 {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  background-color: var(--bg-alt);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 0.6rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: background-color var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  user-select: none;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

/* ==========================================================================
   Image Carousel Styling
   ========================================================================== */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--border-radius-lg);
  touch-action: pan-y;
  cursor: grab;
}

.carousel-track-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 33.333%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}

.carousel-btn {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
  z-index: 10;
  flex-shrink: 0;
  touch-action: manipulation;
}

.carousel-btn:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  padding: 0;
}

.carousel-indicator.active {
  background-color: var(--primary);
  transform: scale(1.25);
}

/* ==========================================================================
   Lightbox Modal Styling
   ========================================================================== */
.lightbox-modal {
  padding: 0;
}

.lightbox-container {
  position: relative;
  max-width: 900px;
  width: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  border-radius: var(--border-radius-md);
}

.lightbox-caption {
  margin-top: 0.75rem;
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.lightbox-close {
  position: absolute;
  top: -24px;
  right: -12px;
  background: var(--secondary);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 2010;
  transition: transform var(--transition-fast);
}

.lightbox-close:hover {
  transform: scale(1.15);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-dark);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 2005;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.lightbox-prev {
  left: -24px;
}

.lightbox-next {
  right: -24px;
}

.lightbox-nav:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}

/* ==========================================================================
   Hortalltag, Wochenplan, Anmeldeverfahren & Konzept Styling
   ========================================================================== */

.hortalltag-section {
  background-color: var(--bg-alt);
  transition: background-color var(--transition-normal);
}

.hortalltag-intro-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  transition: background-color var(--transition-normal);
}

.hortalltag-img-wrapper {
  height: 100%;
  max-height: 380px;
  overflow: hidden;
}

.hortalltag-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.hortalltag-intro-card:hover .hortalltag-banner-img {
  transform: scale(1.03);
}

.hortalltag-text-block {
  padding: 2.5rem;
}

.hortalltag-text-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hortalltag-text-block p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hortalltag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hortalltag-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: background-color var(--transition-normal);
  position: relative;
}

.card-badge-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hortalltag-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hortalltag-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

/* Wochenplan Box */
.wochenplan-box {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 3px dashed var(--primary);
  margin-top: 4rem;
  transition: background-color var(--transition-normal);
}

.wochenplan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.wochenplan-header h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.wochenplan-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

.day-card {
  background-color: var(--bg-main);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1rem;
  border-top: 4px solid var(--primary);
  transition: transform var(--transition-fast);
}

.day-card:nth-child(2) { border-top-color: var(--secondary); }
.day-card:nth-child(3) { border-top-color: var(--accent-yellow); }
.day-card:nth-child(4) { border-top-color: var(--accent-purple); }
.day-card:nth-child(5) { border-top-color: var(--accent-green); }

.day-card:hover {
  transform: translateY(-4px);
}

.day-name {
  display: block;
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.day-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.day-card ol {
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.day-card ol li {
  margin-bottom: 0.4rem;
}

.wochenplan-footer-note {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* Anmeldeverfahren & Konzept Styling */
.anmeldung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.anmeldung-card, .konzept-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color var(--transition-normal);
}

.anmeldung-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.anmeldung-card h3, .konzept-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.anmeldung-highlight {
  background-color: var(--bg-main);
  border-left: 4px solid var(--secondary);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-sm);
  margin: 1.25rem 0;
}

.anmeldung-highlight p {
  font-size: 0.95rem;
  margin: 0;
}

/* Pädagogik, Unsere Werte & Amy Horthund Styling */
.paedagogik-section {
  background-color: var(--bg-alt);
  transition: background-color var(--transition-normal);
}

.paedagogik-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.paedagogik-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: background-color var(--transition-normal);
}

.paedagogik-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.paedagogik-icon {
  font-size: 2.2rem;
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-family-body);
}

.paedagogik-list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
}

.paedagogik-list li {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.werte-box-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.werte-item {
  background-color: var(--bg-main);
  padding: 1.1rem 1.25rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--primary);
  transition: background-color var(--transition-normal);
}

.werte-item:nth-child(2) { border-left-color: var(--secondary); }
.werte-item:nth-child(3) { border-left-color: var(--accent-yellow); }
.werte-item:nth-child(4) { border-left-color: var(--forest-green); }

.werte-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.werte-item p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin: 0;
}

/* Amy Horthund Card */
.amy-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: background-color var(--transition-normal);
}

.amy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .amy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.amy-img-wrapper {
  width: 100%;
}

.amy-header h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.amy-content p {
  font-size: 1.025rem;
  color: var(--text-dark);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization (Portrait & Landscape)
   ========================================================================== */

@media (max-width: 1080px) {
  .header-container {
    padding: 0.5rem 1rem;
  }

  .site-header.scrolled .header-container {
    padding: 0.25rem 0.75rem;
  }

  /* Switch Navigation to Mobile Drawer */
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background-color: var(--bg-card);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    gap: 1rem;
    align-items: stretch;
    text-align: center;
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    display: block;
    padding: 0.75rem;
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero-container, .verein-content-grid, .kontakt-grid, .hortalltag-intro-card, .hortalltag-grid, .anmeldung-grid, .paedagogik-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-description {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .illustration-card {
    margin: 0 auto;
  }

  .hortalltag-img-wrapper {
    max-height: 260px;
  }

  .hero {
    padding: 3.5rem 1.5rem 4.5rem;
  }

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

/* Optimierung für Tablet / Mobile Landscape (600px - 1080px) */
@media (min-width: 600px) and (max-width: 1080px) {
  .verein-content-grid,
  .kontakt-grid,
  .hortalltag-grid,
  .anmeldung-grid,
  .paedagogik-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .hortalltag-intro-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .brand-logo {
    font-size: 1.05rem;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 0 0 12px 12px;
    top: 8px;
    margin-bottom: -8px;
  }

  .brand-logo-img {
    height: 50px;
    max-height: 54px;
  }

  .site-header.scrolled .brand-logo {
    font-size: 0.92rem;
    padding: 0.2rem 0.5rem;
    top: 0;
    margin-bottom: 0;
    border-radius: 0;
    border-color: transparent;
    background-color: transparent;
    box-shadow: none;
  }

  .site-header.scrolled .brand-logo-img {
    height: 32px;
    max-height: 34px;
  }

  /* Typography & Spacing scaling for Mobile */
  .section-title-wrapper {
    margin-bottom: 2rem;
  }

  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.975rem;
  }

  .hero-text-card h3,
  .paedagogik-card h3,
  .anmeldung-card h3,
  .konzept-card h3,
  .hortalltag-card h3,
  .offer-card h3,
  .amy-header h3,
  .wochenplan-header h3,
  .hortalltag-text-block h3 {
    font-size: 1.18rem;
  }

  .paedagogik-card,
  .anmeldung-card,
  .konzept-card,
  .wochenplan-box,
  .hortalltag-card,
  .hortalltag-text-block,
  .amy-card,
  .kontakt-info-card,
  .form-card,
  .verein-info-box,
  .board-card,
  .offer-card,
  .illustration-card {
    padding: 1.5rem;
  }

  .paedagogik-grid,
  .anmeldung-grid,
  .hortalltag-grid,
  .verein-content-grid,
  .kontakt-grid {
    gap: 1.75rem;
  }

  .wochenplan-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .board-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .spenden-wrapper {
    padding: 2.25rem 1.5rem;
  }

  .spenden-wrapper p {
    font-size: 1rem;
  }

  .modal-content {
    max-height: 90vh;
  }

  .modal-header {
    padding: 1rem 1.25rem;
  }

  .modal-body {
    padding: 1.25rem;
  }
}

@media (max-width: 600px) {
  /* Auf Mobilgeräten <= 600px wird die Text-Spanne im Logo ausgeblendet, da das SVG-Logo den Text bereits enthält */
  .brand-logo span {
    display: none;
  }

  /* Auf schmalen Smartphones verhindert Linksbündigkeit vergrößerte Wortlücken im Blocksatz */
  .hero-description,
  .hero-text-card p,
  .offer-card p,
  .verein-info-box p,
  .spenden-wrapper p,
  .spenden-card p,
  .hortalltag-text-block p,
  .hortalltag-card p,
  .anmeldung-card p,
  .konzept-card p,
  .paedagogik-card p,
  .paedagogik-list li,
  .werte-item p,
  .amy-content p,
  .anmeldung-highlight p,
  .modal-body p,
  .modal-body li,
  .footer-brand p {
    text-align: left;
    text-align-last: left;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .hero {
    padding: 2.5rem 1rem 3.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    text-align: center;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .paedagogik-card,
  .anmeldung-card,
  .konzept-card,
  .wochenplan-box,
  .hortalltag-card,
  .hortalltag-text-block,
  .amy-card,
  .kontakt-info-card,
  .form-card,
  .verein-info-box,
  .board-card,
  .offer-card,
  .illustration-card {
    padding: 1.15rem 0.9rem;
  }

  .hero-text-card h3,
  .paedagogik-card h3,
  .anmeldung-card h3,
  .konzept-card h3,
  .hortalltag-card h3,
  .offer-card h3,
  .amy-header h3,
  .wochenplan-header h3,
  .hortalltag-text-block h3 {
    font-size: 1.08rem;
  }

  .wochenplan-box {
    padding: 1.15rem 0.75rem;
  }

  .wochenplan-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .day-card {
    padding: 0.85rem 0.75rem;
  }

  .day-name {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.925rem;
    padding: 0.75rem 1.25rem;
    min-height: 44px;
  }

  .brand-logo {
    font-size: 0.95rem;
    padding: 0.3rem 0.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .spenden-cards {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}
