/* ==========================================================================
   City Bowling Köln - Custom Styles
   Consolidated from individual CSS modules
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Bootstrap Overrides
   -------------------------------------------------------------------------- */

:root,
[data-bs-theme=light] {
    --bs-body-color: #ffffff;
    --bs-body-color-rgb: 255, 255, 255;
    --bs-body-bg: #141e33;
    --bs-body-bg-rgb: 20, 30, 51;
    --bs-secondary-color: rgba(255, 255, 255, 0.75);
    --bs-tertiary-color: rgba(255, 255, 255, 0.5);
    --bs-link-color: #d900fc;
    --bs-link-color-rgb: 217, 0, 252;
    --bs-link-hover-color: #d900fc;
    --bs-link-hover-color-rgb: 217, 0, 252;
    --bs-yellow: #f1d348;
    --bs-blue: #18468a;
}

a {
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
    font-family: 'Sansation', sans-serif;
    text-transform: uppercase;
    font-weight: 200;
}

/* --------------------------------------------------------------------------
   3. Body Layout
   -------------------------------------------------------------------------- */

body {
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   4. Logo Top
   -------------------------------------------------------------------------- */

#logotop {
    font-family: 'Sansation', sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 120px;
    text-align: center;
    padding-top: 40px;
}

#logotop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-bottom: 7.292%;  /* 140/1920 = natürliches Seitenverhältnis */
    background-image: url("../img/design-top.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

#logotop img {
    max-height: 80px;
    margin-top: 21px;
}

@media (max-width: 768px) {
    #logotop::before {
        display: none;
    }
    body {
        padding-top: 140px;
    }
}

/* --------------------------------------------------------------------------
   5. Top Buttons
   -------------------------------------------------------------------------- */

#topbuttons {
    position: absolute;
    right: 20px;
    top: 20px;
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */

.navbar {
    background-color: #18102c;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 30px;
    margin-bottom: 30px;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 1.1em;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: #d6bcff;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active {
    color: white !important;
}

.menu-label {
    margin-left: 10px;
    color: white;
    font-size: 0.8em;
}

/* City Button — Zentrales Button-Design mit Trapezform
   Verwendung: .citybutton (Standard), .citybutton-sm, .citybutton-lg
   Farben:     Standard (lila), .citybutton-secondary, .citybutton-success
   Block:      .citybutton-block (volle Breite)
   ========================================================= */

.citybutton {
    position: relative;
    background-color: transparent;
    color: #fff;
    padding: 10px 32px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1;
    text-decoration: none;
    transition: transform 0.2s, color 0s;
    line-height: 1.4;
}

.citybutton::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4c0d99;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    z-index: -1;
    transition: background-color 0.3s;
}

.citybutton:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.03);
}

.citybutton:hover::before {
    background-color: #6427b0;
}

.citybutton:active {
    transform: scale(0.97);
}

/* --- Größen --- */

.citybutton-sm {
    padding: 5px 24px;
    font-size: 0.8em;
    letter-spacing: 0.3px;
}

.citybutton-lg {
    padding: 16px 50px;
    font-size: 1.3em;
    font-weight: 700;
}

/* --- Farb-Varianten --- */

.citybutton-secondary::before {
    background-color: #3a3456;
}

.citybutton-secondary:hover::before {
    background-color: #524a72;
}

.citybutton-success::before {
    background-color: #1a8a3e;
}

.citybutton-success:hover::before {
    background-color: #22b550;
}

/* --- Block (volle Breite) --- */

.citybutton-block {
    display: flex;
    width: 100%;
    text-align: center;
}

/* Dropdown */

.nav-item.dropdown .dropdown-toggle {
    color: white;
    position: relative;
}

.nav-item.dropdown .dropdown-toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    z-index: -1;
    transition: background-color 0.3s;
}

.nav-item.dropdown .dropdown-toggle:hover::before,
.nav-item.dropdown .dropdown-toggle:focus::before {
    background-color: transparent;
}

.dropdown-menu {
    background-color: #4c0d99;
    border: none;
    border-radius: 0;
    width: 190px;
    padding: 0;
}

.dropdown-item {
    color: white;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 10px 20px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #6427b0;
    color: white;
}

.navbar-nav .dropdown-menu.show {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 190px;
    background-color: #4c0d99;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar-toggler {
    background: var(--bs-indigo);
}

/* Navigation Dropdown items (Desktop) */

.nav-item.dropdown {
    width: 200px;
}

/* Responsive Navigation */

@media (max-width: 576px) {
    .navbar-nav {
        margin-top: 20px;
    }

    .navbar-nav .nav-link,
    .dropdown-item,
    .dropdown-toggle,
    .nav-item.dropdown {
        width: 100% !important;
        text-align: center;
        margin-top: 3px;
    }

    .citybutton::before,
    .nav-item.dropdown .dropdown-toggle::before {
        clip-path: none;
        border-radius: 4px;
    }

    .citybutton-lg {
        padding: 12px 30px;
        font-size: 1.1em;
    }

    .dropdown-menu {
        width: 100% !important;
        position: static !important;
        background-color: #4c0d99;
    }
}

@media (max-width: 992px) {
    #main-area {
        margin: 0 12px 0 10px;
    }

    .fixed-top {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */

footer {
    margin-top: auto;
    background: url('../img/hgfooter.png') top center / cover no-repeat;
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover {
    color: #ffb6c1;
}

footer ul {
    padding: 0;
    list-style-type: none;
}

footer h3 {
    color: #ffffff;
    font-size: 1.5em !important;
}

footer .bi {
    width: 20px;
    height: 20px;
    fill: #fff6cd;
    margin-right: 8px;
}

footer .bi:hover {
    fill: #ffeb3b;
}

footer .social {
    margin-top: 20px;
}

.footer-copyright {
    font-size: 0.8em;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   8. Design Line (below logo)
   -------------------------------------------------------------------------- */

.main-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purple-line {
    width: 80%;
    height: 4px;
    background: linear-gradient(to right, #672990, #8c4ab7, #ad68dc);
}

.circle {
    width: 12px;
    height: 12px;
    background: #ad68dc;
    border-radius: 50%;
    margin-left: 5px;
}

/* --------------------------------------------------------------------------
   9. Glow Effect
   -------------------------------------------------------------------------- */

.glow {
    background-color: #395985;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, #672990, #8c4ab7, #ad68dc) 1;
    display: flex;
    transition: box-shadow 0.5s ease;
}

.glow:hover {
    box-shadow: 0 0 15px #9a31e2;
}

.glow .citybutton {
    margin-top: 1rem;
}

/* Mobile Ticket Akkordeon & kompakte Preise */
@media (max-width: 767.98px) {
    .ticket-more-item {
        display: none;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    .ticket-more-item.ticket-more-visible {
        display: block;
    }
    .ticket-toggle-hint {
        display: block;
        text-align: center;
        color: #ad68dc;
        font-size: 0.9rem;
        padding: 6px 0 10px;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    .ticket-toggle-hint:hover {
        color: #c98eef;
    }
    .glow .p-3 {
        padding: 4px 12px !important;
    }
    .glow .col-md-6 h5 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    .glow .col-md-4 h5,
    .glow .col-md-2 h5 {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    .glow p {
        font-size: 0.78rem;
        margin-bottom: 0;
    }
    .col-12.mb-3[data-ticket-group] {
        margin-bottom: 6px !important;
    }
}

/* --------------------------------------------------------------------------
   10. Start Slider / Carousel
   -------------------------------------------------------------------------- */

#startsilder {
    overflow: hidden;
    transition: transform 0.3s ease;
    transform-origin: center;
}

#startsilder .carousel-inner {
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

#startsilder .carousel-item {
    height: 100%;
}

#startsilder .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

#startsilder:hover {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    #startsilder .carousel-inner {
        height: auto;
    }

    #startsilder .carousel-item img {
        height: auto;
        width: 100%;
        object-fit: contain;
    }
}

/* Carousel Title Overlay */
.carousel-caption-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    padding: 0 20px;
    background: none;
    pointer-events: none;
}

.carousel-caption-overlay span {
    color: #ffffff;
    font-family: 'Sansation', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .carousel-caption-overlay span {
        font-size: 1.2rem;
    }
}

/* --------------------------------------------------------------------------
   10b. Hero Carousel (Index Page - Desktop only)
   -------------------------------------------------------------------------- */

@media (min-width: 769px) {
    #hero-carousel-wrapper {
        width: 100%;
        overflow: hidden;
    }

    #hero-carousel-wrapper #startsilder {
        height: 100%;
    }

    #hero-carousel-wrapper #startsilder .carousel-inner {
        height: 100%;
    }

    #hero-carousel-wrapper #startsilder .carousel-item {
        height: 100%;
    }

    #hero-carousel-wrapper #startsilder .carousel-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    #hero-carousel-wrapper #startsilder:hover {
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   11. Google Translate
   -------------------------------------------------------------------------- */

#translate-widget {
    position: absolute;
    left: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 100;
}

#translate-widget .translate-globe {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

#google_translate_element {
    display: block;
}

/* Google Translate: nur das Dropdown zeigen, Branding verstecken */
.goog-te-gadget {
    font-size: 0 !important;
    color: transparent !important;
}

.goog-te-gadget > span,
.goog-te-gadget > div:not(:first-child) {
    display: none !important;
}

.goog-te-gadget .goog-te-combo {
    font-size: 0.8rem !important;
    font-family: 'Raleway', sans-serif !important;
    padding: 3px 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(24, 16, 44, 0.6);
    color: #fff;
    cursor: pointer;
    outline: none;
    -webkit-appearance: auto;
}

.goog-te-gadget .goog-te-combo:hover,
.goog-te-gadget .goog-te-combo:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(24, 16, 44, 0.8);
}

/* Google Translate Toolbar/Banner oben auf der Seite verstecken */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

body { top: 0 !important; }

#translate-reset {
    display: none;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s;
}

#translate-reset:hover {
    background: rgba(244, 67, 54, 0.7);
}

@media (max-width: 767.98px) {
    #translate-widget {
        top: 10px;
        left: 10px;
    }
    #translate-widget .translate-globe {
        width: 16px;
        height: 16px;
    }
}

/* --------------------------------------------------------------------------
   11b. News Ticker
   -------------------------------------------------------------------------- */

.news-ticker {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #18102c, #2a1650, #18102c);
    padding: 10px 0;
    margin-top: 0;
    margin-bottom: 10px;
    white-space: nowrap;
    position: relative;
}

.news-ticker::before,
.news-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.news-ticker::before {
    left: 0;
    background: linear-gradient(to right, #18102c, transparent);
}

.news-ticker::after {
    right: 0;
    background: linear-gradient(to left, #18102c, transparent);
}

.news-ticker-track {
    display: inline-flex;
    animation: tickerScroll 30s linear infinite;
}

.news-ticker-track:hover {
    animation-play-state: paused;
}

.ticker-content {
    display: inline-block;
    padding-right: 0;
    color: #fff;
    font-family: 'Sansation', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
}

.ticker-content strong {
    font-weight: 700;
    color: #fff;
    margin-right: 6px;
}

.ticker-content .ticker-text {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.ticker-star {
    color: #ad68dc;
    margin: 0 18px;
    font-size: 0.6rem;
    vertical-align: middle;
    letter-spacing: 3px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   12. Gallery
   -------------------------------------------------------------------------- */

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(207, 209, 79, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

#overlay img {
    max-width: 80%;
    max-height: 70%;
    opacity: 1;
    transition: opacity 0.5s;
    border-radius: 50px;
    border: 20px solid yellow;
}

#gallery img {
    width: 30%;
    height: auto;
    margin: 10px;
    border-radius: 15px;
}

#overlay button {
    background-color: #18468a;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

#prev {
    position: absolute;
    left: 10px;
}

#next {
    position: absolute;
    right: 10px;
}

#close {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* --------------------------------------------------------------------------
   13. Food Menu / Speisekarte
   -------------------------------------------------------------------------- */

.speisen {
    font-weight: 500;
    font-size: 1.2em;
}

.klein {
    font-size: 0.8em;
    margin-top: -15px;
}

/* --------------------------------------------------------------------------
   14. Rahmen (used in food menu cards)
   -------------------------------------------------------------------------- */

.rahmen {
    background-color: white;
    color: #333;
    padding: 15px;
    border: 1px solid black;
    box-shadow: 0 0 0 15px #fff;
}

/* --------------------------------------------------------------------------
   15. Social Media Icons (Homepage)
   -------------------------------------------------------------------------- */

.social-icons svg {
    width: 48px;
    height: 48px;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-icons .social-icon {
    line-height: 1;
    color: currentColor;
}

.social-icons .social-icon:hover svg,
.social-icons .social-icon:focus-visible svg {
    transform: scale(1.12);
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   16. Iframe Container (360 Grad Ansicht)
   -------------------------------------------------------------------------- */

.rundgang-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(76, 13, 153, 0.3);
    box-shadow: 0 4px 24px rgba(24, 16, 44, 0.25);
    transition: box-shadow 0.3s ease;
}

.rundgang-frame:hover {
    box-shadow: 0 8px 32px rgba(76, 13, 153, 0.35);
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --------------------------------------------------------------------------
   17. Cookie Overlay
   -------------------------------------------------------------------------- */

.cookie-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222a42;
    color: #5e5e5e;
    z-index: 9999;
    padding: 20px;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   18. Design Top Background
   -------------------------------------------------------------------------- */

.design-top-bg {
    background: url("../img/design-top.png") center / cover no-repeat;
    padding: 0;
    margin: 0;
}

/* --------------------------------------------------------------------------
   19. Reservation Sidebar
   -------------------------------------------------------------------------- */

.reservation-sidebar {
}
.reservation-sidebar .form-control,
.reservation-sidebar .form-select {
    background-color: #fff !important;
    color: #333 !important;
    border: 1px solid #ccc !important;
}
.reservation-sidebar .form-control::placeholder {
    color: #999;
}
.reservation-sidebar .form-select option {
    background: #fff;
    color: #333;
}
.reservation-sidebar input[type="date"]::-webkit-datetime-edit,
.reservation-sidebar input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.reservation-sidebar input[type="date"]::-webkit-datetime-edit-text,
.reservation-sidebar input[type="date"]::-webkit-datetime-edit-month-field,
.reservation-sidebar input[type="date"]::-webkit-datetime-edit-day-field,
.reservation-sidebar input[type="date"]::-webkit-datetime-edit-year-field {
    color: #333 !important;
}
.reservation-sidebar input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none;
}

/* --------------------------------------------------------------------------
   20. Highlight Text
   -------------------------------------------------------------------------- */

.hgtext {
    /* Used on pricing and info pages */
}

/* --------------------------------------------------------------------------
   21. Attraction Cards
   -------------------------------------------------------------------------- */

.attraction-card {
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(154, 49, 226, 0.15);
}

.attraction-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(154, 49, 226, 0.5), 0 0 50px rgba(154, 49, 226, 0.25);
    border-color: rgba(168, 85, 247, 0.6);
}

/* --------------------------------------------------------------------------
   22. Mobile Off-Canvas Navigation
   -------------------------------------------------------------------------- */

/* Hide Bootstrap's default toggler and navbar background on mobile */
@media (max-width: 767.98px) {
    .navbar-toggler {
        display: none !important;
    }
    .navbar {
        background-color: transparent !important;
        opacity: 1;
        padding: 0;
        min-height: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* --- Hamburger Toggle Button --- */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    padding: 0;
    z-index: 1050;
    cursor: pointer;
}

.hamburger-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #4c0d99;
    gap: 5px;
    transition: background-color 0.3s;
}

.hamburger-circle:active {
    background-color: #6427b0;
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Animate hamburger to X when menu is open */
.mobile-nav-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Overlay --- */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* --- Off-Canvas Container --- */

.mobile-nav-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background-color: #18102c;
    z-index: 1070;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-nav-offcanvas.is-open {
    transform: translateX(0);
}

/* --- Panels --- */

.mobile-nav-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.mobile-nav-panel.active {
    transform: translateX(0);
}

.mobile-nav-panel.pushed-left {
    transform: translateX(-100%);
}

/* --- Panel Header --- */

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 64px;
}

.mobile-nav-title {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8em;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.mobile-nav-close:hover {
    color: #d6bcff;
}

.mobile-nav-back {
    background: none;
    border: none;
    color: #d6bcff;
    font-size: 1em;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.mobile-nav-back:hover {
    color: #fff;
}

/* --- Navigation List --- */

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background-color: #4c0d99;
    color: #fff;
}

.mobile-nav-reservation {
    margin-top: 20px;
    background-color: #4c0d99;
    justify-content: center;
}

.mobile-nav-arrow {
    font-size: 1.4em;
    color: #d6bcff;
    flex-shrink: 0;
    margin-left: 10px;
}

/* --- Hide on Desktop --- */

@media (min-width: 768px) {
    .mobile-nav-toggle,
    .mobile-nav-overlay,
    .mobile-nav-offcanvas {
        display: none !important;
    }
}

/* --- Prevent body scroll when menu is open --- */

body.mobile-nav-open {
    overflow: hidden;
}

/* btn-reservation-hero — jetzt über .citybutton.citybutton-lg abgebildet */

/* --------------------------------------------------------------------------
   23. Flatrate Cards
   -------------------------------------------------------------------------- */

.flatrate-card {
    background-color: #18102c;
    border: 1px solid rgba(76, 13, 153, 0.4);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #fff;
}

.flatrate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(76, 13, 153, 0.4);
}

.flatrate-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.flatrate-card .card-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.05em;
    color: #fff;
    margin-bottom: 10px;
}

.flatrate-card .card-text {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

.flatrate-badge {
    display: inline-block;
    background-color: #4c0d99;
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.2s;
}

a.flatrate-badge:hover {
    background-color: #6427b0;
    color: #fff;
}

/* --------------------------------------------------------------------------
   24a. Pakete-Vorschau (Startseite)
   -------------------------------------------------------------------------- */

.paket-preview-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    transition: border-color 0.3s, transform 0.3s;
    height: 100%;
}
.paket-preview-card:hover {
    border-color: rgba(168,85,247,0.5);
    transform: translateY(-3px);
    color: #fff;
}
.paket-preview-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.paket-preview-text h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.paket-preview-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   24b. Gallery Preview (Startseite)
   -------------------------------------------------------------------------- */

.gallery-preview-link {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery-preview-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-preview-link:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-preview-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 rgba(100, 39, 176, 0);
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.gallery-preview-link:hover::after {
    box-shadow: inset 0 0 0 3px rgba(100, 39, 176, 0.6);
}

@media (max-width: 767.98px) {
    .gallery-preview-link img {
        height: 150px;
    }
}

/* --------------------------------------------------------------------------
   24. Gutschein-Seite
   -------------------------------------------------------------------------- */

/* Schritt-Anzeige */
.gutschein-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.gutschein-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.gutschein-step span {
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.gutschein-step.active span,
.gutschein-step.completed span {
    opacity: 1;
}

.gutschein-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: transparent;
}

.gutschein-step.active .gutschein-step-circle {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.5);
}

.gutschein-step.completed .gutschein-step-circle {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.gutschein-step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 8px;
    margin-bottom: 24px;
    transition: background 0.3s;
}

.gutschein-step-line.active {
    background: linear-gradient(90deg, #22c55e, #8b5cf6);
}

/* Card mit Rahmen-Effekt */
.gutschein-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.gutschein-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.12), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gutschein-card h4 {
    text-transform: none;
    font-weight: 600;
}

.gutschein-card h4 i {
    color: #a855f7;
}

/* Label-Icons */
.gutschein-card .form-label i {
    color: #a855f7;
    font-size: 1rem;
}

/* Eingabefelder */
.gutschein-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
}

.gutschein-input:focus {
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.gutschein-input::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.gutschein-input option {
    background: #1e293b;
    color: #fff;
}

/* Vorschau-Rahmen */
.gutschein-preview-frame {
    display: inline-block;
    padding: 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.gutschein-preview-frame canvas {
    display: block;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* Erfolgsseite */
.gutschein-success {
    text-align: center;
    border-color: rgba(34, 197, 94, 0.3);
}

.gutschein-success:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.12), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gutschein-success-icon {
    font-size: 4rem;
    color: #22c55e;
    line-height: 1;
}

.gutschein-success-icon i {
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.4));
}

@media (max-width: 767.98px) {
    .gutschein-card {
        padding: 24px 18px;
    }
    .gutschein-step-line {
        width: 30px;
    }
    .gutschein-preview-frame canvas {
        max-width: 280px;
    }
}

/* --------------------------------------------------------------------------
   25. Catering-Seite
   -------------------------------------------------------------------------- */

.catering-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.catering-card:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.1), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.catering-card h4 {
    text-transform: none;
    font-weight: 600;
}

.catering-card-icon {
    font-size: 2.4rem;
    color: #a855f7;
    margin-bottom: 12px;
    line-height: 1;
}

.catering-img-link {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 12px;
    transition: transform 0.3s;
}

.catering-img-link:hover {
    transform: scale(1.02);
}

.catering-img-link img {
    border-radius: 10px;
    transition: filter 0.3s;
}

.catering-img-link:hover img {
    filter: brightness(0.85);
}

.catering-img-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(76, 13, 153, 0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.catering-img-link:hover .catering-img-badge {
    opacity: 1;
}

.catering-cta {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
}

.catering-cta h4 {
    text-transform: none;
    font-weight: 600;
}

.catering-cta h4 i {
    color: #a855f7;
}

@media (max-width: 767.98px) {
    .catering-card {
        padding: 24px 18px;
    }
}

/* --------------------------------------------------------------------------
   26. Firmenfeiern-Seite
   -------------------------------------------------------------------------- */

.firmen-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.firmen-card:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.1), 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.firmen-card h4 {
    text-transform: none;
    font-weight: 600;
}

.firmen-card-icon {
    font-size: 2.4rem;
    color: #a855f7;
    margin-bottom: 12px;
    line-height: 1;
}

.firmen-card-highlight {
    border-color: rgba(139, 92, 246, 0.35);
    background: linear-gradient(135deg, rgba(76, 13, 153, 0.1), rgba(139, 92, 246, 0.05));
}

/* Zahlen-Highlights */
.firmen-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.firmen-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.firmen-stat-number {
    font-family: 'Sansation', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #a855f7;
    line-height: 1;
    text-shadow: 0 0 18px rgba(139, 92, 246, 0.35);
}

.firmen-stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px;
}

@media (max-width: 767.98px) {
    .firmen-card {
        padding: 24px 18px;
    }
    .firmen-stats {
        gap: 16px;
        padding: 20px 12px;
    }
    .firmen-stat-number {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------------------
   27. Anfahrt-Seite
   -------------------------------------------------------------------------- */

.anfahrt-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.anfahrt-card:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.1), 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.anfahrt-card h4 {
    text-transform: none;
    font-weight: 600;
}

.anfahrt-card-icon {
    font-size: 2.4rem;
    color: #a855f7;
    margin-bottom: 12px;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .anfahrt-card {
        padding: 24px 18px;
    }
}
