/**
 * inton-logopaedie.de
 * Modifiziert für inton-logopaedie.de, Heike Jurzik, Mai 2026
 * Basis: LeadPage-Template von BootstrapMade
 * https://bootstrapmade.com/leadpage-bootstrap-landing-page-template/
 * License: https://bootstrapmade.com/license/
 */

/*--------------------------------------------------------------
# Gantari – lokale Schriftdateien
# Dateien liegen in assets/css/fonts/
--------------------------------------------------------------*/

@font-face {
  font-display: swap;
  font-family: 'Gantari';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/gantari-v4-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Gantari';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/gantari-v4-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Gantari';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/gantari-v4-latin-800.woff2') format('woff2');
}

/*--------------------------------------------------------------
# Variablen
--------------------------------------------------------------*/

:root {
  --logo-orange: #D85D00;
  --logo-red:    #BF1300;
  --neutral:     #4D4D4D;

  /* Hintergründe */
  --bg:          #f4f5f6;  
  --bg-dark:     #1a1a1a;

  /* Typografie */
  --font:        'Gantari', sans-serif;

  /* Trennlinien */
  --border:      #e0d8d0;

  /* Abstände – Sections */
  --section-padding: 80px 0;

  /* Scrollverhalten */
  scroll-behavior: smooth;
}

@supports (color: color(display-p3 1 1 1)) {
  :root {
    --logo-orange: color(display-p3 0.784 0.380 0.043);
    --neutral: color(display-p3 0.302 0.302 0.302);
  }
}

/*--------------------------------------------------------------
# Basis
--------------------------------------------------------------*/

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--neutral);
  background-color: var(--bg);
}

a {
  color: var(--logo-orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: color-mix(in srgb, var(--logo-orange), black 15%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--neutral);
  margin-top: 0;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 20px 0 0;
  background-color: transparent;
  transition: background-color 0.4s ease;
}

.scrolled .header {
  background-color: #f0f2f4;;
}

.header .top-row {
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 1px;
}

.logo-word {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-in {
  color: var(--logo-orange);
}

.logo-ton {
  color: var(--neutral);
}

.scrolled .logo-ton {
  color: var(--neutral);
}

.logo-claim {
  font-family: var(--font);
  font-weight: 700;           /* Bold, nicht ExtraBold */
  font-size: clamp(0.7rem, 1.3vw, 0.9rem);
  letter-spacing: 0.01em;     /* minimal, kein Sperren */
  text-transform: none;       /* normale Groß/Kleinschreibung */
  color: var(--logo-orange);
  margin-top: 1px;
  display: block;
}

/*--------------------------------------------------------------
# Kontakt-Button (Header)
--------------------------------------------------------------*/

.header-contact-btn {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background-color: var(--logo-orange);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header-contact-btn:hover {
  background-color: color-mix(in srgb, var(--logo-orange), black 15%);
  color: #fff;
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.nav-wrap {
  background-color: rgba(20, 20, 20, 0.88);
  margin-top: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 1200px) {
  .navmenu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    display: block;
    white-space: nowrap;
    transition: color 0.2s;
    text-decoration: none;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--logo-orange);
  }
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  position: fixed;
  top: 14px;
  right: 1.4rem;
  z-index: 9999;
  background-color: var(--logo-orange);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {

  .navmenu ul { 
    display: none;
    list-style: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 70px);
    padding: 10px 0;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--neutral);
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    display: block;
    border-bottom: 1px solid rgba(77, 77, 77, 0.08);
    transition: color 0.2s;
    text-decoration: none;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--logo-orange);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

}


/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-waves {
  width: 100%;
  height: 100%;
}

.hero-waves .wave-group {
  animation: wave-pulse 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes wave-pulse {
  0%   { transform: scaleY(1);    opacity: 1; }
  50%  { transform: scaleY(1.12); opacity: 0.75; }
  100% { transform: scaleY(1);    opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 160px 0 80px; /* Platz für den fixed Header oben */
}

.hero-content h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--neutral);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--neutral);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

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

.btn-hero-primary {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background-color: var(--logo-orange);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background-color: color-mix(in srgb, var(--logo-orange), black 15%);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-outline {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--neutral);
  background-color: transparent;
  border: 2px solid rgba(77, 77, 77, 0.4);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s, transform 0.15s;
}

.btn-hero-outline:hover {
  border-color: var(--neutral);
  background-color: rgba(77, 77, 77, 0.08);
  color: var(--neutral);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Header Mobile */
  .logo-word {
    font-size: 1.3rem;
  }

  .logo-claim {
    font-size: 0.65rem;
  }

  .header-contact-btn {
    display: none;
  }
}

/*--------------------------------------------------------------
# Side Tab – Schwesterseite
--------------------------------------------------------------*/

.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(calc(100% - 52px));
  background: #2a2a2a;
  border-radius: 14px 0 0 14px;
  padding: 0.75rem 0.75rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 10;
  width: 240px;
  overflow: hidden;
  animation: side-tab-expand 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
  transition: background 0.2s;
}

@keyframes side-tab-expand {
  from { transform: translateY(-50%) translateX(calc(100% - 60px)); }
  to   { transform: translateY(-50%) translateX(0); }
}

.side-tab:hover {
  background: #1a1a1a;
}

.side-tab-icon {
  font-size: 40px;
  flex-shrink: 0;
  color: var(--logo-orange);
}

.side-tab-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.side-tab-hint {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  line-height: 1;
}

.side-tab-name {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 992px) {
  .side-tab {
    display: none;
  }
} 

.sister-banner {
  display: none;
  background: #2a2a2a;
  padding: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.sister-banner-label {
  font-family: var(--font);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.sister-banner-link {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.sister-banner-icon {
  font-size: 1.75rem;
  color: var(--logo-orange);
}

@media (max-width: 992px) {
  .sister-banner {
    display: flex;
  }
  
  .side-tab {
    display: none;
  }
}

/*--------------------------------------------------------------
# Section Title (global)
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--neutral);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title .subtitle {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--logo-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--logo-orange);
}

.section-title p {
  font-family: var(--font);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--neutral);
  max-width: 900px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about {
  scroll-margin-top: 120px; /* Höhe von Header + Nav-Balken */
}

#kinder, #erwachsene, #profistimmen, #transpersonen {
  display: block;
  height: 0;
  visibility: hidden;
  scroll-margin-top: 160px;
}
.about {
  padding: var(--section-padding);
  background-color: #fff;
}

.about .tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.about .tabs-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .about .tabs-header {
    margin-bottom: 60px;
  }
}

.about .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px rgba(77, 77, 77, 0.08);
}

@media (max-width: 992px) {
  .about .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.about .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .about .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.about .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 100%;
}

.about .tabs-header .nav-tabs .nav-link.active {
  background: var(--logo-orange);
}

.about .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.about .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h3,
.about .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text small {
  color: #fff;
  font-size: 15px;
}

.about .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: rgba(216, 93, 0, 0.06);
}

.about .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .about .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.about .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(77, 77, 77, 0.08);
  color: var(--neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.about .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .about .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .about .tab-content .content-area p {
    margin-bottom: 1.5rem;
  }
  .about .tab-content .content-area .feature-points {
    columns: 1 !important;
  }
}

.about .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h3 {
  margin: 0 0 2px 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral);
  transition: all 0.3s ease;
}

.about .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: rgba(77, 77, 77, 0.55);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.about .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.about .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .about .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.about .tab-content .content-area h3 {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about .tab-content .content-area p {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--neutral);
  margin-bottom: 40px;
}

.about .tab-content .content-area .feature-points {
  columns: 2;
  column-gap: 2rem;
  column-fill: balance;
}

.about .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  break-inside: avoid;
}

.about .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.about .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--logo-orange);
  margin-top: 5px;
  flex-shrink: 0;
}

.about .tab-content .content-area .feature-points .point-item span {
  font-family: var(--font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neutral);
}

.about .tab-content .content-area .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--logo-orange);
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.about .tab-content .content-area .explore-link:hover {
  gap: 12px;
  color: var(--logo-orange);
}

.about .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.about .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.about .tab-content .visual-content {
  position: sticky;
  top: 160px;
}

@media (max-width: 992px) {
  .about .tab-content .visual-content {
    padding-left: 0;
  }
}

.about .tab-content .visual-content img {
  width: 100%;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

#team {
  scroll-margin-top: 120px;
}

.team {
  background-color: #2a2a2a;
  padding: var(--section-padding);
}


.team .section-title .subtitle {
  color: var(--logo-orange);
}

.team .section-title h2 {
  color: #fff;
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    width: 20%;
  }
}

.team .member-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--logo-orange);
}

.team .member-card .member-img {
  position: relative;
  aspect-ratio: 1/1;
  background: rgba(216, 93, 0, 0.08);
  overflow: hidden;
}

.team .member-card .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team .member-card .member-info {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}

.team .member-card .member-info h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--neutral);
  margin: 0 0 0.4rem 0;
  transition: color 0.3s ease;
}

.team .member-card:hover .member-info h3 {
  color: var(--logo-orange);
}

.team .member-card .member-info p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(77, 77, 77, 0.6);
  margin: 0;
  line-height: 1.45;
}

/*--------------------------------------------------------------
# Team – Initialen-Avatar
--------------------------------------------------------------*/

.member-initials {
  background-color: rgba(216, 93, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 1.5rem auto;
  width: 120px;
  height: 120px;
  aspect-ratio: unset;
}

.member-initials::after {
  content: attr(data-initials);
  font-family: var(--font);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--logo-orange);
  letter-spacing: -0.02em;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#kontakt {
  scroll-margin-top: 0;
}

.logo-footer {
  background-color: #B34D00;
  font-family: var(--font);
}

.logo-contact-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-contact-item:last-child {
  border-right: none;
}

.logo-contact-item i {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.logo-contact-label {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.4rem;
}

.logo-contact-value {
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}

.logo-contact-value a {
  color: #fff;
}

.logo-contact-value a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.logo-parking-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-parking-note i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.logo-footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.logo-footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.logo-footer-legal a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Responsive Footer
--------------------------------------------------------------*/

@media (max-width: 900px) {
  .logo-contact-bar {
    gap: 0;
  }

  .logo-contact-item {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem;
  }

  .logo-contact-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .logo-contact-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .logo-contact-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .logo-contact-item:last-child {
    border-bottom: none;
  }

  .logo-footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/

.scroll-top {
  font-size: 1.6rem;
  line-height: 1;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--neutral);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s, transform 0.2s, background-color 0.2s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.active {
  opacity: 1;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--logo-orange), white 25%);
  color: #fff;
  transform: translateY(-2px);
}

.scroll-top i {
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg);
}

/*--------------------------------------------------------------
# Animationen
--------------------------------------------------------------*/

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