/* ============================ GRUNDEINSTELLUNGEN & VARIABLEN ============================ */
:root {
    --primary-color: #9e1b21;
    --secondary-color: #333333;
    --light-gray-color: #f4f4f4;
    --white-color: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --navbar-height: 80px;
    --topbar-height: 32px;        /* NEU: Höhe der Topbar */
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    /* Verhindert, dass der Header Inhalte verdeckt */
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

img.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ============================ HEADER & NAVIGATION ============================ */
.site-header {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    /* Höhe anpassen */
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white-color);
    padding: 1rem 1.2rem;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* --- Dropdown Menü --- */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 0.8rem 1rem;
    white-space: nowrap;
}

.dropdown .arrow {
    font-size: 0.7em;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* --- Hamburger Menu --- */
.nav-toggle {
    display: none;
    /* Standardmässig versteckt auf Desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.nav-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white-color);
    margin: 6px 0;
    transition: all 0.4s ease-in-out;
    border-radius: 2px;
}

/* Hamburger Animation zu 'X' */
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}



/* ============================ MAIN CONTENT ============================ */
main {
    padding-top: var(--navbar-height);
}

/* --- Hero Sektion --- */
.hero {
    background: url('https://via.placeholder.com/1920x1080.png/f0f0f0/333333?text=Hintergrundbild+(z.B.+Brot)') no-repeat center center/cover;
    height: calc(100vh - var(--navbar-height));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    position: relative;
}

.hero::before {
    /* Overlay für bessere Lesbarkeit */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.5rem;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 5px;
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s;
}

.btn:hover {
    background-color: #83161b;
    transform: translateY(-2px);
}

/* --- Allgemeine Inhaltssektionen --- */
.content-section {
    padding: 80px 0;
}

.content-section-gray {
    background-color: var(--light-gray-color);
    padding: 80px 0;
}

/* Card Layout für Angebot */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.card {
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    margin: 1.5rem 0 0.5rem 0;
}

.card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ============================ FOOTER ============================ */
footer.site-footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--white-color);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* ============================ RESPONSIVE DESIGN ============================ */
@media (max-width: 992px) {

    /* --- Navigation anpassen --- */
    .nav-toggle {
        display: block;
        /* Hamburger anzeigen */
    }

    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        right: -100%;
        /* Menü ausserhalb des sichtbaren Bereichs */
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background-color: var(--primary-color);
        transition: right 0.5s ease-in-out;
        padding-top: 2rem;
    }

    .nav-menu.active {
        right: 0;
        /* Menü einschieben */
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        padding: 1.5rem 0;
        font-size: 1.1rem;
    }

    /* --- Dropdown für Mobile anpassen --- */
    .dropdown-menu {
        display: none;
        /* Wichtig für JS-Toggle */
        position: static;
        background-color: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        width: 100%;
    }

    .dropdown-menu a {
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 400;
    }

    /* Deaktiviere Hover-Effekt auf Mobile */
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .arrow {
        transform: rotate(180deg);
    }

    /* --- Anderes --- */
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Navbar exakt hoch – nichts darf rausstehen */
.navbar {
    height: var(--navbar-height);
}

.navbar-container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Logo exakt auf Navbar-Höhe zwingen */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    line-height: 0;
    /* verhindert Extra-Zeilenhöhe */
}

.logo img {
    height: 100%;
    /* **genau** so hoch wie die Navbar */
    width: auto;
    /* Seitenverhältnis bewahren */
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.logo img {
  height: auto;          /* Höhe nicht mehr erzwingen */
  max-height: 60%;       /* nur 70% der Navbar-Höhe */
  width: auto;           /* Seitenverhältnis bleibt */
  display: block;
  object-fit: contain;
}
/* ============================ TOPBAR (Telefon) ============================ */
.topbar {
    height: var(--topbar-height);
    background-color: #7f151a;              /* etwas dunkler als primary */
    color: #fbecec;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.topbar .container {
    display: flex;
    justify-content: flex-end;              /* alles nach rechts */
    align-items: center;
    gap: 18px;
}

.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.topbar a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

/* Icons per ::before – kein HTML ändern nötig */
.topbar span:first-child::before {
    content: "\260E";                       /* ☎ */
    font-size: 0.9rem;
    margin-right: 2px;
}

.topbar span:last-child::before {
    content: "\2615";                       /* ☕ */
    font-size: 0.95rem;
    margin-right: 2px;
}

/* Auf sehr kleinen Screens kompakter */
@media (max-width: 576px) {
    .topbar {
        font-size: 0.7rem;
    }

    .topbar .container {
        justify-content: center;
        gap: 10px;
    }

    .topbar span:last-child {
        display: none;                      /* nur Hauptgeschäft anzeigen, wenn zu eng */
    }
}
/* ============================ TOPBAR (OVERRIDE) ============================ */

/* Höhe der Topbar definieren/überschreiben */
:root {
    --topbar-height: 32px;
}

/* Topbar-Styling */
.topbar {
    background-color: #333333;
    color: #f0f0f0;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-height: var(--topbar-height);
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.topbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.topbar a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

/* Icons vor den Einträgen */
.topbar-phone-haupt::before,
.topbar-phone-cafe::before,
.topbar-email::before {
    display: inline-block;
    font-size: 0.9rem;
}

.topbar-phone-haupt::before {
    content: "\260E"; /* ☎ */
}

.topbar-phone-cafe::before {
    content: "\260F"; /* ☏ */
}

.topbar-email::before {
    content: "\2709"; /* ✉ */
}

/* Beim Scrollen Topbar ausblenden (setzt .scrolled auf .site-header voraus) */
.site-header.scrolled .topbar {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Mobile: kompakter, zweite Nummer ausblenden */
@media (max-width: 576px) {
    .topbar {
        font-size: 0.7rem;
    }

    .topbar .container {
        justify-content: center;
        gap: 10px;
    }

    .topbar-phone-cafe {
        display: none;
    }
}
/* ============================ HERO-SLIDER ============================ */

.hero-slider {
    position: relative;
    height: 60vh;                    /* nicht ganze Seite */
    min-height: 380px;
    max-height: 620px;
    overflow: hidden;
    margin-bottom: 40px;
    color: #ffffff;
}

.hero-slider-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Einzelne Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition:
        opacity 1.1s ease-in-out,
        transform 7s ease-out;
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.08);         /* leicht hineinzoomend */
    z-index: 1;
}

/* Dunkler Overlay über allen Bildern */
.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
    z-index: 2;
    pointer-events: none;
}

/* Inhalt im Slider */
.hero-slider-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    height: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-slider-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.hero-slider-content p {
    font-size: 1.2rem;
    color: #f4f4f4;
    max-width: 700px;
}

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Zweiter Button etwas dezenter */
.btn.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
}

.btn.btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Slider-Dots */
.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    background: transparent;
    padding: 0;
    cursor: pointer;
    opacity: 0.7;
    transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
}

.hero-dot.is-active {
    background: #ffffff;
    opacity: 1;
    transform: scale(1.2);
}

.hero-dot:hover {
    opacity: 1;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .hero-slider {
        height: 55vh;
        min-height: 320px;
    }

    .hero-slider-content h1 {
        font-size: 2.3rem;
    }

    .hero-slider-content p {
        font-size: 1.0rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
        min-height: 260px;
    }

    .hero-slider-content {
        padding: 2.2rem 1.2rem;
    }

    .hero-slider-content h1 {
        font-size: 1.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
/* =========================================
   FIX: Mobiles Menü berücksichtigt Topbar
   ========================================= */
@media (max-width: 992px) {

    /* Standard: Topbar + Navbar sichtbar */
    .nav-menu {
        top: calc(var(--navbar-height) + var(--topbar-height));
        height: calc(100vh - var(--navbar-height) - var(--topbar-height));
    }

    /* Wenn gescrolled: Topbar eingeklappt (.scrolled),
       dann nur noch die Navbar-Höhe berücksichtigen */
    .site-header.scrolled .nav-menu {
        top: var(--navbar-height);
        height: calc(100vh - var(--navbar-height));
    }
}
/* =========================================
   DYNAMISCHER HEADER-OFFSET (Topbar + Navbar)
   Verhindert Überlappung von Hero/Content
   ========================================= */

/* Fallback – wird von JS überschrieben */
:root {
    --header-offset: calc(var(--navbar-height) + var(--topbar-height));
}

/* Abstand des Inhalts unter dem fixen Header */
main {
    padding-top: var(--header-offset);
}

/* Korrekte Sprungposition für Anker-Links */
html {
    scroll-padding-top: var(--header-offset);
}

/* Mobiles Menü exakt unterhalb des sichtbaren Headers */
@media (max-width: 992px) {
    .nav-menu {
        top: var(--header-offset);
        height: calc(100vh - var(--header-offset));
    }

    .site-header.scrolled .nav-menu {
        top: var(--header-offset);
        height: calc(100vh - var(--header-offset));
    }
}
/* =========================================
   FIX: Abstand zwischen Button und Slider-Dots
   ========================================= */

/* Standard: etwas mehr Platz unten */
.hero-buttons {
    margin-bottom: 2.5rem;   /* bisher ~1.5rem → mehr Abstand */
}

/* Mobile spezifisch noch mehr Abstand */
@media (max-width: 768px) {
    .hero-buttons {
        margin-bottom: 3.5rem; /* Buttons heben → Dots werden nicht überdeckt */
    }
}

/* Kleinste Screens – maximaler Abstand */
@media (max-width: 480px) {
    .hero-buttons {
        margin-bottom: 4rem;
    }
}
/* ============================ TOPBAR – NEU (responsiv + Social Media) ============================ */

/* Dropdown soll nicht abgeschnitten werden */
.topbar {
    overflow: visible;
}

/* Neue Struktur der Topbar */
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Alte ::before-Icons deaktivieren */
.topbar-phone-haupt::before,
.topbar-phone-cafe::before,
.topbar-email::before {
    content: none !important;
}

/* Generelle Topbar-Items */
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 600;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Icon-Grössen */
.topbar .fa-solid,
.topbar .fa-regular,
.topbar .fa-brands {
    font-size: 0.9rem;
}

/* Telefonlabels */
.topbar-phone-label {
    font-weight: 600;
    opacity: 0.9;
}

/* Mail: lange vs kurze Variante */
.topbar-email-text-short {
    display: none;
}

/* Social-Media Trigger + Menü */
.topbar-social {
    position: relative;
}

.topbar-social-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    color: #ffffff;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.topbar-social-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 190px;
    background: #222222;
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.97);
    transform-origin: top right;
    transition:
        opacity 0.18s ease-out,
        transform 0.18s ease-out,
        visibility 0.18s ease-out;
    z-index: 2000;
}

.topbar-social-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    padding: 6px 4px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.topbar-social-menu a:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Hover ODER Klick (Focus) öffnet das Menü */
.topbar-social:hover .topbar-social-menu,
.topbar-social:focus-within .topbar-social-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ============================ RESPONSIVE TOPBAR ============================ */

/* Mittel: zweite Telefonnummer ausblenden, Café bleibt */
@media (max-width: 900px) {
    .topbar-phone-haupt {
        display: none;
    }
}

/* Mail kürzen, Social-Text ausblenden, engeres Layout */
@media (max-width: 768px) {
    .topbar-email-text-full {
        display: none;
    }
    .topbar-email-text-short {
        display: inline;
    }

    .topbar-social-text {
        display: none;
    }

    .topbar-left,
    .topbar-right {
        gap: 10px;
    }
}

/* Sehr schmal: alles möglichst kompakt, aber noch Icon + Mail + Social-Icon */
@media (max-width: 576px) {
    .topbar-inner {
        gap: 10px;
    }

    .topbar-left {
        flex: 1 1 auto;
    }

    .topbar-right {
        gap: 8px;
    }

    .topbar-phone-number {
        font-size: 0.8rem;
    }

    .topbar .fa-solid,
    .topbar .fa-regular,
    .topbar .fa-brands {
        font-size: 0.8rem;
    }
}
/* ============================
   TOPBAR – Zentriert + mehr Abstand (Desktop)
   ============================ */
@media (min-width: 901px) {

    /* Alles in der Mitte statt space-between */
    .topbar-inner {
        justify-content: center;
        gap: 32px;              /* Abstand zwischen linker und rechter Gruppe */
    }

    /* Mehr Abstand zwischen den einzelnen Punkten */
    .topbar-left,
    .topbar-right {
        gap: 24px;              /* Abstand zwischen Café / Bäckerei / Mail / Social */
    }

    /* Etwas Luft um jedes Item */
    .topbar-item {
        padding: 0 4px;
    }
}
/* ============================
   TOPBAR – Feintuning (zentriert, mehr Abstand, Mail-Logik)
   ============================ */

/* Alte Kaffeetassen-Icons endgültig killen (falls noch vorhanden) */
.topbar span:first-child::before,
.topbar span:last-child::before {
    content: none !important;
}

/* Standard: "Mail" (kurz) verstecken, nur Adresse zeigen */
.topbar-email-text-short {
    display: none !important;
}

/* Grosse Screens: alles zentriert und mit mehr Abstand */
@media (min-width: 1024px) {
    .topbar .container,
    .topbar-inner {
        justify-content: center !important;
    }

    .topbar-inner {
        gap: 56px;              /* Abstand zwischen linker und rechter Gruppe */
    }

    .topbar-left,
    .topbar-right {
        gap: 32px;              /* Abstand zwischen Café / Bäckerei / Mail / Social */
    }

    .topbar-item {
        padding: 0 6px;
    }
}

/* Tablet & kleiner: E-Mail wird zu "Mail" */
@media (max-width: 768px) {
    .topbar-email-text-full {
        display: none !important;
    }
    .topbar-email-text-short {
        display: inline !important;
    }
}

/* Sehr klein (optional noch etwas kompakter) */
@media (max-width: 576px) {
    .topbar-inner {
        gap: 12px;
    }
    .topbar-left,
    .topbar-right {
        gap: 10px;
    }
}
/* ============================
   TOPBAR – immer zentriert, alle Breakpoints
   ============================ */

/* Grundsätzlich IMMER zentriert – überschreibt ältere flex-end-Regeln */
.topbar .container,
.topbar-inner {
    justify-content: center !important;
}

/* Desktop: viel Platz → mehr Abstand */
@media (min-width: 992px) {
    .topbar-inner {
        gap: 48px;                  /* Abstand zwischen linker/rechter Gruppe */
    }

    .topbar-left,
    .topbar-right {
        gap: 28px;                  /* Abstand zwischen Café / Bäckerei / Mail / Social */
    }
}

/* Mittelbreite: etwas kompakter, aber weiterhin zentriert */
@media (max-width: 991px) and (min-width: 600px) {
    .topbar-inner {
        gap: 32px;
    }

    .topbar-left,
    .topbar-right {
        gap: 20px;
    }
}
