/* ==========================================================================
   DARTCLUB ALPENGLÜHEN - MODERN SPORTS DESIGN SYSTEM
   DSGVO-konform: 100% lokale Schriften & Assets
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. LOKALE FONTS (DSGVO-KONFORM, KEIN GOOGLE CDN)
   -------------------------------------------------------------------------- */
/* Montserrat - Headings */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/montserrat-400-latin.woff2') format('woff2'),
       url('./assets/fonts/montserrat-400-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./assets/fonts/montserrat-600-latin.woff2') format('woff2'),
       url('./assets/fonts/montserrat-600-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/montserrat-700-latin.woff2') format('woff2'),
       url('./assets/fonts/montserrat-700-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./assets/fonts/montserrat-800-latin.woff2') format('woff2'),
       url('./assets/fonts/montserrat-800-latin-ext.woff2') format('woff2');
}

/* Inter - Body Text */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/inter-400-latin.woff2') format('woff2'),
       url('./assets/fonts/inter-400-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./assets/fonts/inter-500-latin.woff2') format('woff2'),
       url('./assets/fonts/inter-500-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./assets/fonts/inter-600-latin.woff2') format('woff2'),
       url('./assets/fonts/inter-600-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/inter-700-latin.woff2') format('woff2'),
       url('./assets/fonts/inter-700-latin-ext.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Slate Blue Palette (Header, Footer, Accents, Dark Hero) */
  --slate-950: #0a0f16;
  --slate-900: #101924;
  --slate-850: #152232;
  --slate-800: #1c2c3f;
  --slate-700: #2a3e56;
  --slate-600: #425b7a;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;

  /* Warm Orange Palette (Alpenglühen Accent) */
  --orange-600: #c2410c;
  --orange-500: #ea580c;
  --orange-400: #f97316;
  --orange-300: #fdba74;
  --orange-100: #ffedd5;
  --orange-50:  #fff7ed;
  --orange-glow: rgba(234, 88, 12, 0.28);
  --orange-glow-light: rgba(249, 115, 22, 0.12);

  /* Cream / Broken White Palette (Inhaltsbereiche) */
  --cream-base: #fbf9f5;
  --cream-light: #ffffff;
  --cream-muted: #f4efe6;
  --cream-border: #e8e3d8;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Layout */
  --container-max: 1180px;
  --container-narrow: 840px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(16, 25, 36, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(16, 25, 36, 0.08), 0 2px 6px -1px rgba(16, 25, 36, 0.04);
  --shadow-lg: 0 16px 36px -6px rgba(16, 25, 36, 0.12), 0 6px 12px -2px rgba(16, 25, 36, 0.06);
  --shadow-glow: 0 8px 24px var(--orange-glow);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   3. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-850);
  background-color: var(--cream-base);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

button, input, textarea, select {
  font: inherit;
}

/* --------------------------------------------------------------------------
   4. UTILITY & CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

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

.section--white {
  background-color: var(--cream-light);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.section--dark {
  background-color: var(--slate-900);
  color: #ffffff;
}

/* Section Headings */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge--orange {
  background-color: var(--orange-glow-light);
  color: var(--orange-500);
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.badge--dark {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--orange-300);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--orange-500);
  box-shadow: 0 0 8px var(--orange-500);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.section--dark .section-title {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.section--dark .section-subtitle {
  color: var(--slate-400);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--slate-100);
  color: var(--slate-850);
  border: 1px solid var(--slate-200);
}

.btn--secondary:hover {
  background: var(--slate-200);
  color: var(--slate-950);
}

.btn--block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. NAVIGATION / HEADER (SLATE BLUE BLUR)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(16, 25, 36, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo {
  width: auto;
  height: 46px;
  max-width: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.header__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__name-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange-400);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-300);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav__link:hover,
.nav__link.active {
  color: #ffffff;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange-500);
  transition: width var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #ffffff;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

@media (max-width: 868px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--slate-900);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    text-align: center;
  }

  .nav__link {
    font-size: 1.05rem;
  }

  .header__cta {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (ATMOSPHERIC SLATE BLUE WITH ALPENGLOW GLOW)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 50% 30%, #1f3248 0%, var(--slate-900) 65%, var(--slate-950) 100%);
  color: #ffffff;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 100px;
  text-align: center;
  overflow: hidden;
}

/* Subtle background glowing orb */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.18) 0%, rgba(234, 88, 12, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero__logo-wrapper {
  margin: 0 auto 36px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero__logo {
  width: auto;
  height: 280px;
  max-width: 90vw;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 45px rgba(234, 88, 12, 0.42));
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.hero__logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 55px rgba(234, 88, 12, 0.55));
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }
  .hero__logo {
    height: 210px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.85rem;
  }
  .hero__logo {
    height: 180px;
  }
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--slate-300);
  max-width: 640px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1.05rem;
  }
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.hero__feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-300);
}

.hero__feature-icon {
  color: var(--orange-400);
  display: flex;
  align-items: center;
}

/* --------------------------------------------------------------------------
   7. ÜBER UNS SECTION (ZWEISPALTIG)
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text__lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--slate-800);
  font-weight: 500;
  margin-bottom: 24px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-highlight__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--orange-glow-light);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.about-highlight__desc {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-border);
  aspect-ratio: 4 / 3;
}

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

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.about-image__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(16, 25, 36, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.about-image__badge-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

.about-image__badge-sub {
  font-size: 0.72rem;
  color: var(--slate-300);
}

/* --------------------------------------------------------------------------
   8. TRAINING & LOCATION (3 MINIMALISTISCHE KARTEN)
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.info-card {
  background-color: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background-color var(--transition-fast);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(234, 88, 12, 0.3);
}

.info-card:hover::before {
  background: linear-gradient(90deg, var(--orange-400), var(--orange-500));
}

.info-card__icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--slate-900);
  color: var(--orange-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(16, 25, 36, 0.15);
}

.info-card__icon-box svg {
  width: 28px;
  height: 28px;
}

.info-card__tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-500);
  margin-bottom: 6px;
}

.info-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 14px;
}

.info-card__primary-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-850);
  margin-bottom: 8px;
}

.info-card__description {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.info-card__footer {
  padding-top: 16px;
  border-top: 1px dashed var(--cream-border);
  font-size: 0.85rem;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card__footer svg {
  color: var(--orange-500);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. KONTAKT SECTION (HEADLINE, FORMULAR, SOCIALS)
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 868px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-card {
  background-color: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-md);
}

@media (max-width: 560px) {
  .contact-card {
    padding: 24px;
  }
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-850);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  background-color: #ffffff;
  color: var(--slate-900);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px var(--orange-glow-light);
}

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

.form-help {
  font-size: 0.78rem;
  color: var(--slate-400);
  margin-top: 6px;
}

/* Form success message */
.form-feedback {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 16px;
  align-items: center;
  gap: 12px;
}

.form-feedback.is-visible {
  display: flex;
}

/* Contact Info Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-box {
  background-color: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}

.sidebar-box__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.sidebar-box__desc {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--cream-muted);
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-border);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--orange-500);
  color: #ffffff;
  border-color: var(--orange-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--orange-glow);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.direct-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.direct-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--slate-700);
}

.direct-contact-item svg {
  color: var(--orange-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.direct-contact-item strong {
  color: var(--slate-900);
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.contact-featured-card {
  background-color: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-500));
}

.contact-featured-card__header {
  margin-bottom: 28px;
}

.contact-featured-card__title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.contact-featured-card__desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.email-highlight-box {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.08) 0%, rgba(234, 88, 12, 0.03) 100%);
  border: 1.5px solid rgba(234, 88, 12, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.email-highlight-box__email {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-600);
  word-break: break-all;
}

.contact-social-card {
  background-color: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.badge--upcoming {
  background-color: var(--slate-100);
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   10. FOOTER (DARK SLATE BLUE)
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--slate-950);
  color: var(--slate-400);
  padding: 64px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  width: auto;
  height: 52px;
  max-width: 55px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--slate-400);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--slate-300);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--orange-400);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 0.85rem;
  color: var(--slate-500);
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   11. MODAL / DIALOG (IMPRESSUM & DATENSCHUTZ SPA)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 15, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: #ffffff;
  color: var(--slate-850);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.is-active .modal-container {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background-color: var(--slate-900);
  color: #ffffff;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--slate-400);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: #ffffff;
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-700);
}

.modal-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 20px;
  margin-bottom: 8px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: 12px;
}

.modal-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  justify-content: flex-end;
  background-color: var(--slate-100);
}
