/* ==========================================================================
   Angelverein – Iframe-Seiten Stylesheet
   Designed for embedding in Ilch CMS via iframe
   ========================================================================== */

:root {
  --color-primary: #4A6B8A;
  --color-primary-dark: #3A5570;
  --color-primary-light: #5D7F9E;
  --color-secondary: #D4A854;
  --color-secondary-dark: #B8923F;
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-family);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray-800);
  background: transparent;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

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

/* ==========================================================================
   Shared / Layout
   ========================================================================== */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 2rem 0;
}

.section--light {
  background: var(--color-gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem 1rem;
}

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

.section__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-gray-800);
  margin-bottom: 0.4rem;
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--color-gray-500);
}

.section__cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

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

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

/* ==========================================================================
   App Container (Schonzeiten, Fangbarometer)
   ========================================================================== */

.app {
  padding: 14px;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Toolbar / Filter ── */
.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 14px;
}

.field { min-width: 200px; flex: 1; }

label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

input, select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-gray-800);
  background: var(--color-white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 107, 138, 0.15);
}

/* ── Tables ── */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

th, td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid var(--color-gray-100);
  vertical-align: top;
}

th {
  text-align: left;
  background: var(--color-gray-50);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

tr:last-child td { border-bottom: none; }

tr.active {
  background: rgba(245, 158, 11, 0.08);
}

tr:hover {
  background: rgba(74, 107, 138, 0.04);
}

tr.active:hover {
  background: rgba(245, 158, 11, 0.12);
}

/* ── Warn Box ── */
.warn {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
  margin: 0 0 14px;
  font-size: 0.9rem;
}

.warn.show {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

/* ── Chips / Badges ── */
.chip {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.chip--warn {
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
}

.chip--ok {
  border: 1px solid rgba(22, 163, 74, 0.3);
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}

.chip--danger {
  border: 1px solid rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
}

.chip--major {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}

.chip--minor {
  background: var(--color-gray-200);
  color: var(--color-gray-700);
}

/* ── Links ── */
.link {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ── Cards (Fangbarometer) ── */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1.4rem;
  margin-bottom: 14px;
}

.card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-gray-800);
}

/* ── Score Ring ── */
.score-ring {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.score-ring__circle {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.score-ring__circle svg {
  transform: rotate(-90deg);
}

.score-ring__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
}

.score-ring__info {
  flex: 1;
}

.score-ring__label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.score-ring__sub {
  font-size: 0.85rem;
  color: var(--color-gray-500);
}

/* ── Time Windows ── */
.windows {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 0.8rem;
}

.window {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-md);
  background: var(--color-gray-50);
  font-size: 0.85rem;
}

.window__time {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── Forecast Days ── */
.forecast {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 6px;
  margin-top: 0.8rem;
}

.forecast__day {
  text-align: center;
  padding: 0.6rem 0.3rem;
  border-radius: var(--radius-md);
  background: var(--color-gray-50);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 150ms ease;
}

.forecast__day:hover, .forecast__day.selected {
  border-color: var(--color-primary);
}

.forecast__day-name {
  font-size: 0.72rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
}

.forecast__day-date {
  font-size: 0.8rem;
  font-weight: 700;
}

.forecast__day-score {
  font-size: 1rem;
  font-weight: 800;
  margin-top: 0.2rem;
}

.forecast__day-moon {
  font-size: 1.2rem;
  line-height: 1;
}

/* ── Schonzeit-Badge in Fangbarometer ── */
.closed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.closed-badge--active {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #991b1b;
}

.closed-badge--ok {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #166534;
}

/* ── Fish Select (Fangbarometer) ── */
.fish-select {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 14px;
}

.fish-select .field { min-width: 220px; }

/* ==========================================================================
   Gewässer (water cards)
   ========================================================================== */

.waters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.water-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.water-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.water-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--color-gray-100);
}

.water-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.water-card__content {
  padding: 1.2rem;
}

.water-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-gray-800);
}

.water-card__description {
  font-size: 0.88rem;
  color: var(--color-gray-600);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.water-card__fish {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.water-card__fish li {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(74, 107, 138, 0.1);
  color: var(--color-primary-dark);
}

/* ==========================================================================
   Termine (event cards)
   ========================================================================== */

.events {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
  transition: box-shadow 200ms ease;
}

.event-card:hover {
  box-shadow: var(--shadow-md);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 62px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.event-card__day {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
}

.event-card__month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card__content {
  flex: 1;
}

.event-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--color-gray-800);
}

.event-card__description {
  font-size: 0.88rem;
  color: var(--color-gray-600);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.event-card__time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
}

.event-card__time svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Galerie
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-gray-100);
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   Ueber uns
   ========================================================================== */

.about {
  max-width: 720px;
  margin: 0 auto;
}

.about__content {
  margin-bottom: 2rem;
}

.about__text {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about__text:last-child {
  margin-bottom: 0;
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.stat {
  flex: 1 1 160px;
  min-width: 140px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1rem;
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.stat__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Page Header (Impressum, Datenschutz)
   ========================================================================== */

.page-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 2.5rem 0;
  text-align: center;
}

.page-header__title {
  font-size: 1.6rem;
  font-weight: 800;
}

.legal-content {
  padding: 2rem 16px;
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-gray-700);
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin: 1.8rem 0 0.6rem;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin: 1.2rem 0 0.4rem;
}

.legal-content p {
  margin-bottom: 0.8rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content li {
  margin-bottom: 0.3rem;
}

/* ==========================================================================
   Navigation (Standalone-Seiten: Impressum, Datenschutz, Danke)
   ========================================================================== */

.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-gray-800);
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__logo-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle-line {
  width: 22px;
  height: 2px;
  background: var(--color-gray-700);
  border-radius: 2px;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  align-items: center;
}

.nav__item { }

.nav__link {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-gray-600);
  border-radius: var(--radius-md);
  transition: color 150ms ease, background 150ms ease;
}

.nav__link:hover {
  color: var(--color-primary);
  background: var(--color-gray-50);
}

.nav__link--cta {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.nav__link--cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* ==========================================================================
   Footer (Standalone-Seiten)
   ========================================================================== */

.footer {
  background: var(--color-gray-800);
  color: var(--color-gray-300);
  margin-top: 3rem;
}

.footer__bottom {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.82rem;
}

.footer__legal-links {
  display: flex;
  gap: 1.2rem;
}

.footer__legal-links a {
  font-size: 0.82rem;
  color: var(--color-gray-400);
}

.footer__legal-links a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   Danke-Seite
   ========================================================================== */

.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  padding: 3rem 1rem;
}

.thank-you__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.thank-you__content {
  max-width: 480px;
}

.thank-you__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-gray-800);
  margin-bottom: 0.6rem;
}

.thank-you__text {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
  }
  .nav__menu--open { display: flex; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .waters {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
    gap: 0.8rem;
  }
  .event-card__date {
    flex-direction: row;
    gap: 0.5rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    min-width: unset;
  }
}

@media (max-width: 600px) {
  .app { padding: 10px; }
  .toolbar, .fish-select { flex-direction: column; }
  .field { min-width: 100%; }
  th, td { padding: 0.5rem; font-size: 0.82rem; }
  .score-ring { flex-direction: column; text-align: center; }
  .windows { grid-template-columns: 1fr; }
  .forecast { grid-template-columns: repeat(4, 1fr); }

  .section__title { font-size: 1.3rem; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .about__stats .stat { flex: 1 1 calc(50% - 12px); }
}

@media (max-width: 420px) {
  .about__stats .stat { flex: 1 1 100%; }

  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery__item--large {
    grid-column: span 1;
  }
}

.actions-row{
  display:flex;
  gap: .6rem;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: .6rem;
}

.actions-row #exportCalBtn{
  flex: 0 0 auto;
  min-width: 180px;
}

.actions-row #szLink{
  flex: 1 1 auto;
  text-align: right;
  white-space: nowrap;
}

.export-hint{
  margin-top: .35rem;
  font-size: .8rem;
  color: #64748b;
}
/* ========================================================================== */
/*  HERO + BUTTON STYLES (übernommen aus portfolio_Anglerverein, 2026-01-29)  */
/* ========================================================================== */
  /*--------------------------------------------------------------              
    HERO SECTION (Fullscreen, unabhängig)                                       
  --------------------------------------------------------------*/              
  .hero {                                                                       
      position: relative;                                                       
      min-height: 100vh;                                                        
      display: flex;                                                            
      align-items: center;                                                      
      justify-content: center;                                                  
      background-image: url('../img/hero.png');                                 
      background-size: cover;                                                   
      background-position: center;                                              
      background-attachment: fixed;                                             
  }                                                                             
                                                                                
  .hero__overlay {                                                              
      position: absolute;                                                       
      top: 0;                                                                   
      left: 0;                                                                  
      right: 0;                                                                 
      bottom: 0;                                                                
      background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5)
   50%, rgba(0,0,0,0.6) 100%);                                                  
  }                                                                             
                                                                                
  .hero__content {                                                              
      position: relative;                                                       
      z-index: 1;                                                               
      text-align: center;                                                       
      color: #fff;                                                              
      padding: 2rem;                                                            
      max-width: 800px;                                                         
  }                                                                             
                                                                                
  .hero__title {                                                                
      font-size: clamp(2.25rem, 8vw, 5rem);                                     
      font-weight: 700;                                                         
      margin: 0 0 1rem 0;                                                       
      letter-spacing: -0.02em;                                                  
      color: #fff;                                                              
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);                                  
  }                                                                             
                                                                                
  .hero__subtitle {                                                             
      font-size: clamp(1.125rem, 3vw, 1.5rem);                                  
      font-weight: 400;                                                         
      margin: 0 0 2rem 0;                                                       
      opacity: 0.9;                                                             
      color: #fff;                                                              
  }                                                                             
                                                                                
  .hero__buttons {                                                              
      display: flex;                                                            
      flex-wrap: wrap;                                                          
      gap: 1rem;                                                                
      justify-content: center;                                                  
  }                                                                             
                                                                                
  .btn--primary {                                                               
      display: inline-flex;                                                     
      align-items: center;                                                      
      justify-content: center;                                                  
      padding: 1rem 2rem;                                                       
      font-size: 1rem;                                                          
      font-weight: 500;                                                         
      border-radius: 0.5rem;                                                    
      transition: all 150ms ease;                                               
      background-color: var(--color-primary);                                      
      color: #fff;                                                              
      text-decoration: none;                                                    
      border: none;                                                             
  }                                                                             
                                                                                
  .btn--primary:hover {                                                         
      background-color: var(--color-primary-dark);                                 
      color: #fff;                                                              
  }                                                                             
                                                                                
  .btn--secondary {                                                             
      display: inline-flex;                                                     
      align-items: center;                                                      
      justify-content: center;                                                  
      padding: 1rem 2rem;                                                       
      font-size: 1rem;                                                          
      font-weight: 500;                                                         
      border-radius: 0.5rem;                                                    
      transition: all 150ms ease;                                               
      background-color: #fff;                                                   
      color: var(--color-primary);                                                 
      border: 2px solid #fff;                                                   
      text-decoration: none;                                                    
  }                                                                             
                                                                                
  .btn--secondary:hover {                                                       
      background-color: transparent;                                            
      color: #fff;                                                              
  }                                                                             
                                                                                
  .hero__scroll {                                                               
      position: absolute;                                                       
      bottom: 2rem;                                                             
      left: 50%;                                                                
      transform: translateX(-50%);                                              
      z-index: 1;                                                               
  }                                                                             
                                                                                
  .hero__scroll-link {                                                          
      display: block;                                                           
      color: #fff;                                                              
      opacity: 0.7;                                                             
      transition: opacity 150ms ease;                                           
      animation: bounce 2s infinite;                                            
  }                                                                             
                                                                                
  .hero__scroll-link:hover {                                                    
      opacity: 1;                                                               
      color: #fff;                                                              
  }                                                                             
                                                                                
  .hero__scroll-icon {                                                          
      width: 32px;                                                              
      height: 32px;                                                             
  }                                                                             
                                                                                
  @keyframes bounce {                                                           
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }                     
      40% { transform: translateY(-10px); }                                     
      60% { transform: translateY(-5px); }                                      
  }                                                                             
                                                                                
  @media (max-width: 1199px) {                                                  
      .hero { background-attachment: scroll; }                                  
  }                                                                             
                                                                                
  @media (max-width: 768px) {                                                   
      .hero__content { padding: 1.5rem; }                                       
      .hero__buttons { flex-direction: column; align-items: center; }           
      .btn--primary, .btn--secondary { width: 100%; max-width: 280px; }         
  }                                                                             
                                                                                

/* ========================================================================== */
/*  STATIC LANDINGPAGE – Restliche BEM-Klassen                                */
/*  (Nav, Header, Contact, Footer, Buttons-Base, Mobile)                      */
/* ========================================================================== */

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* --- Header / Top-Nav --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-gray-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-gray-800);
  font-weight: 600;
}

.nav__logo-img {
  height: 38px;
  width: auto;
}

.nav__logo-text {
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item { margin: 0; }

.nav__link {
  text-decoration: none;
  color: var(--color-gray-700);
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-md);
  transition: color 150ms ease, background 150ms ease;
}

.nav__link:hover { color: var(--color-primary); background: var(--color-gray-100); }

.nav__link--cta {
  background: var(--color-primary);
  color: #fff;
  padding: 0.55rem 1rem;
}
.nav__link--cta:hover { background: var(--color-primary-dark); color: #fff; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gray-700);
  border-radius: 2px;
}

/* --- Buttons base + Outline --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 150ms ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* --- Section base padding --- */
.section { padding: 4rem 0; }

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

.contact__info {
  display: grid;
  gap: 1.75rem;
}

.contact__block {
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.contact__heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.6rem 0;
  color: var(--color-gray-800);
}

.contact__address {
  font-style: normal;
  line-height: 1.6;
  color: var(--color-gray-700);
}

.contact__block p {
  margin: 0.4rem 0;
  line-height: 1.55;
  color: var(--color-gray-700);
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.contact__link:hover { color: var(--color-primary-dark); }

/* SVG-Icons innerhalb von Links/Kontaktblöcken: feste Größe! */
.contact__link svg,
.contact__block svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact__map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

/* --- Footer --- */
.footer {
  background: var(--color-gray-800);
  color: var(--color-gray-300);
  padding: 3rem 0 1.5rem 0;
  margin-top: 4rem;
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__logo {
  height: 48px;
  width: auto;
}
.footer__tagline {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  margin: 0;
}

.footer__nav { margin: 0; }
.footer__heading {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.85rem 0;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.footer__links a {
  color: var(--color-gray-300);
  text-decoration: none;
  transition: color 120ms ease;
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid var(--color-gray-700);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-gray-400);
}
.footer__social {
  display: inline-flex;
  gap: 0.5rem;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gray-700);
  color: var(--color-gray-200);
  transition: background 150ms ease, color 150ms ease;
}
.footer__social-link svg { width: 18px; height: 18px; }
.footer__social-link:hover { background: var(--color-primary); color: #fff; }

/* --- Mobile --- */
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .footer__content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    padding: 0.5rem;
  }
  .nav__menu--open { display: flex; }
  .nav__item { width: 100%; }
  .nav__link { display: block; }

  .footer__content { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .section { padding: 2.5rem 0; }
}
