/* ==========================================================================
   Simsonfreunde Hannover - Modern Minimalist Design 2026
   ========================================================================== */

/* Font Face Declarations (Local Fonts)
   ========================================================================== */

/* Montserrat - Display Font */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Open Sans - Body Font */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/opensans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/opensans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* CSS Custom Properties
   ========================================================================== */
:root {
  /* Colors - Rich Dark with Warmth */
  --color-primary: #E63946;
  --color-primary-glow: rgba(230, 57, 70, 0.4);
  --color-accent: #F4A261;
  --color-accent-glow: rgba(244, 162, 97, 0.3);

  --color-bg: #0A0A0B;
  --color-bg-elevated: rgba(255, 255, 255, 0.03);
  --color-bg-glass: rgba(255, 255, 255, 0.05);
  --color-bg-glass-hover: rgba(255, 255, 255, 0.08);

  --color-text: #FAFAFA;
  --color-text-secondary: rgba(255, 255, 255, 0.6);
  --color-text-tertiary: rgba(255, 255, 255, 0.4);

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Sizing */
  --container-width: 1400px;
  --logo-size-hero: 700px;
  --logo-size-sticky: 50px;

  /* Effects */
  --blur-glass: 20px;
  --blur-glow: 60px;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-primary);
  color: white;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-display {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.text-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

.text-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

.text-body-lg {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
}

.text-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-tertiary);
}

/* Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

section {
  position: relative;
  padding: var(--space-3xl) 0;
}

/* Sticky Logo Header
   ========================================================================== */
.sticky-logo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: var(--space-md);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.sticky-logo--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-logo__inner {
  background: var(--color-bg-glass);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.sticky-logo__img {
  height: var(--logo-size-sticky);
  width: auto;
  transition: transform var(--transition-bounce);
}

.sticky-logo__inner:hover .sticky-logo__img {
  transform: scale(1.1);
}

.sticky-logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  display: none;
}

@media (min-width: 768px) {
  .sticky-logo__text {
    display: block;
  }
}

/* Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

/* Slideshow Background */
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
}

/* 8 Bilder à 12 Sekunden = 96 Sekunden Gesamtdauer */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: slideshow 96s infinite;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 96s infinite;
}

/* Animation-Delays für 8 Bilder (je 12 Sekunden) */
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 12s; }
.hero__slide:nth-child(3) { animation-delay: 24s; }
.hero__slide:nth-child(4) { animation-delay: 36s; }
.hero__slide:nth-child(5) { animation-delay: 48s; }
.hero__slide:nth-child(6) { animation-delay: 60s; }
.hero__slide:nth-child(7) { animation-delay: 72s; }
.hero__slide:nth-child(8) { animation-delay: 84s; }

.hero__slide:nth-child(1) img { animation-delay: 0s; }
.hero__slide:nth-child(2) img { animation-delay: 12s; }
.hero__slide:nth-child(3) img { animation-delay: 24s; }
.hero__slide:nth-child(4) img { animation-delay: 36s; }
.hero__slide:nth-child(5) img { animation-delay: 48s; }
.hero__slide:nth-child(6) img { animation-delay: 60s; }
.hero__slide:nth-child(7) img { animation-delay: 72s; }
.hero__slide:nth-child(8) img { animation-delay: 84s; }

@keyframes slideshow {
  /* 12s von 96s = 12.5% pro Bild */
  0% { opacity: 0; }
  1% { opacity: 1; }
  11.5% { opacity: 1; }
  12.5% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes kenburns {
  0% { transform: scale(1); }
  12.5% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Hero Overlay with Gradient */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center top, transparent 0%, var(--color-bg) 70%),
    linear-gradient(to bottom,
      rgba(10, 10, 11, 0.3) 0%,
      rgba(10, 10, 11, 0.5) 50%,
      var(--color-bg) 100%
    );
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.hero__logo {
  width: var(--logo-size-hero);
  max-width: 85vw;
  filter: drop-shadow(0 0 var(--blur-glow) var(--color-primary-glow));
  animation: logoFloat 6s ease-in-out infinite, fadeIn 1s ease-out;
}

@media (max-width: 767px) {
  .hero__logo {
    width: 80vw;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    width: 85vw;
    max-width: 320px;
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__title {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__title span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__motto {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-tertiary);
  animation: fadeIn 1s ease-out 1s both;
}

.hero__scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-text-tertiary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header__label {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

/* Glass Card Component
   ========================================================================== */
.glass-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-light);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

/* About Section - Bento Grid
   ========================================================================== */
.about {
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(230, 57, 70, 0.02) 50%, var(--color-bg) 100%);
}

.about__intro {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.about__intro p {
  color: var(--color-text-secondary);
}

.about__highlight {
  color: var(--color-accent);
  font-weight: 600;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

  .bento-grid__item--wide {
    grid-column: span 2;
  }

  .bento-grid__item--tall {
    grid-row: span 2;
  }
}

.bento-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-height: 200px;
}

.bento-item__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.bento-item__title {
  font-size: 1.25rem;
  font-weight: 600;
}

.bento-item__text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Stammtisch Section
   ========================================================================== */
.stammtisch {
  background: var(--color-bg);
}

.stammtisch__intro {
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.stammtisch__intro p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

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

/* Full Width Info Card */
.info-card--full {
  max-width: 100%;
}

.info-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .info-card__grid {
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
  }
}

/* Maps Link */
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  transition: all var(--transition-smooth);
  justify-self: start;
}

.maps-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px var(--color-primary-glow);
}

.maps-link__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Termine Section */
.termine-title {
  text-align: center;
  font-size: 1.5rem;
  margin: var(--space-xl) 0 var(--space-lg);
  color: var(--color-text);
}

.termine-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

/* Termin Card */
.termin-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-smooth);
}

.termin-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-light);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.termin-card--holiday {
  opacity: 0.5;
  background: var(--color-bg-elevated);
}

.termin-card--holiday:hover {
  transform: none;
  box-shadow: none;
}

.termin-card__weekday {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-xs);
}

.termin-card__date {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.termin-card--holiday .termin-card__date {
  background: none;
  -webkit-text-fill-color: var(--color-text-tertiary);
  color: var(--color-text-tertiary);
}

.termin-card__month {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

.termin-card__holiday-badge {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
}

.info-card {
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  border-radius: 4px 0 0 4px;
}

.info-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.info-card__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.info-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-card__detail {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.info-card__detail-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.info-card__detail strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
}

/* Termine Tags */
.termine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.termin-tag {
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-smooth);
}

.termin-tag:hover {
  border-color: var(--color-primary);
  background: rgba(230, 57, 70, 0.1);
}

/* Info Card Note */
.info-card__note {
  margin-top: var(--space-md);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* News Section
   ========================================================================== */
.news {
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(244, 162, 97, 0.02) 50%, var(--color-bg) 100%);
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.news-card {
  overflow: hidden;
  padding: 0;
}

.news-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.news-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-bg-glass), transparent);
}

.news-card__content {
  padding: var(--space-lg);
}

.news-card__date {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-card__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.news-card__text {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Section
   ========================================================================== */
.contact {
  background: var(--color-bg);
  text-align: center;
}

.contact__content {
  max-width: 600px;
  margin: 0 auto;
}

.contact__text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.contact__email-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 40px -10px var(--color-primary-glow);
}

.contact__email-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px -15px var(--color-primary-glow);
}

.contact__email-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact__social-label {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-tertiary);
  font-size: 0.9rem;
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.contact__social-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all var(--transition-smooth);
}

.contact__social-btn:hover {
  background: var(--color-bg-glass-hover);
  border-color: var(--color-border-light);
  transform: translateY(-2px);
}

.contact__social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Impressum Section
   ========================================================================== */
.impressum {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.impressum__content {
  max-width: 1000px;
  margin: 0 auto;
}

.impressum__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.impressum__block h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.impressum__block p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

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

.impressum__block a {
  color: var(--color-primary);
  transition: color var(--transition-smooth);
}

.impressum__block a:hover {
  color: var(--color-accent);
}

/* Footer
   ========================================================================== */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__logo {
  height: 60px;
  margin: 0 auto var(--space-lg);
  opacity: 0.6;
  transition: opacity var(--transition-smooth);
}

.footer__logo:hover {
  opacity: 1;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all var(--transition-smooth);
}

.footer__social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer__social-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition-smooth);
}

.footer__social-link:hover .footer__social-icon {
  opacity: 1;
}

.footer__links {
  margin-bottom: var(--space-lg);
}

.footer__link {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-smooth);
}

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

.footer__copyright {
  color: var(--color-text-tertiary);
  font-size: 0.8rem;
}

/* Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-glass);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  z-index: 99;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

/* Animations
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger--visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Glow Effects */
.glow-primary {
  box-shadow: 0 0 var(--blur-glow) var(--color-primary-glow);
}

.glow-accent {
  box-shadow: 0 0 var(--blur-glow) var(--color-accent-glow);
}

/* Responsive Utilities
   ========================================================================== */
@media (max-width: 767px) {
  section {
    padding: var(--space-2xl) 0;
  }

  .hero__logo {
    --logo-size-hero: 200px;
  }
}
