/*
Theme Name: FL Music Theme
Theme URI: https://florianlinckus.com
Author: Florian Linckus
Author URI: https://florianlinckus.com
Description: Custom theme for "Music by Florian Linckus" – film, trailer & game scoring.
Version: 1.0.23
Text Domain: fl-music-theme
*/

/* ========= GLOBAL ========= */

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

body {
  margin: 0;
  padding-bottom: 110px; /* Platz für den sticky Player am unteren Rand */
  background: #020516;
  color: #f5f5f5;
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Filmkorn-Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("https://florianlinckus.com/wp-content/uploads/2025/11/IMG_1277.png");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.25;
  mix-blend-mode: soft-light;
  z-index: 9999;
}

/* Wenn Mobile-Menü offen: Scroll sperren */
body.fl-nav-open {
  overflow: hidden;
}

/* Standard-Container */
.fl-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Headline-Fonts */
h1,
h2,
h3,
.fl-home-tagline {
  font-family: "Cinzel", serif;
}

/* Buttons */
.fl-btn-primary,
.fl-btn-secondary {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.fl-btn-primary {
  background: #D7B490;
  color: #020516;
  border-color: #D7B490;
}

.fl-btn-secondary {
  background: transparent;
  color: #D7B490;
  border-color: #D7B490;
}

.fl-btn-primary:hover {
  background: #ffffff;
  color: #D7B490;
  border-color: #D7B490;
}

.fl-btn-secondary:hover {
  background: #D7B490;
  color: #020516;
}

.fl-highlight {
  color: #D7B490;
}

/* Scroll-Reveal */
.fl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Keine Textselektion (für nocopy-Bereiche) */
.nocopy {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* ========= HEADER / NAVIGATION ========= */

/* Mobile-First: Header */

#fl-main-header {
  width: 100%;
  background: #020516;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9985;
  padding: 10px 16px;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

body.fl-header-scrolled #fl-main-header {
  background: rgba(2, 5, 22, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  padding-top: 6px;
  padding-bottom: 6px;
}

.fl-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo – Mobile */

.fl-logo-wrap {
  text-align: left;
  transition: opacity 0.3s ease;
}

.fl-logo-link {
  display: inline-block;
  position: relative;
}

/* Standard: Mobile – nur kleines horizontales Logo */
.fl-logo-large {
  display: none;
}

.fl-logo-small {
  display: block;
  max-height: 48px;
  width: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Mobile: beim Scrollen Logo sichtbar lassen */
@media (max-width: 900px) {
  body.fl-header-scrolled .fl-logo-wrap {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Burger (Mobile) */

.fl-burger {
  width: 42px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10000;
}

.fl-burger-line {
  height: 4px;
  width: 100%;
  background: #D7B490;
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

/* Burger -> X */
.fl-burger.is-open .fl-burger-line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.fl-burger.is-open .fl-burger-line:nth-child(2) {
  opacity: 0;
}
.fl-burger.is-open .fl-burger-line:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

/* Navigation – Mobile: Fullscreen Overlay */

.fl-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 22, 0.96);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9980;
}

.fl-nav-overlay.is-open {
  display: flex;
}

/* Wrapper für Menü + Language */

.fl-nav-inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Menüliste */

.fl-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  font-family: "Cinzel", serif;
}

.fl-menu-item {
  position: relative;
}

/* Menütypografie */

.fl-menu a,
.fl-menu-parent {
  font-family: "Cinzel", serif;
  color: #D7B490;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  display: inline-block;
  line-height: 1.2;
}

/* Active States -> Weiß */

.fl-menu-item.current-menu-item > a,
.fl-menu-item.current_page_item > a,
.fl-menu-item.current-menu-ancestor > a,
.fl-menu-item.current-page-ancestor > a {
  color: #ffffff;
}

/* Underline – Weiß */

.fl-menu a::after,
.fl-menu-parent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.fl-menu a:hover::after,
.fl-menu-parent:hover::after {
  transform: scaleX(1);
}

.fl-menu a:hover,
.fl-menu-parent:hover {
  color: #ffffff;
}

/* Submenu */

.fl-menu-arrow {
  font-size: 10px;
  margin-left: 6px;
  display: none;
}

.fl-sub-menu {
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  text-align: center;
}

.fl-sub-menu-item a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* ========= HERO / HOME ========= */

#fl-home-landing {
  padding-bottom: 80px;
}

/* Hero */

.fl-hero {
  padding: 32px 0 40px 0;
}

.fl-hero-main-image-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.fl-hero-main-image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.fl-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.fl-hero-content {
  flex: 1 1 380px;
  max-width: 640px;
}

.fl-hero-secondary-image-wrap {
  flex: 1 1 260px;
  text-align: center;
}

.fl-hero-secondary-image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.fl-home-tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
  color: #D7B490;
  margin: 0 0 8px 0;
}

.fl-hero-content h1 {
  font-size: 38px;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.fl-home-hero-sub {
  font-size: 19px;
  margin-bottom: 12px;
  color: #f0f0f0;
}

.fl-home-hero-body {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.7;
}

.fl-home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Home Sections */

.fl-home-section {
  padding: 32px 0;
}

.fl-home-section h2 {
  font-size: 29px;
  margin-bottom: 14px;
  color: #D7B490;
}

.fl-home-section h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #D7B490;
}

.fl-home-section p {
  font-size: 18px;
  line-height: 1.7;
}

/* Columns */

.fl-home-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.fl-home-col {
  flex: 1 1 260px;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  padding: 14px 16px;
}

/* Scoring Cards */

.fl-home-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.fl-home-card {
  flex: 1 1 260px;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fl-home-card p {
  margin-bottom: 12px;
}

.fl-card-link {
  font-size: 14px;
  font-weight: 600;
  color: #D7B490;
  text-decoration: none;
}

.fl-card-link:hover {
  text-decoration: underline;
}

/* ========= CONTACT SECTION ========= */

.fl-home-contact {
  margin-top: 12px;
  padding: 40px 0 48px 0;
  background: radial-gradient(circle at top, rgba(215,180,144,0.16), transparent 55%);
}

.fl-home-contact .fl-contact-form {
  margin-top: 24px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(3, 6, 24, 0.9);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.fl-form-row {
  margin-bottom: 14px;
}

.fl-form-row label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.fl-contact-form input[type="text"],
.fl-contact-form input[type="email"],
.fl-contact-form input[type="number"],
.fl-contact-form textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.5);
  color: #f5f5f5;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.fl-contact-form textarea {
  resize: vertical;
}

.fl-form-privacy label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fl-form-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.fl-form-error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
}

.fl-form-success {
  color: #2ecc71;
  font-size: 14px;
  margin-top: 8px;
}

/* ========= PAGES ========= */

.fl-page-default {
  padding: 60px 0 90px;
}

.fl-page-header {
  margin-bottom: 20px;
  text-align: left;
}

.fl-page-title {
  font-family: "Cinzel", serif;
  font-size: 30px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D7B490;
  margin: 0 0 8px 0;
}

.fl-page-body {
  font-size: 17px;
  line-height: 1.8;
  color: #f5f5f5;
}

.fl-page-body h1,
.fl-page-body h2,
.fl-page-body h3 {
  font-family: "Cinzel", serif;
  color: #D7B490;
  margin-top: 28px;
  margin-bottom: 10px;
}

.fl-page-body a {
  color: #D7B490;
  text-decoration: none;
  border-bottom: 1px solid rgba(215,180,144,0.55);
}

.fl-page-body a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Dezenter Fade-In beim Laden der Seite */

.fl-reveal-page {
  opacity: 0;
  transform: translateY(20px);
  animation: fl-page-fade-in 0.7s ease-out forwards;
}

@keyframes fl-page-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========= FOOTER ========= */

#fl-main-footer {
  margin-top: 8px;
  padding: 12px 24px 72px 24px; /* unten genug Platz, damit nichts unter den Player rutscht */
  background: #050714;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Oberer Footer-Bereich – alles zentriert gestapelt */

.fl-footer-top {
  max-width: 1400px;
  margin: 0 auto 6px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

/* Reihenfolge:
   1) Logo
   2) Social Icons
   3) Copyright
   4) Imprint-Menü
*/

.fl-footer-center-logo {
  order: 1;
}

.fl-footer-left {
  order: 2;
  display: flex;
  flex-direction: column-reverse; /* Copyright unter Social Icons */
  align-items: center;
}

.fl-footer-right {
  order: 3;
  display: flex;
  justify-content: center;
}

/* Spalten sollen nicht mehr „ziehen“ */
.fl-footer-left,
.fl-footer-right {
  flex: 0 0 auto;
}

.fl-footer-center-logo img {
  max-height: 36px;
  width: auto;
}

/* Mobile-Logo (standardmäßig ausblenden) */
.fl-footer-logo-mobile {
  display: none;
}

/* Social Icons */

.fl-footer-social {
  margin-bottom: 4px;
}

.fl-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  color: #D7B490;
  text-decoration: none;
  font-size: 0;
  vertical-align: middle;
}

.fl-footer-social a:last-child {
  margin-right: 0;
}

.fl-footer-social a svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fl-footer-social a:hover {
  opacity: 0.8;
}

/* Copyright unter Social Icons */

.fl-footer-copy {
  font-size: 13px;
  margin: 0;
}

/* Footer-Links – zentriert */

.fl-footer-nav {
  text-align: center;
}

.fl-footer-nav a {
  font-size: 14px;
  margin: 0 10px;
  color: #f5f5f5;
  text-decoration: none;
}

.fl-footer-nav a:hover {
  text-decoration: underline;
}

/* Sticky-Player-Bar am unteren Rand */

.fl-footer-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9980;
  padding: 6px 10px;
  background: radial-gradient(circle at top, rgba(215,180,144,0.16), rgba(2,5,22,0.98));
  box-shadow: 0 -14px 30px rgba(0,0,0,0.85);
}

/* Player-Container */

.fl-footer-player {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 18px 10px 18px;
  border-radius: 999px;
  background: #020516;
  border: 1px solid rgba(255,255,255,0.15);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Steuerleiste: Prev | Play | Next */

.fl-footer-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.fl-footer-ctrl-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #D7B490;
  background: transparent;
  color: #D7B490;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.fl-footer-ctrl-play {
  background: #000000;
  border-color: #000000;
  color: #f5f5f5;
}

.fl-footer-ctrl-btn:hover {
  transform: translateY(-1px);
}

.fl-footer-ctrl-btn svg {
  display: block;
}

.fl-footer-ctrl-play .icon-pause {
  display: none;
}

/* Track-Infos */

.fl-footer-track-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.fl-footer-track-title {
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 600;
  color: #D7B490;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fl-footer-track-meta {
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 400;
  color: #D7B490;
  opacity: 0.9;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========= MUSIC PERMISSION OVERLAY ========= */

.fl-music-permission {
  position: fixed;
  inset: 0;
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(2, 5, 22, 0.92);
  backdrop-filter: blur(6px);
}

.fl-music-permission-inner {
  max-width: 480px;
  width: 100%;
  background: rgba(5, 7, 20, 0.98);
  border-radius: 16px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(215,180,144,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.9);
  text-align: center;
}

.fl-music-permission-headline {
  font-family: "Cinzel", serif;
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #D7B490;
}

.fl-music-permission-text {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.fl-music-permission-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.fl-music-btn {
  min-width: 150px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #D7B490;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.fl-music-btn-yes {
  background: #D7B490;
  color: #020516;
}

.fl-music-btn-no {
  background: transparent;
  color: #D7B490;
}

.fl-music-btn:hover {
  transform: translateY(-1px);
}

.fl-music-permission.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ========= HORROR / THRILLER PAGE ========= */

.page-template-page-scoring-horror-thriller #fl-horror-landing {
  background-image: url('https://florianlinckus.com/wp-content/uploads/2025/11/horror-bg-scaled.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-template-page-scoring-horror-thriller #fl-horror-landing .fl-horror-section,
.page-template-page-scoring-horror-thriller #fl-horror-landing .fl-horror-hero {
  background: linear-gradient(
    to bottom,
    rgba(2, 5, 22, 0.85),
    rgba(2, 5, 22, 0.95)
  );
  border-radius: 12px;
}

/* ========= LANGUAGE SWITCHER ========= */

.fl-lang-switcher {
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fl-lang-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.9;
}

.fl-lang-links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Cinzel", serif;
  font-size: 14px;
}

.fl-lang-sep {
  color: #ffffff;
  opacity: 0.7;
}

/* DE / EN Links */
.fl-lang-link {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 3px;
}

.fl-lang-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #D7B490;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.fl-lang-link:hover::after {
  transform: scaleX(1);
}

.fl-lang-link:hover,
.fl-lang-link.is-active {
  color: #D7B490;
}

/* ========= RESPONSIVE ========= */

/* Desktop (>= 901px) */

@media (min-width: 901px) {

  #fl-main-header {
    padding: 16px 24px 10px 24px;
  }

  body.fl-header-scrolled #fl-main-header {
    padding-top: 10px;
    padding-bottom: 6px;
  }

  .fl-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }

  .fl-logo-wrap {
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fl-logo-link {
    position: relative;
    display: inline-block;
  }

  .fl-logo-large {
    display: block;
    max-height: 110px;
    width: auto;
    opacity: 1;
    margin-bottom: 0;
    transition:
      opacity 0.3s ease,
      max-height 0.3s ease;
  }

  .fl-logo-small {
    display: block;
    max-height: 52px;
    width: auto;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }

  body.fl-header-scrolled .fl-logo-large {
    opacity: 0;
    max-height: 0;
  }

  body.fl-header-scrolled .fl-logo-small {
    opacity: 1;
  }

  .fl-burger {
    display: none;
  }

  .fl-nav-overlay {
    position: relative;
    inset: auto;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
    width: 100%;
    max-width: 1400px;
    z-index: auto;
  }

  body.fl-header-scrolled .fl-nav-overlay {
    margin-top: 2px;
  }

  .fl-nav-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    width: 100%;
  }

  .fl-menu {
    flex-direction: row;
    gap: 24px;
    align-items: flex-end;
  }

  /* Desktop: Listen-Dropdown */

  .fl-menu-item-listen {
    position: relative;
  }

  .fl-menu-item-listen .fl-sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 260px;
    margin-top: 0;
    background: rgba(2, 5, 22, 0.9);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    padding: 10px 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .fl-menu-item-listen:hover .fl-sub-menu {
    display: flex;
  }

  .fl-sub-menu-item a {
    width: 100%;
    text-align: center;
  }

  /* Language-Switcher Desktop */

  .fl-lang-switcher--desktop {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .fl-lang-switcher--mobile {
    display: none;
  }

  .fl-hero-inner {
    flex-direction: row;
  }

  .fl-home-contact .fl-contact-form {
    max-width: 50%;
  }
}

/* Tablet / kleinere Screens (<= 900px) */

@media (max-width: 900px) {

  .fl-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fl-hero-content h1 {
    font-size: 30px;
  }

  .fl-home-contact .fl-contact-form {
    max-width: 100%;
  }

  .fl-nav-overlay {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .fl-nav-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .fl-menu {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  /* Mobile: Listen – mittig inkl. Submenu */

  .fl-menu-item-listen {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fl-menu-item-listen .fl-sub-menu {
    width: 100%;
    max-width: 260px;
    margin: 4px auto 0 auto;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .fl-menu-item-listen.is-open-mobile .fl-sub-menu {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
  }

  .fl-lang-switcher--desktop {
    display: none;
  }

  .fl-lang-switcher--mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
  }

  .fl-lang-label {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .fl-nav-overlay .fl-menu a,
  .fl-nav-overlay .fl-menu-parent {
    font-size: 18px;
  }
}

/* Small Phones (<= 600px) */

@media (max-width: 600px) {

  .fl-container {
    padding: 0 16px;
  }

  .fl-hero-content h1 {
    font-size: 28px;
  }

  #fl-main-footer {
    margin-top: 24px;
    padding: 10px 16px 72px 16px;
  }

  .fl-footer-center-logo img {
    max-height: 32px;
  }

  .fl-footer-nav a {
    margin: 0 6px;
  }

  .fl-footer-bottom {
    padding: 4px 10px 6px 10px;
  }

  .fl-footer-player {
    padding: 8px 14px 10px 14px;
    border-radius: 16px;
  }

  .fl-footer-controls {
    gap: 14px;
  }

  .fl-footer-ctrl-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .fl-footer-track-title {
    font-size: 14px;
  }

  .fl-footer-track-meta {
    font-size: 12px;
  }

  .fl-music-permission-inner {
    max-width: 90%;
    padding: 18px 16px 16px;
  }
}
