/* DIE LØGE Custom Overrides */

        /* Mobile Header Layout */
        @media (max-width: 991px) {
            .ak-site_header.ak-style1 .ak-main_header_in {
                justify-content: space-between !important;
            }
            .ak-main_header_right {
                margin-left: auto !important;
            }
        }

        /* Mobile Hamburger Menu */
        .loge-mobile-toggle {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            z-index: 1001;
        }
        .loge-mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--yellow-color);
            transition: all 0.3s;
        }
        .loge-mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.97);
            z-index: 1000;
            transition: right 0.35s ease;
            padding: 100px 40px 40px;
            border-left: 1px solid var(--border-color);
        }
        .loge-mobile-nav.open {
            right: 0;
        }
        .loge-mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .loge-mobile-nav li {
            margin-bottom: 0;
        }
        .loge-mobile-nav a {
            display: block;
            color: #fff;
            font-family: var(--body-font-family);
            font-size: 16px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 3px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(79, 72, 54, 0.3);
            text-decoration: none;
            transition: color 0.3s;
        }
        .loge-mobile-nav a:hover {
            color: var(--yellow-color);
        }
        .loge-hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: url('img/hero_bg.jpg') center center / cover no-repeat;
            overflow: hidden;
        }
        .loge-hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            z-index: 0;
        }
        .loge-hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
            pointer-events: none;
            z-index: 1;
        }
        .loge-hero-section > .container {
            position: relative;
            z-index: 2;
        }
        .loge-hero-badge {
            display: inline-block;
            border: 1px solid var(--yellow-color);
            color: var(--yellow-color);
            padding: 8px 28px;
            font-size: 13px;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-family: var(--body-font-family);
            margin-bottom: 30px;
        }
        .loge-hero-title {
            font-family: var(--heading-font-family);
            font-size: 56px;
            line-height: 1.15;
            color: #fff;
            letter-spacing: 3px;
        }
        .loge-hero-title-outline {
            font-family: var(--heading-font-family);
            font-size: 56px;
            line-height: 1.15;
            letter-spacing: 3px;
            color: transparent;
            -webkit-text-stroke: 1px var(--yellow-color);
        }
        .loge-hero-subtitle {
            color: var(--body-color);
            font-size: 18px;
            max-width: 480px;
            margin-top: 30px;
            line-height: 1.7;
        }
        .loge-hero-info {
            text-align: center;
            padding: 50px 45px;
            border: 1px solid var(--border-color);
            background: rgba(4,13,16,0.75);
            min-width: 300px;
        }
        .loge-hero-info .time-big {
            font-family: var(--heading-font-family);
            font-size: 56px;
            color: var(--yellow-color);
            line-height: 1.1;
            margin: 12px 0 8px;
        }
        .loge-hero-info p {
            margin-bottom: 0;
        }
        .loge-hero-info .loge-divider {
            margin: 20px auto;
        }

        /* Countdown */
        .countdown-item {
            text-align: center;
        }
        .countdown-number {
            font-family: var(--heading-font-family);
            font-size: 48px;
            color: var(--yellow-color);
            line-height: 1;
        }
        .countdown-label {
            font-family: var(--body-font-family);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--body-color);
            margin-top: 8px;
        }
        .countdown-sep {
            font-family: var(--heading-font-family);
            font-size: 48px;
            color: rgba(255,210,141,0.3);
            line-height: 1;
        }

        /* Concept cards */
        .loge-concept-card {
            background: rgba(255,210,141,0.04);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 45px 30px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }
        .loge-concept-card:hover {
            background: rgba(255,210,141,0.08);
            border-color: var(--yellow-color);
            transform: translateY(-5px);
        }
        .loge-concept-card i {
            font-size: 42px;
            color: var(--yellow-color);
            margin-bottom: 25px;
            display: block;
        }
        .loge-concept-card h5 {
            font-family: var(--body-font-family);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 14px;
            color: #fff;
            margin-bottom: 15px;
        }
        .loge-concept-card p {
            color: var(--body-color);
            font-size: 15px;
            line-height: 1.6;
        }

        /* Three acts — theatrical style */
        .loge-act {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            height: 100%;
            min-height: 480px;
        }
        .loge-act-img {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        .loge-act:hover .loge-act-img {
            transform: scale(1.05);
        }
        .loge-act-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(4,13,16,0.95) 0%, rgba(4,13,16,0.6) 50%, rgba(4,13,16,0.2) 100%);
        }
        .loge-act-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            padding: 40px 30px;
        }
        .loge-act-label {
            font-family: var(--body-font-family);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--yellow-color);
            opacity: 0.7;
            margin-bottom: 8px;
        }
        .loge-act-number {
            font-family: var(--heading-font-family);
            font-size: 100px;
            color: rgba(255,210,141,0.45);
            line-height: 1;
            position: absolute;
            top: 25px;
            right: 30px;
            z-index: 2;
        }
        .loge-act h5 {
            font-family: var(--heading-font-family);
            font-size: 28px;
            color: var(--yellow-color);
            margin-bottom: 15px;
        }
        .loge-act p {
            font-size: 15px;
            line-height: 1.7;
        }
        .loge-act-divider {
            width: 40px;
            height: 2px;
            background: var(--yellow-color);
            margin-bottom: 18px;
            opacity: 0.6;
        }

        /* Drinks */
        .loge-drink {
            background: rgba(255,210,141,0.04);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
        }
        .loge-drink:hover {
            background: rgba(255,210,141,0.08);
            transform: translateY(-3px);
        }
        .loge-drink i {
            font-size: 28px;
            color: var(--yellow-color);
            margin-bottom: 15px;
        }
        .loge-drink h6 {
            font-family: var(--body-font-family);
            font-weight: 500;
            font-size: 15px;
            color: #fff;
            margin-bottom: 10px;
        }
        .loge-drink .price {
            font-family: var(--heading-font-family);
            font-size: 24px;
            color: var(--yellow-color);
        }

        /* Dates */
        .loge-date {
            background: rgba(255,210,141,0.04);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 25px 15px;
            text-align: center;
            transition: all 0.3s;
        }
        .loge-date:hover {
            background: rgba(255,210,141,0.08);
        }
        .loge-date.past { opacity: 0.35; }
        .loge-date .day {
            font-family: var(--heading-font-family);
            font-size: 36px;
            color: var(--yellow-color);
            line-height: 1;
        }
        .loge-date .month {
            font-family: var(--body-font-family);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
            margin-top: 5px;
        }
        .loge-date-pause {
            background: transparent;
            border: 1px dashed var(--border-color);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            padding: 25px 15px;
        }
        .loge-date-pause span {
            color: var(--body-color);
            font-style: italic;
            font-size: 14px;
        }

        /* Team — static cards + modal */
        .loge-team {
            text-align: center;
            padding: 30px 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            border-radius: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .loge-team--clickable {
            cursor: pointer;
        }
        .loge-team--clickable:hover,
        .loge-team--clickable:focus-visible {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(255, 210, 141, 0.08);
            outline: none;
        }
        .loge-team-photo {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 16px;
            border: 1px solid var(--yellow-color);
            overflow: hidden;
            margin: 0 auto 22px;
            background: #000;
        }
        .loge-team-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center top;
        }
        .loge-team-photo--icon {
            display: flex; align-items: center; justify-content: center;
        }
        .loge-team-photo--icon i {
            font-size: 48px;
            color: var(--yellow-color);
        }
        .loge-team h5 {
            font-size: 22px;
            margin-bottom: 8px;
        }
        .loge-team .role {
            font-family: var(--body-font-family);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--yellow-color);
            margin-bottom: 14px;
        }
        .loge-team-more {
            margin-top: auto;
            font-family: var(--body-font-family);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--yellow-color);
            opacity: 0.7;
            border-top: 1px solid rgba(255, 210, 141, 0.25);
            padding-top: 12px;
            width: 100%;
        }

        /* Team Modal */
        .loge-team-modal[hidden] { display: none !important; }
        .loge-team-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: logeModalIn 0.25s ease;
        }
        .loge-team-modal-backdrop {
            position: absolute; inset: 0;
            background: rgba(0, 0, 0, 0.88);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            cursor: pointer;
        }
        .loge-team-modal-dialog {
            position: relative;
            max-width: 580px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            background: #080808;
            border: 1px solid var(--yellow-color);
            border-radius: 20px;
            padding: 55px 42px 44px;
            text-align: center;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }
        .loge-team-modal-close {
            position: absolute;
            top: 14px; right: 20px;
            background: none;
            border: none;
            color: var(--yellow-color);
            font-size: 34px;
            line-height: 1;
            cursor: pointer;
            padding: 4px 12px;
            transition: transform 0.2s;
        }
        .loge-team-modal-close:hover { transform: scale(1.15); }
        .loge-team-modal-photo {
            width: 170px;
            height: 170px;
            border-radius: 50%;
            margin: 0 auto 26px;
            overflow: hidden;
            border: 2px solid var(--yellow-color);
            background: #000;
        }
        .loge-team-modal-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center top;
        }
        .loge-team-modal-photo--icon {
            display: flex; align-items: center; justify-content: center;
        }
        .loge-team-modal-photo--icon i {
            font-size: 64px;
            color: var(--yellow-color);
        }
        .loge-team-modal-dialog h3 {
            font-family: var(--heading-font-family);
            font-style: italic;
            color: #fff;
            font-size: 30px;
            margin: 0 0 6px;
        }
        .loge-team-modal-dialog .role {
            font-family: var(--body-font-family);
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--yellow-color);
            margin-bottom: 24px;
        }
        .loge-team-modal-divider {
            width: 60px;
            height: 1px;
            background: var(--yellow-color);
            margin: 0 auto 26px;
            opacity: 0.6;
        }
        .loge-team-modal-quote {
            font-family: var(--heading-font-family);
            font-style: italic;
            font-size: 17px;
            line-height: 1.7;
            color: var(--body-color);
            margin: 0;
        }
        @keyframes logeModalIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }
        @media (max-width: 575px) {
            .loge-team-modal-dialog {
                padding: 48px 24px 32px;
                border-radius: 16px;
            }
            .loge-team-modal-photo {
                width: 130px;
                height: 130px;
                margin-bottom: 20px;
            }
            .loge-team-modal-dialog h3 { font-size: 26px; }
            .loge-team-modal-quote { font-size: 16px; line-height: 1.6; }
        }

        /* Partner cards */
        .loge-partner {
            background: rgba(255,210,141,0.03);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 45px 30px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
        }
        .loge-partner:hover {
            border-color: var(--yellow-color);
        }
        .loge-partner i {
            font-size: 36px;
            color: var(--yellow-color);
            margin-bottom: 20px;
        }
        .loge-partner h5 {
            font-family: var(--body-font-family);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 15px;
            color: var(--yellow-color);
            margin-bottom: 18px;
        }
        .loge-partner p {
            color: var(--body-color);
            font-size: 15px;
            line-height: 1.6;
        }

        /* CTA */
        .loge-cta {
            background: linear-gradient(135deg, rgba(255,210,141,0.08) 0%, rgba(4,13,16,1) 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 60px;
        }

        /* Quote */
        .loge-quote {
            font-family: var(--heading-font-family);
            font-style: italic;
            font-size: 28px;
            color: var(--yellow-color);
            border-left: 3px solid var(--yellow-color);
            padding-left: 25px;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Section label */
        .loge-label {
            font-family: var(--body-font-family);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--yellow-color);
            margin-bottom: 15px;
        }

        /* CTA Button */
        .loge-btn {
            display: inline-block;
            padding: 18px 50px;
            background: var(--yellow-color);
            color: var(--body-bg-color);
            font-family: var(--body-font-family);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .loge-btn:hover {
            background: #ffe4b0;
            color: var(--body-bg-color);
        }

        /* Gold divider */
        .loge-divider {
            width: 60px;
            height: 2px;
            background: var(--yellow-color);
        }

        /* Dresscode box */
        .loge-dresscode-box {
            background: rgba(255,210,141,0.04);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px;
        }
        .loge-dresscode-img {
            height: 500px;
        }
        .loge-dresscode-section {
            position: relative;
        }
        .loge-dresscode-bg-overlay {
            display: none;
        }

        /* Location features */
        .loge-feature-item {
            color: var(--body-color);
            margin-bottom: 8px;
        }
        .loge-feature-item i {
            color: var(--yellow-color);
            margin-right: 10px;
            width: 20px;
        }

        /* Footer custom */
        .loge-footer-logo {
            font-family: var(--heading-font-family);
            font-size: 32px;
            color: #fff;
        }
        .loge-footer-logo span {
            color: var(--yellow-color);
        }

        /* Responsive — Tablet */
        @media (max-width: 991px) {
            .loge-hero-section {
                padding-top: 120px !important;
                min-height: 100vh !important;
                padding-bottom: 80px;
            }
            .loge-hero-section::before {
                background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
            }
            .loge-hero-title, .loge-hero-title-outline {
                font-size: 36px;
            }
            .loge-hero-subtitle {
                font-size: 16px;
            }
            .loge-hero-info {
                margin-top: 30px;
                padding: 30px 25px;
                min-width: unset;
            }
            .loge-hero-info .time-big {
                font-size: 42px;
            }
            .loge-act {
                min-height: 380px;
            }
            .loge-act-number {
                font-size: 70px;
            }
            .loge-act h5 {
                font-size: 22px;
            }
            .loge-concept-card {
                padding: 30px 20px;
            }
            .loge-cta {
                padding: 35px 25px;
            }
            .loge-quote {
                font-size: 22px;
            }
            h2 {
                font-size: 38px !important;
            }
        }

        /* Responsive — Mobile */
        @media (max-width: 575px) {
            .countdown-number {
                font-size: 30px;
            }
            .countdown-sep {
                font-size: 30px;
            }
            .countdown-label {
                font-size: 9px;
                letter-spacing: 2px;
            }
            .loge-hero-section {
                padding-top: 100px !important;
                padding-bottom: 60px;
            }
            .loge-hero-title, .loge-hero-title-outline {
                font-size: 28px;
                letter-spacing: 1px;
            }
            .loge-hero-subtitle {
                font-size: 15px;
                line-height: 1.6;
            }
            .loge-hero-info .time-big {
                font-size: 36px;
            }
            h2 {
                font-size: 28px !important;
            }
            .loge-label {
                font-size: 11px;
                letter-spacing: 3px;
            }
            .loge-act {
                min-height: 320px;
            }
            .loge-act-number {
                font-size: 50px;
                top: 15px;
                right: 20px;
            }
            .loge-act h5 {
                font-size: 20px;
            }
            .loge-act-content {
                padding: 25px 20px;
            }
            .loge-act p, .loge-concept-card p, .loge-partner p {
                font-size: 14px;
                line-height: 1.6;
            }
            .loge-concept-card {
                padding: 25px 18px;
            }
            .loge-concept-card i {
                font-size: 32px;
                margin-bottom: 15px;
            }
            .loge-drink {
                padding: 20px 12px;
            }
            .loge-drink h6 {
                font-size: 13px;
            }
            .loge-drink .price {
                font-size: 20px;
            }
            .loge-date .day {
                font-size: 28px;
            }
            .loge-cta {
                padding: 30px 20px;
            }
            .loge-dresscode-box {
                padding: 25px 20px;
            }
            .loge-dresscode-section {
                background: url('img/dresscode_bg.jpg') center center / cover no-repeat;
            }
            .loge-dresscode-bg-overlay {
                display: block;
                position: absolute;
                top: 0; left: 0; right: 0; bottom: 0;
                background: linear-gradient(to bottom, rgba(4,13,16,0.92) 0%, rgba(4,13,16,0.85) 70%, rgba(4,13,16,0.97) 100%);
            }
            .loge-quote {
                font-size: 20px;
                padding-left: 18px;
            }
            .loge-btn {
                padding: 14px 35px;
                font-size: 12px;
            }
            .loge-feature-item {
                font-size: 14px;
            }
            .ak-height-150 {
                height: 60px !important;
            }
        }

        /* Legal pages (Impressum, Datenschutz) */
        .loge-page {
            background: var(--body-bg-color);
            min-height: 100vh;
        }
        .loge-page-title {
            font-family: var(--heading-font-family);
            font-size: 42px;
            color: #fff;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        .loge-page-content {
            color: var(--body-color);
            font-size: 16px;
            line-height: 1.8;
        }
        .loge-page-content h2,
        .loge-page-content h3,
        .loge-page-content h4 {
            color: #fff;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        .loge-page-content a {
            color: var(--yellow-color);
            text-decoration: underline;
        }
        .loge-page-content a:hover {
            color: #ffe4b0;
        }
        .loge-page-content p {
            margin-bottom: 16px;
        }
        .loge-page-content ul,
        .loge-page-content ol {
            padding-left: 20px;
            margin-bottom: 16px;
        }
        @media (max-width: 575px) {
            .loge-page-title {
                font-size: 28px;
            }
        }