/* Variablen */
:root {
  --text-color: #ffffff; 
  --background-color: #0f172b;
  --atk-yellow: #f59e0b;
  --atk-blue: #14344c;
}

/* 1) Set the scrolled header background (highest match to your existing selectors) */
body.header-fixed.header-animated #header.scrolled {
  background: var(--background-color) !important;              /* your color */
}

/* Header-Logo (Desktop) – Spezifisch + überschreibt feste Höhe) */
.section .container .navbar .navbar-section.logo .navbar-brand img {
  height: auto !important;   /* überschreibt feste theme-Höhe */
  max-height: 32px !important; /* Zielgröße anpassen */
  width: auto;
  display: block;
}
/* Mobile-Overlay-Logo (Menü aufgeklappt) */
.mobile-container .mobile-logo img {
  height: auto !important;
  max-height: 36px !important; /* optional anpassen */
}
/* Falls das Theme irgendwo width/height am Link setzt */
.section .container .navbar .navbar-section.logo .navbar-brand {
  line-height: 1;      /* verhindert vertical misalign */
}

/* Button overrides */
.btn.btn-primary { background: var(--atk-yellow); border-color: var(--atk-blue); color: var(--text-color); }
.btn.btn-primary:focus, .btn.btn-primary:hover { background: var(--atk-blue); border-color: var(--atk-yellow); color: var(--text-color); }
.btn.btn-primary:active, .btn.btn-primary.active { background: #b50000; border-color: #0059a6; color: #fff; }

/*----------------------------------------------------------------------------*/

/* Typografie */


/*----------------------------------------------------------------------------*/
/* Requirements-Klassen */
.requirement-section {
  width: 100%;
  margin: 4rem 0;
}

.rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.row.text-right {
  flex-direction: row-reverse;
}

.image img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

.tile-gap-sm .row { gap: 1rem; }
.tile-gap-md .row { gap: 2rem; }
.tile-gap-lg .row { gap: 3rem; }
.tile-gap-xl .row { gap: 4rem; }

@media (max-width: 800px) {
  .row {
    flex-direction: column;
  }
}