/* ===== SHIPPORI MINCHO FONT ===== */
@font-face {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/shippori-mincho/shippori-mincho-v17-latin-regular.woff2') format('woff2'),
         url('../font/shippori-mincho/shippori-mincho-v17-latin-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../font/shippori-mincho/shippori-mincho-v17-latin-800.woff2') format('woff2'),
         url('../font/shippori-mincho/shippori-mincho-v17-latin-800.ttf') format('truetype');
}

:root {
    --heading-font: 'Shippori Mincho', sans-serif;
}

html {
    background-color: #786f6d;
    /* scroll-behavior: smooth; */
}


/* Custom text shadow utility for registration headings */
.text-shadow-strong {
    text-shadow: 3px 3px 8px rgba(0,0,0,1), 1px 1px 3px rgba(0,0,0,0.8);
}

.text-shadow-medium {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* iOS Safari-style ultra-strong blur effect */
.backdrop-blur-3xl {
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
}

/* ===== RESPONSIVE BACKGROUND ===== */
.responsive-bg {
    background-image: url('../img/bgs/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hotel Navigation CSS */
.hotel-logo-nav {
    display: block;
    text-decoration: none;
}


/* Glass Container Effect */
.glass-container {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
}

/* Dark Glass Effect for Card Registration */
.glass-dark {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

#hotelHeader .glass-container {
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-option--active {
    color: #fff !important;
    background: linear-gradient(135deg, #a38a71 0%, #b8a082 100%) !important;
    box-shadow: 0 12px 25px rgba(163, 138, 113, 0.45);
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    #hotelHeader .bg-black\/80 .bg-black\/30 {
        padding: 8px 16px;
    }
    
    #hotelHeader .space-x-6 {
        gap: 12px;
    }
    
    #hotelHeader a {
        padding: 6px 12px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    #hotelHeader a {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
    
}

/* iOS Safe Area Styling - Bereich hinter Frontkamera/Dynamic Island */
body {
    /* iOS safe area padding */
    padding-top: env(safe-area-inset-top);
}

/* iOS Notch/Dynamic Island Background */
.ios-safe-area-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0px);
    background: #786f6d;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1001;
    pointer-events: none;
}

/* GSAP Sticky Header Animation */
.sticky-header {
    position: fixed;
    top: env(safe-area-inset-top, 0px); /* Sticky header nach Safe Area */
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(120, 111, 109, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-header.active {
    opacity: 1;
    visibility: visible;
}

.sticky-header .logo {
    height: 30px;
    width: auto;
}

/* Animation states */
.header-animating {
    pointer-events: none;
}

.original-header {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.original-header.hiding {
    transform: translateY(-100%);
    opacity: 0;
}

/* Horizontal scrolling for language navigation */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: hidden;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .flex.items-center.space-x-6 {
        min-width: max-content;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .flex.items-center.space-x-6 a {
        white-space: nowrap;
        flex-shrink: 0;
        min-width: auto;
    }
    
    .container.mx-auto.px-4 {
        overflow-x: auto;
    }
    
    }
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font), serif !important;
    font-weight: 800;
    letter-spacing: 1px;
    font-variant-ligatures: common-ligatures;
    word-wrap: break-word;
}
.question-title,
.question-text,
.question-label,
.question-heading,
.faq-question,
.survey-question {
    font-family: var(--heading-font) !important;
}
.cdfont{
    font-family: var(--heading-font) !important;
}
.ct-widget.ct-ignition {
    /*fix für: mmenu überdeckt den oberen teil (navbar + homeslider)*/
    bottom: 120px !important;
    top: auto !important;
    z-index: 999999 !important;
}

strong {
    font-weight: 600 !important;
}

.tags-intern h2,
.tags-intern h3,
.tags-intern h4 {
    margin-top: 35px !important;
    margin-bottom: 25px !important;
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 20px;
    /*line-height: ;*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
}

p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px;
}

@media (max-width: 768px) {
    body {
        font-size: 18px;
    }
    p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    p {
        font-size: 16px;
    }
}



.fit-text {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* .bgpic {
    background: url('../img/bgs/mc-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
} */

/**/
/*navbar*/
/**/
.mburger b {
    color: #d3d3d3;
}

.top-nav-collapse .mburger b {
    color: #fff;
}

.mburger:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.mburger:hover b {
    color: #eee;
}



.navbar figure {
    padding: 10px 0;
}

.navbar .dropdown.multi-level-dropdown .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
}

.navbar .dropdown-menu a:hover {
    background-color: #c9c9e5 !important;
}

.navbar:not(.top-nav-collapse) {
    /*background-color: rgba(91, 91, 91, 0.2) !important;*/
    background: transparent;
    background-color: #142e49 !important;
}

.top-nav-collapse {
    background-color: rgb(47, 47, 58) !important;
    background-color: #142e49 !important;
}

.navbar-brand img {
    width: 150px;
}
.navbar-brand{
    margin-right: 0;
}
.overlay-gradient {
    background-image: linear-gradient(to bottom, rgba(46, 46, 58, 0) 0%, rgba(46, 46, 58, 0.8) 80%, rgba(46, 46, 58, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.glass-effect {
    background: rgba(11, 21, 41, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--mc-border);
    color: var(--mc-text-primary);
}

#topbar {
    background-color: rgba(15, 23, 42, 0.95) !important;
    height: 40px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info, #topbar a {
    color: #e2e8f0;
}

#topbar .contact-info i {
    color: #e2e8f0;
    padding-right: 4px;
}

#topbar .contact-info i + i {
    margin-left: 15px;
}

#topbar .languages ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #d3d3d3;
}
/*
#topbar .languages ul a {
    color: #d3d3d3;
}*/

/*#topbar .languages ul li + li {
    padding-left: 10px;
}*/

#topbar .languages ul li:not(.icon) + li:not(.icon)::before {
    display: inline-block;
    color: #1a2d47;
    content: "/";
}


.navbar.fixed-top {
    top: 40px !important;
    box-shadow: none;
}

.navbar.fixed-top.top-nav-collapse {
    top: 0px !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.navbar.fixed-top.top-nav-collapse .nav-item .nav-link {
    color: #fff;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


[data-overlay]:before {
    background: #2E2E3A;
}

.bgc {
    background-color: #2e2e38;
}

.bgcd {
    background-color: #1a2d47;
}


.bg-gradient {
    background: rgba(70, 88, 122, 1);
    background: -moz-linear-gradient(top, rgba(70, 88, 122, 1) 0%, rgba(43, 57, 74, 1) 100%);
    /*background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(70,88,122,1)), color-stop(100%, rgba(43,57,74,1)));*/
    background: -webkit-linear-gradient(top, rgba(70, 88, 122, 1) 0%, rgba(43, 57, 74, 1) 100%);
    background: -o-linear-gradient(top, rgba(70, 88, 122, 1) 0%, rgba(43, 57, 74, 1) 100%);
    background: -ms-linear-gradient(top, rgba(70, 88, 122, 1) 0%, rgba(43, 57, 74, 1) 100%);
    background: linear-gradient(to bottom, rgba(70, 88, 122, 1) 0%, rgba(43, 57, 74, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#46587a', endColorstr='#2b394a', GradientType=0);
}


/* === mc Modern Overrides === */
:root {
    --mc-bg-base: #0b1324;
    --mc-bg-elevated: #111d33;
    --mc-border: rgba(148, 163, 184, 0.18);
    --mc-highlight: #2563eb;
    --mc-text-primary: #f8fafc;
    --mc-text-secondary: rgba(203, 213, 225, 0.84);
}

.glass-nav {
    background: rgba(26, 45, 71, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 20px rgba(26, 45, 71, 0.35);
}


    .glass-card {
        backdrop-filter: var(--backdrop-blur);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        padding: 40px;
        width: 100%;
        text-align: center;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        position: static;
        margin: 0;
    }
.glass-card-readable {
    background: rgba(12, 24, 46, 0.9);
    color: var(--mc-text-primary);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--mc-border);
    border-radius: 1.1rem;
    box-shadow: 0 24px 52px rgba(5, 12, 29, 0.3);
}

.glass-card-readable:hover {
    box-shadow: 0 32px 64px rgba(5, 12, 29, 0.35);
}

.glass-card-readable a {
    color: rgba(226, 232, 240, 0.85);
}

.glass-card-readable a:hover {
    color: #ffffff;
}

.modern-card {
    background: rgba(13, 24, 44, 0.92);
    border: 1px solid var(--mc-border);
    border-radius: 1.1rem;
    box-shadow: 0 22px 48px rgba(5, 12, 29, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--mc-text-primary);
}

.modern-card:hover {
    box-shadow: 0 30px 60px rgba(5, 12, 29, 0.36);
}

.modern-card h3 {
    color: var(--mc-text-primary);
}

.modern-card p {
    color: var(--mc-text-secondary);
}

.modern-card ul li {
    color: rgba(203, 213, 225, 0.84);
}

.modern-card ul li i {
    color: var(--mc-highlight);
}

.modern-pill {
    background: rgba(13, 24, 44, 0.92);
    border: 1px solid var(--mc-border);
    border-radius: 0.9rem;
    box-shadow: 0 18px 40px rgba(5, 12, 29, 0.28);
    color: rgba(226, 232, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-weight: 500;
}

.modern-pill:hover {
    box-shadow: 0 26px 52px rgba(5, 12, 29, 0.34);
}

.modern-pill i {
    color: var(--mc-highlight);
}

.modern-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 0.35rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(203, 213, 225, 0.72);
}

.modern-news {
    background: rgba(13, 24, 44, 0.92);
    border: 1px solid var(--mc-border);
    border-radius: 1.1rem;
    box-shadow: 0 22px 48px rgba(5, 12, 29, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--mc-text-primary);
}

.modern-news:hover {
    box-shadow: 0 30px 62px rgba(5, 12, 29, 0.38);
}

.modern-news h3 a {
    color: var(--mc-text-primary);
}

.modern-news h3 a:hover {
    color: var(--mc-highlight);
}

.modern-news p {
    color: var(--mc-text-secondary);
}

.modern-news time {
    color: rgba(148, 163, 184, 0.6);
}

.glass-card-readable a {
    color: rgba(248, 250, 252, 0.88);
}

.glass-card-readable a:hover {
    color: #ffffff;
    background-color: rgba(15, 23, 42, 0.22);
}

.btn-primary-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a2d47;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary-glass:hover {
    background-color: #152338;
    box-shadow: 0 16px 36px rgba(26, 45, 71, 0.45);
    color: #fff;
}

.mm-menu-cta a {
    display: block;
    padding: 0.85rem 1.25rem;
    margin: 1rem;
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.8);
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.mm-menu-cta a:hover {
    background: rgba(51, 65, 85, 0.8);
}

.mm-navbar-logo {
    max-height: 36px;
}
/* 
.mburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 46px;
    height: 46px;
} */

.mburger b {
    display: block;
    /* width: 28px;
    height: 2px; */
    background: #fff;
}

/* .bgpic background removed - now handled by fixed div with .responsive-bg */

.rellax {
    will-change: transform;
}


/* ===== MOBILE NAVIGATION - mmenu.js Custom Design ===== */

/* FOUC Prevention - Hide mobile menu until mmenu.js loads */
#menu:not(.mm-menu) {
    display: none;
}

.mm-menu {
    --mm-navbar-size: 60px;
    --mm-offset-top: 0px;
    --mm-offset-right: 0;
    --mm-offset-bottom: 0;
    --mm-offset-left: 0;
    --mm-line-height: 24px;
    --mm-color-border: rgba(11, 11, 12, 0.2);
    
    /* Close Button und Navigation Pfeile */
    --mm-color-button: #fff;
    
    /* Link Farben */
    --mm-color-text: #f5f5f5;
    
    /* Dimmed Text (Icons, Counter) */
    --mm-color-text-dimmed: #999;
    
    /* Hintergrundfarbe des Panels */
    --mm-color-background: #212f48;
    
    /* Hintergrundfarbe bei aufgeklappten Submenus */
    --mm-color-background-highlight: rgba(11, 11, 12, 0.1);
    
    /* Hover Effekt */
    --mm-color-background-emphasis: rgba(11, 11, 12, 0.15);
    
    /* Schatten */
    --mm-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    
    /* Link Höhe */
    --mm-listitem-size: 60px;
    
    /* Menu Breite */
    --mm-sidebar-expanded-size: 320px;
}

/* Stärkere mmenu-Selektoren */
.mm-menu.mm-theme-dark .mm-listitem > .mm-listitem__text {
    background: #212f48 !important;
    color: #0b0b0c !important;
}

.mm-menu.mm-theme-dark {
    background: #212f48 !important;
}

.mm-menu.mm-theme-dark .mm-navbar {
    background: #212f48 !important;
    color: #0b0b0c !important;
}

/* Close Button Styling - stärkere Selektoren */
.mm-menu.mm-theme-dark .mm-btn_close,
.mm-menu .mm-btn_close {
    background: transparent !important;
    color: #0b0b0c !important;
    fill: #0b0b0c !important;
}

.mm-menu.mm-theme-dark .mm-btn_close svg,
.mm-menu .mm-btn_close svg {
    fill: #0b0b0c !important;
    stroke: #0b0b0c !important;
}

/* Close Button Hover */
.mm-menu.mm-theme-dark .mm-btn_close:hover,
.mm-menu .mm-btn_close:hover {
    background: rgba(11, 11, 12, 0.1) !important;
    color: #0b0b0c !important;
}

/* Prev/Back Button */
.mm-menu.mm-theme-dark .mm-btn_prev,
.mm-menu .mm-btn_prev {
    color: #fff !important;
    background: transparent !important;
}

.mm-menu.mm-theme-dark .mm-btn_prev:hover,
.mm-menu .mm-btn_prev:hover {
    background: rgba(11, 11, 12, 0.1) !important;
}
.mm-navbar__title{
  color: #f5f5f5 !important;
  font-weight: 600;
  border-bottom: 1px solid #999 !important;
}
/* Abstand bei Submenus */
.mm-listitem_vertical .mm-listitem .mm-listitem__text {
    margin-right: 15px;
}

/* Panel After Element ausblenden */
.mm-panel:after {
    display: none;
}

/* Navbar Styling */
.mm-navbar {
    background: #212f48 !important;
    border-bottom: 1px solid rgba(11, 11, 12, 0.2) !important;
}

/* Menu Links Styling */
.mm-listitem > .mm-listitem__text {
    font-weight: 500;
    font-size: 16px;
}

/* Active/Selected Items */
.mm-listitem_selected > .mm-listitem__text {
    color: #0b0b0c !important;
    font-weight: 700;
    background: rgba(11, 11, 12, 0.1) !important;
}

/* Submenu Items */
.mm-listitem_vertical .mm-listitem > .mm-listitem__text {
    font-size: 14px;
    opacity: 0.9;
}

/* Footer Navbar */
.mm-navbar_bottom {
    background: #212f48 !important;
    border-top: 1px solid rgba(11, 11, 12, 0.2) !important;
}

/* Footer Icons */
.mm-navbar_bottom a {
    color: #0b0b0c !important;
    font-size: 20px;
    padding: 15px !important;
}

.mm-navbar_bottom a:hover {
    color: #0b0b0c !important;
    background: rgba(11, 11, 12, 0.1) !important;
}

/* Stabilisiere Page Wrapper */
#page {
    position: relative !important;
    min-height: 100vh !important;
}

#topbar {
    will-change: transform;
}
#topbar.topbar-scrolled {
    opacity: 0;
}
#mainNav {
    top: 40px;
}
#mainNav.nav-scrolled {
    top: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Allgemeine Klasse für Corporate Blue Color */
.corporate-blue {
    color: #ffffff !important;
}

/* Spezielle Regel für Weltkugel Icon falls nötig */
#topbar .fas.fa-globe {
    color: #ffffff !important;
}

/* Home survey styles */
body.hotel-feedback-survey {
    --primary-color: #a38a71;
    --secondary-color: #8b7355;
    --accent-color: #d4c4a8;
    --text-color: #ffffff;
    --text-light: rgba(255, 255, 255, 0.75);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(163, 138, 113, 0.3);
    --backdrop-blur: blur(12px);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    width: 100vw;
    color: var(--text-color);
}

body.hotel-feedback-survey::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 0;
}

body.hotel-feedback-survey #feedback-survey {
    position: relative;
    z-index: 1;
}

body.hotel-feedback-survey > * {
    position: relative;
    z-index: 1;
}

body.hotel-feedback-survey.survey-bg-default {
    background-image: url('../img/bgs/bg.jpg');
}

body.hotel-feedback-survey.survey-bg-reception {
    background-image: url('../img/client/reception.jpg');
}

body.hotel-feedback-survey.survey-bg-accommodation {
    background-image: url('../img/client/zimmer.jpg');
}

body.hotel-feedback-survey.survey-bg-restaurant {
    background-image: url('../img/client/restaurant.jpg');
}

body.hotel-feedback-survey.survey-bg-overall {
    background-image: url('../img/client/hotel.jpeg');
}

body.hotel-feedback-survey footer {
    display: none !important;
}

/* Home Login Screen Styles */
body.bgpic.home-login {
    background-image: url('../img/bgs/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow: visible;
    --primary-color: #a38a71;
    --secondary-color: #8b7355;
    --accent-color: #d4c4a8;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(163, 138, 113, 0.3);
    --backdrop-blur: blur(12px);
}

body.bgpic.home-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 0;
}

body.bgpic.home-login > * {
    position: relative;
    z-index: 1;
}

/* Exception for SweetAlert2 */
body.bgpic.home-login .swal2-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
}

body.bgpic.home-login nav,
body.bgpic.home-login footer,
/* Hide header only on actual home-login pages, not on card-registration */
body.bgpic.home-login:not(.card-registration) #backToTop,
body.bgpic.home-login:not(.card-registration) #topbar,
body.bgpic.home-login:not(.card-registration) #mainNav,
body.bgpic.home-login:not(.card-registration) #hotelHeader,
body.bgpic.home-login:not(.card-registration) .navbar {
    display: none !important;
}

/* Show header on card registration pages even with bgpic class */
body.bgpic.card-registration #hotelHeader {
    display: block !important;
}

/* Mobile fix for background images */
@media (max-width: 768px) {
    body.hotel-feedback-survey,
    body.bgpic.home-login {
        background-attachment: scroll;
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
    }
}

.survey-container {
    padding: 0 20px 20px;
    display: block;
    position: static;
    height: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
}

.survey-screen {
    display: none;
    padding: 0 20px 20px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: static;
    height: auto;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

.survey-screen.active {
    display: block;
}



.question-progress {
    margin-top: 0;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fde047 0%, #f97316 100%);
}

.question-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.question-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(250, 204, 21, 0.6);
    border-radius: 9999px;
    color: var(--text-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.back-button {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    padding: 8px 18px;
    background: rgba(128, 128, 128, 0.3);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(250, 204, 21, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.welcome-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
    hyphens: auto;
}

.welcome-title-secondary {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.welcome-title-arabic {
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    direction: rtl;
}

.question-title,
.thank-you-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.urban-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-text {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--urban-gold);
    letter-spacing: 8px;
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-subtitle {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-color);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.smiley-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.smiley-icon-preview {
    font-size: 2.5rem;
}



.welcome-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

.welcome-text-french {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.thank-you-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-translations {
    margin: 1.5rem 0 2.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.question-en,
.question-fr {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0.5rem 0;
    font-style: italic;
    font-weight: bold;
}

.smiley-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 4px;
}

@media (max-width: 768px) {
    .star-options {
        gap: 8px;
        padding: 15px;
    }
}

.smiley-options::-webkit-scrollbar,
.star-options::-webkit-scrollbar {
    display: none;
}

.smiley-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    min-width: 110px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.star-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    min-width: auto;
}

.star-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: nowrap;
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15); */
    padding: 10px;
}

@media (max-width: 768px) {
    .star-icon i {
        font-size: 1.8rem !important;
    }
    
    .star-label {
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }
}

.star-btn.selected .star-icon i {
    color: #fbbf24;
}

.star-btn.selected .star-icon i::before {
    content: "\f005"; /* filled star */
    font-weight: 900;
}

.star-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.smiley-btn:hover,
.star-btn:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}


.smiley-icon,
.star-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}


.smiley-label,
.star-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.smiley-bad:hover {
    border-color: #ef4444;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.smiley-neutral:hover {
    border-color: #f59e0b;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.smiley-good:hover {
    border-color: #10b981;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.smiley-btn.selected {
    border-color: var(--primary-color);
    background: rgba(163, 138, 113, 0.2);
}


.start-button,
.restart-button {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.start-button:hover,
.restart-button:hover {
    box-shadow: 0 10px 25px rgba(163, 138, 113, 0.4);
    background: #9c8068;
}

.thank-you-title-secondary {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.thank-you-title-arabic {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    direction: rtl;
}

.thank-you-text-french {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .welcome-title,
    .question-title,
    .thank-you-title {
        font-size: 2rem;
    }
    
    .smiley-options,
    .star-options {
        gap: 12px;
    }
    
    .smiley-btn,
    .star-btn {
        /* min-width: 80px; */
        padding: 14px 10px;
    }
    
    .smiley-icon {
        font-size: 2.5rem;
    }
    
    .smiley-label {
        font-size: 0.75rem;
    }
    
    .question-counter {
        padding: 6px 12px;
        font-size: 12px;
        position: static;
        margin-bottom: 15px;
    }
    
    .hotel-logo-img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .smiley-options,
    .star-options {
        gap: 10px;
        padding: 4px;
    }
    
    .smiley-btn {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .star-btn {

        padding: 12px 8px;
    }
    
    .smiley-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .smiley-label {
        font-size: 0.7rem;
    }
}

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
    .smiley-btn:hover {
        border-color: transparent;
        background: transparent;
        box-shadow: none;
    }
    
    .smiley-btn:active {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Google Review Prompt Styles */
.google-review-title {
    font-size: 1.5rem;
    line-height: 1.3;
    white-space: normal;
}

.google-review-text {
    margin: 2rem 0;
}

.google-review-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.google-review-button {
    text-decoration: none;
    margin: 0;
}

.google-skip-button {
    background: #6b7280;
}

/* Star Submit Button */
.star-submit-btn {
    margin-top: 2rem;
}

/* GSAP Animation Styles */
.card-registration-container {
    will-change: auto;
}

.main-registration-card {
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

.feature-card {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.feature-icon {
    will-change: transform;
    backface-visibility: hidden;
}

.feature-content {
    will-change: transform;
}

.form-field {
    will-change: transform, opacity;
}

.submit-button {
    will-change: transform, opacity, box-shadow;
    backface-visibility: hidden;
}

.card-number-badge {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.welcome-text-box {
    will-change: transform, opacity;
}

/* Smooth GPU acceleration for GSAP */
.main-registration-card,
.feature-card,
.feature-icon,
.form-field,
.submit-button,
.card-number-badge,
.welcome-text-box {
    transform: translateZ(0);
}

/* Improved shadow for animated elements */
.feature-card {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.submit-button {
    box-shadow: 0 10px 25px -5px rgba(163, 138, 113, 0.2), 0 0 20px rgba(163, 138, 113, 0.3);
}

/* Pulse Animation für Submit Button */
.pulse-button {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Enhanced Navigation Animation Styles */
.nav-header {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.logo-container {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.logo-glass {
    will-change: transform, opacity, box-shadow;
    backface-visibility: hidden;
}

.nav-logo {
    will-change: transform, filter;
    backface-visibility: hidden;
}

.lang-nav-container {
    will-change: transform, opacity, box-shadow;
    backface-visibility: hidden;
}

.lang-option {
    will-change: transform, opacity, box-shadow;
    backface-visibility: hidden;
    cursor: pointer;
}

.globe-icon {
    will-change: transform;
    backface-visibility: hidden;
}

.sticky-header {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Smooth GPU acceleration for nav elements */
.nav-header,
.logo-container,
.logo-glass,
.nav-logo,
.lang-nav-container,
.lang-option,
.globe-icon,
.sticky-header {
    transform: translateZ(0);
}

/* Enhanced active language styling */
.lang-option--active {
    background: linear-gradient(135deg, #a38a71 0%, #b8a082 100%) !important;
    box-shadow: 0 8px 25px rgba(163, 138, 113, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover states (fallback for non-GSAP browsers) */
.lang-option:hover:not(.lang-option--active) {
    background: rgba(255, 255, 255, 0.1);
}

/* Micro-interaction styles */
.hotel-logo-nav {
    display: block;
    text-decoration: none;
    transform: none !important;
    transition: none !important;
}

.hotel-logo-nav:hover {
    transform: none !important;
}

.hotel-logo-nav img {
    transform: none !important;
    transition: none !important;
}

.hotel-logo-nav img:hover {
    transform: none !important;
}

/* Remove conflicting Tailwind transitions */
.lang-option {
    transition: none !important;
}

.nav-logo {
    transition: none !important;
    transform: none !important;
}

.nav-logo:hover {
    transform: none !important;
    filter: none !important;
}

/* Force remove ANY rotation/transform effects on logo elements */
a.hotel-logo-nav,
a.hotel-logo-nav:hover,
a.hotel-logo-nav:focus,
a.hotel-logo-nav:active,
.hotel-logo-nav,
.hotel-logo-nav:hover,
.hotel-logo-nav:focus,
.hotel-logo-nav:active,
.nav-logo,
.nav-logo:hover,
.nav-logo:focus,
.nav-logo:active,
img.nav-logo,
img.nav-logo:hover,
img.nav-logo:focus,
img.nav-logo:active {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    rotate: none !important;
    scale: none !important;
    filter: none !important;
}

/* ===========================================================================
   DiCon home (verschoben aus pages/home.htm — scoped unter .dc / dc-*)
   =========================================================================== */
:root{
    --sand:#9c8871; --sand-light:#bf9f7f; --sepia:#8a7059; --sepia-dark:#73593b;
    --panel:rgba(28,22,17,.62);
    --panel-strong:rgba(24,18,13,.86);
    --hairline:rgba(255,255,255,.12);
    --hairline-2:rgba(255,255,255,.18);
    --shadow:0 8px 24px rgba(0,0,0,.30);
    --r:18px;
    --dc-max:560px;   /* zentrale Spaltenbreite: Handy schmal, ab Tablet breiter (s. u.) */
}
/* Spalte auf größeren Screens verbreitern — gilt einheitlich für Startseite,
   Bottom-Sheets und Vollbild-Overlays (alle nutzen var(--dc-max)). */
@media (min-width:600px){ :root{ --dc-max:640px; } }
@media (min-width:900px){ :root{ --dc-max:720px; } }
body{ font-family:'Montserrat','Noto Naskh Arabic','Noto Sans SC','Poppins',system-ui,sans-serif; }
.dc h1,.dc h2,.dc-sheet-title{ font-family:'Shippori Mincho','Noto Naskh Arabic','Noto Sans SC',serif; }
html[dir="rtl"] .dc-greet{ text-align:center; }
html[dir="rtl"] .dc-item-desc,html[dir="rtl"] .dc-cat-title{ text-align:right; }

.dc{
    min-height:100svh;
    display:flex; flex-direction:column;
    gap:clamp(12px,2.2dvh,18px);
    padding:
        calc(env(safe-area-inset-top) + 14px)
        clamp(16px,5vw,22px)
        calc(env(safe-area-inset-bottom) + 12px);
    max-width:var(--dc-max); margin:0 auto;
}

/* Header */
.dc-header{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.dc-logo{ height:34px; width:auto; filter:drop-shadow(0 2px 6px rgba(0,0,0,.45)); }
.dc-lang-trigger{
    display:inline-flex; align-items:center; gap:7px;
    padding:8px 12px; min-height:40px;
    background:var(--panel); border:1px solid var(--hairline); border-radius:999px;
    color:#fff; font-size:13px; font-weight:600; letter-spacing:.02em;
    box-shadow:var(--shadow); cursor:pointer; transition:transform .15s, background .2s;
}
.dc-lang-trigger:active{ transform:scale(.96); background:var(--panel-strong); }
.dc-lang-trigger .fa-globe{ font-size:14px; color:var(--sand-light); }
.dc-chev{ font-size:10px; opacity:.7; }

/* Greeting */
.dc-greet{ text-align:center; margin:12px 0 16px; }
.dc-h1{ font-size:clamp(24px,6.4vw,30px); font-weight:800; line-height:1.05; letter-spacing:.01em;
        margin:6px 0; text-shadow:0 2px 10px rgba(0,0,0,.5); }
.dc-sub{ margin-top:8px; font-size:13.5px; font-weight:400; color:rgba(255,255,255,.86);
        text-shadow:0 1px 6px rgba(0,0,0,.5); }

/* Wi-Fi bar */
.dc-wifi{
    display:flex; align-items:center; gap:14px; width:100%;
    padding:14px 16px; min-height:64px;
    background:linear-gradient(100deg, rgba(156,136,113,.30), var(--panel));
    border:1px solid var(--hairline-2); border-radius:var(--r);
    box-shadow:var(--shadow); color:#fff; text-align:left; cursor:pointer;
    transition:transform .15s, box-shadow .2s;
}
.dc-wifi:active{ transform:scale(.985); }
.dc-wifi-ic{
    flex:0 0 auto; width:42px; height:42px; border-radius:12px;
    display:grid; place-items:center; font-size:18px;
    background:rgba(191,159,127,.30); color:#fff; border:1px solid var(--hairline-2);
}
.dc-wifi-tx{ display:flex; flex-direction:column; line-height:1.2; flex:1 1 auto; }
.dc-wifi-t{ font-size:15px; font-weight:700; letter-spacing:.02em; }
.dc-wifi-s{ font-size:12.5px; color:rgba(255,255,255,.78); }
.dc-wifi-arr{ opacity:.7; font-size:14px; }

/* Header actions + compact Wi-Fi pill */
.dc-header-actions{ display:inline-flex; align-items:center; gap:8px; }
.dc-wifi-mini{
    display:inline-flex; align-items:center; gap:6px;
    padding:8px 12px; min-height:40px;
    background:var(--panel); border:1px solid var(--hairline); border-radius:999px;
    color:#fff; font-size:13px; font-weight:600; letter-spacing:.02em;
    box-shadow:var(--shadow); cursor:pointer; transition:transform .15s, background .2s;
}
.dc-wifi-mini:active{ transform:scale(.96); background:var(--panel-strong); }
.dc-wifi-mini .fa-wifi{ font-size:14px; color:var(--sand-light); }
@media (max-width:359px){ .dc-wifi-mini-t{ display:none; } }

/* Room Service — primary call-to-action bar */
.dc-rs{
    display:flex; align-items:center; gap:14px; width:100%;
    padding:16px 18px; min-height:74px;
    /* darker brown ramp so the white text stays high-contrast (WCAG AA, both stops) */
    background:linear-gradient(120deg, #7a5e3f, #4a3826);
    border:1px solid rgba(255,255,255,.14); border-radius:var(--r);
    box-shadow:0 10px 28px rgba(74,56,38,.45), var(--shadow);
    color:#fff; text-align:left; cursor:pointer;
    transition:transform .15s, box-shadow .2s;
    /* animate in like the service tiles for a consistent entrance */
    opacity:0; animation:dcIn .55s ease-out forwards; animation-delay:.02s;
}
.dc-rs:active{ transform:scale(.985); }
.dc-rs-ic{
    flex:0 0 auto; width:46px; height:46px; border-radius:13px;
    display:grid; place-items:center; font-size:20px;
    background:rgba(255,255,255,.18); color:#fff; border:1px solid rgba(255,255,255,.28);
}
.dc-rs-tx{ display:flex; flex-direction:column; line-height:1.2; flex:1 1 auto; }
/* body font (Montserrat) for consistency with every other button — not the heading serif */
.dc-rs-t{ font-size:17px; font-weight:700; letter-spacing:.01em; }
.dc-rs-s{ font-size:12.5px; color:rgba(255,255,255,.9); margin-top:2px; }
.dc-rs-arr{ opacity:.85; font-size:15px; }
[dir="rtl"] .dc-rs-arr{ transform:scaleX(-1); }

/* Room Service hub cards (inside the sheet) */
.dc-rs-card{
    display:flex; align-items:center; gap:14px; width:100%;
    padding:14px 16px; min-height:64px; margin-bottom:10px;
    background:var(--panel); border:1px solid var(--hairline-2); border-radius:14px;
    box-shadow:var(--shadow); color:#fff; text-align:left; cursor:pointer;
    transition:transform .15s, background .2s;
}
.dc-rs-card:active{ transform:scale(.985); background:var(--panel-strong); }
.dc-rs-card-ic{
    flex:0 0 auto; width:44px; height:44px; border-radius:12px;
    display:grid; place-items:center; font-size:18px;
    color:var(--sand-light); background:rgba(191,159,127,.16); border:1px solid var(--hairline);
}
.dc-rs-card-tx{ display:flex; flex-direction:column; line-height:1.25; flex:1 1 auto; }
.dc-rs-card-t{ font-size:15px; font-weight:700; }
.dc-rs-card-s{ font-size:12.5px; color:rgba(255,255,255,.72); margin-top:2px; }
.dc-rs-card-arr{ opacity:.6; font-size:13px; }
[dir="rtl"] .dc-rs-card-arr{ transform:scaleX(-1); }

/* Green "call direct" button (Morocco flag green) + side-by-side button row */
.dc-btn.is-green{ background:linear-gradient(120deg,#006233,#014a26); border:1px solid rgba(255,255,255,.14); }
.dc-btn-row{ display:flex; gap:10px; align-items:stretch;
             margin-top:16px; margin-bottom:calc(env(safe-area-inset-bottom) + 10px); }
.dc-btn-row > .dc-btn{ flex:1 1 0; min-width:0; margin-top:0; }
.dc-callrow-call{ display:flex; align-items:center; justify-content:center; gap:8px; }

/* Home header favorites heart (only shown once a dish is saved) */
.dc-home-fav{ position:relative; display:inline-flex; align-items:center; justify-content:center;
              width:40px; height:40px; border-radius:999px;
              background:var(--panel); border:1px solid var(--hairline);
              color:var(--ma-red,#c0392b); font-size:16px; box-shadow:var(--shadow);
              cursor:pointer; transition:transform .15s, background .2s; }
.dc-home-fav:active{ transform:scale(.94); background:var(--panel-strong); }
.dc-home-fav-badge{ position:absolute; top:-3px; right:-3px; min-width:17px; height:17px; padding:0 4px;
                    border-radius:999px; background:var(--ma-red,#c0392b); color:#fff;
                    font-size:10.5px; font-weight:800; line-height:17px; text-align:center;
                    box-shadow:0 0 0 2px rgba(14,10,6,.9); }

/* Spa intro paragraph atop the Spa overlay */
.dc-spa-intro{ margin:14px 0 4px; font-size:13.5px; line-height:1.5; color:rgba(255,255,255,.82); }

/* Tiles */
.dc-tiles{
    display:grid; grid-template-columns:1fr 1fr;
    gap:clamp(10px,2.6vw,14px);
    flex:1 1 auto; align-content:stretch;
}
.dc-tile{
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:12px; min-height:clamp(128px,17.5dvh,164px);
    padding:16px;
    background:var(--panel); border:1px solid var(--hairline); border-radius:var(--r);
    box-shadow:var(--shadow); color:#fff; text-align:center; cursor:pointer;
    transition:transform .15s, background .2s, border-color .2s;
    opacity:0; animation:dcIn .55s ease-out forwards; animation-delay:calc(var(--i) * .06s + .05s);
}
.dc-tile:active{ transform:scale(.97); background:var(--panel-strong); border-color:var(--hairline-2); }
.dc-tile-ic{
    font-size:23px; color:#fff;
    width:46px; height:46px; border-radius:13px; display:grid; place-items:center;
    background:rgba(191,159,127,.16); border:1px solid var(--hairline);
}
.dc-tile-l{ font-size:15px; font-weight:600; line-height:1.18; letter-spacing:.01em; }

/* Footer */
.dc-footer{ text-align:center; font-size:11.5px; color:rgba(255,255,255,.6); padding-top:2px; }
.dc-foot-link{ color:rgba(255,255,255,.66); text-decoration:none; }
.dc-foot-link:active{ color:#fff; }
.dc-foot-dot{ margin:0 6px; }

/* ===== Sheets ===== */
.dc-scrim{ position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:40;
           opacity:0; transition:opacity .25s; }
.dc-scrim.is-open{ opacity:1; }
.dc-sheet{
    position:fixed; left:0; right:0; bottom:0; z-index:50;
    max-width:var(--dc-max); margin:0 auto;
    max-height:88svh; display:flex; flex-direction:column;
    background:var(--panel-strong);
    border-top-left-radius:22px; border-top-right-radius:22px;
    border:1px solid var(--hairline-2); border-bottom:0;
    box-shadow:0 -10px 40px rgba(0,0,0,.45);
    transform:translateY(100%); transition:transform .3s cubic-bezier(.32,.72,0,1);
    padding-bottom:env(safe-area-inset-bottom);
}
.dc-sheet.is-open{ transform:translateY(0); }
.dc-sheet-grab{ width:40px; height:4px; border-radius:99px; background:rgba(255,255,255,.28);
                margin:9px auto 2px; }
.dc-sheet-head{ display:flex; align-items:center; justify-content:space-between;
                padding:8px 18px 12px; border-bottom:1px solid var(--hairline); }
.dc-sheet-title{ font-size:19px; font-weight:800; }
.dc-sheet-x{ width:34px; height:34px; border-radius:50%; display:grid; place-items:center;
             background:rgba(255,255,255,.10); border:1px solid var(--hairline); color:#fff;
             font-size:15px; cursor:pointer; }
.dc-sheet-x:active{ background:rgba(255,255,255,.2); }
.dc-sheet-body{ padding:16px 18px 22px; overflow-y:auto; -webkit-overflow-scrolling:touch; }

/* Sheet content helpers */
.dc-row{ display:flex; align-items:center; justify-content:space-between; gap:12px;
         padding:13px 0; border-bottom:1px solid var(--hairline); }
.dc-row:last-child{ border-bottom:0; }
.dc-row-k{ font-size:12.5px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.06em; }
.dc-row-v{ font-size:15px; font-weight:600; }
.dc-p{ font-size:14px; line-height:1.55; color:rgba(255,255,255,.84); margin:0 0 12px; }
.dc-btn{
    display:flex; align-items:center; justify-content:center; gap:9px; width:100%;
    padding:14px; min-height:50px; margin-top:8px;
    background:linear-gradient(100deg,var(--sand),var(--sepia)); color:#fff;
    border:0; border-radius:14px; font-size:15px; font-weight:700; letter-spacing:.02em;
    text-decoration:none; cursor:pointer; box-shadow:var(--shadow);
}
.dc-btn:active{ transform:scale(.985); }
.dc-btn.is-ghost{ background:rgba(255,255,255,.08); border:1px solid var(--hairline-2); }
.dc-hint{ display:flex; gap:9px; align-items:flex-start; margin-top:12px; padding:11px 13px;
          background:rgba(255,255,255,.06); border:1px solid var(--hairline); border-radius:12px;
          font-size:13px; color:rgba(255,255,255,.82); line-height:1.45; }
.dc-hint b{ color:#fff; }
.dc-soon{ margin-top:14px; font-size:12px; color:rgba(255,255,255,.55); text-align:center; font-style:italic; }
.dc-pw{ display:flex; align-items:center; gap:10px; }
.dc-pw code{ font-family:'Montserrat',monospace; letter-spacing:.12em; font-size:16px; font-weight:600; }
.dc-mini{ width:36px; height:36px; border-radius:10px; display:grid; place-items:center;
          background:rgba(255,255,255,.10); border:1px solid var(--hairline); color:#fff; cursor:pointer; }

/* Language list */
.dc-lang-list{ list-style:none; margin:0; padding:0; }
.dc-lang-opt{ width:100%; text-align:center; padding:15px 6px; font-size:16px; font-weight:500;
              background:transparent; border:0; border-bottom:1px solid var(--hairline); color:#fff; cursor:pointer; }
.dc-lang-opt.is-active{ color:var(--sand-light); font-weight:700; }
.dc-lang-opt[dir="rtl"]{ text-align:center; }
.dc-lang-list li:last-child .dc-lang-opt{ border-bottom:0; }

/* Toast */
.dc-toast{ position:fixed; left:50%; bottom:calc(env(safe-area-inset-bottom) + 26px); transform:translateX(-50%) translateY(12px);
           z-index:60; background:var(--panel-strong); border:1px solid var(--hairline-2);
           color:#fff; font-size:14px; font-weight:600; padding:11px 18px; border-radius:999px;
           box-shadow:var(--shadow); opacity:0; transition:opacity .2s, transform .2s; }
.dc-toast.is-open{ opacity:1; transform:translateX(-50%) translateY(0); }
.dc-toast .fa-check{ color:#8fd19e; }

/* 360° Tour tile (full width, below the 6 service tiles) */
.dc-tour-tile{ grid-column:1 / -1; flex-direction:row; justify-content:center; gap:12px;
               min-height:60px; padding:14px 16px;
               background:linear-gradient(100deg, rgba(191,159,127,.30), var(--panel));
               border-color:var(--hairline-2); animation-delay:calc(7 * .06s + .05s); }
.dc-tour-tile .dc-tile-ic{ width:42px; height:42px; font-size:20px; }

/* Fullscreen tour overlay */
.dc-tour{ position:fixed; inset:0; z-index:70; background:#06040a; display:flex; flex-direction:column;
          transform:translateY(100%); transition:transform .35s cubic-bezier(.32,.72,0,1); }
.dc-tour.is-open{ transform:translateY(0); }
.dc-tour-head{ display:flex; align-items:center; justify-content:space-between; gap:12px;
               padding:calc(env(safe-area-inset-top) + 10px) 16px 10px; background:rgba(0,0,0,.55); }
.dc-tour-title{ font-weight:700; font-size:15px; display:inline-flex; gap:9px; align-items:center; }
.dc-tour-title i{ color:var(--sand-light); }
.dc-tour-x{ width:38px; height:38px; border-radius:50%; display:grid; place-items:center;
            background:rgba(255,255,255,.12); border:1px solid var(--hairline); color:#fff; font-size:16px; cursor:pointer; }
.dc-tour-frame{ flex:1; position:relative; background:#000; }
.dc-tour-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
/* Eigenes Branding-Band statt Matterport-Logo: deckt die untere Showcase-Leiste (Logo + Help/Terms) ab, Navigation bleibt frei darüber. */
.dc-tour-brand{ position:absolute; left:0; right:0; bottom:0; z-index:3; height:53px;
                display:flex; align-items:center; justify-content:flex-end; padding:0 20px;
                background:#06040a; }
.dc-tour-brand-logo{ height:22px; width:auto; opacity:.92; filter:drop-shadow(0 1px 3px rgba(0,0,0,.5)); }

/* ===== Dining menu overlay ===== */
.dc-menu{ position:fixed; inset:0; z-index:65; background:#141009; display:flex; flex-direction:column;
          transform:translateY(100%); transition:transform .35s cubic-bezier(.32,.72,0,1); }
.dc-menu.is-open{ transform:translateY(0); }
/* Inhalt der Vollbild-Overlays (Speisen, Spa) auf dieselbe zentrierte 560px-Spalte
   wie Startseite und Bottom-Sheets begrenzen; dunkler Hintergrund bleibt randlos. */
.dc-menu > .dc-menu-head,
.dc-menu > .dc-dine-pick,
.dc-menu > .dc-menu-view,
.dc-menu > .dc-menu-body{ width:100%; max-width:var(--dc-max); margin-inline:auto; }
.dc-menu-head{ display:flex; align-items:center; justify-content:space-between; gap:12px;
               padding:calc(env(safe-area-inset-top) + 12px) 18px 12px; border-bottom:1px solid var(--hairline); }
.dc-menu-title{ font-family:'Shippori Mincho',serif; font-size:19px; font-weight:800; display:inline-flex; gap:9px; align-items:center; }
.dc-menu-title i{ color:var(--sand-light); font-size:16px; }
.dc-menu-x{ width:36px; height:36px; border-radius:50%; display:grid; place-items:center;
            background:rgba(255,255,255,.10); border:1px solid var(--hairline); color:#fff; font-size:16px; cursor:pointer; }
.dc-menu-areas{ display:flex; gap:8px; padding:12px 18px 4px; }
.dc-area-tab{ flex:1; padding:9px 12px; border-radius:999px; font-size:13.5px; font-weight:600;
              background:var(--panel); border:1px solid var(--hairline); color:rgba(255,255,255,.8); cursor:pointer; }
.dc-area-tab.is-active{ background:linear-gradient(100deg,var(--sand),var(--sepia)); color:#fff; border-color:transparent; }
.dc-menu-filters{ display:flex; gap:8px; padding:10px 18px; overflow-x:auto; -webkit-overflow-scrolling:touch; }
.dc-chip{ flex:0 0 auto; padding:7px 13px; border-radius:999px; font-size:12.5px; font-weight:600; white-space:nowrap;
          background:rgba(255,255,255,.06); border:1px solid var(--hairline); color:rgba(255,255,255,.82); cursor:pointer; }
.dc-chip.is-active{ background:var(--sand-light); color:#2a2018; border-color:transparent; }
.dc-menu-body{ flex:1; overflow-y:auto; -webkit-overflow-scrolling:touch;
               padding:0 18px calc(env(safe-area-inset-bottom) + 88px); }
.dc-cat{ margin-top:18px; }
.dc-cat-title{ font-family:'Shippori Mincho',serif; font-size:15px; font-weight:800; color:var(--sand-light);
               text-transform:uppercase; letter-spacing:.06em; padding-bottom:6px; border-bottom:1px solid var(--hairline); margin:0 0 4px; }
.dc-item{ padding:11px 0; border-bottom:1px solid var(--hairline); }
.dc-item:last-child{ border-bottom:0; }
.dc-item-top{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; }
.dc-item-name{ font-size:15px; font-weight:600; }
.dc-item-price{ font-size:14px; font-weight:700; color:var(--sand-light); white-space:nowrap; }
.dc-item-desc{ font-size:12.5px; color:rgba(255,255,255,.66); margin:3px 0 0; line-height:1.4; }
.dc-item-tags{ display:flex; flex-wrap:wrap; gap:6px; margin-top:7px; }
/* diet type + allergens share one neutral look (no colour highlight) */
.dc-badge,.dc-aller{ font-size:10.5px; font-weight:400; padding:2px 8px; border-radius:999px; background:rgba(255,255,255,.07);
           border:1px solid var(--hairline); color:rgba(255,255,255,.7); }
.dc-menu-empty{ text-align:center; color:rgba(255,255,255,.6); font-size:14px; padding:30px 0; }

/* Promotion banner atop the restaurant menu (same brown ramp as the Room-Service
   CTA, white text passes WCAG AA on both gradient stops). */
.dc-promo{ display:flex; align-items:center; gap:12px; width:100%; text-align:left;
           margin:2px 0 14px; padding:13px 14px; border-radius:var(--r); cursor:pointer;
           background:linear-gradient(120deg,#7a5e3f,#4a3826);
           border:1px solid rgba(255,255,255,.14); color:#fff;
           box-shadow:0 8px 22px rgba(74,56,38,.40);
           transition:transform .15s, box-shadow .2s; }
.dc-promo:active{ transform:scale(.99); }
.dc-promo-ic{ flex:0 0 auto; width:36px; height:36px; border-radius:10px; display:grid; place-items:center;
              background:rgba(255,255,255,.14); font-size:15px; color:#fff; }
.dc-promo-tx{ display:flex; flex-direction:column; line-height:1.25; flex:1 1 auto; min-width:0; }
.dc-promo-t{ font-size:15px; font-weight:700; }
.dc-promo-s{ font-size:12px; color:rgba(255,255,255,.9); margin-top:2px;
             white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dc-promo-arr{ flex:0 0 auto; opacity:.7; font-size:13px; }
[dir="rtl"] .dc-promo-arr{ transform:scaleX(-1); }

html[dir="rtl"] .dc-item-top{ flex-direction:row-reverse; }
@media (prefers-reduced-motion: reduce){ .dc-menu{ transition:none; } }

@keyframes dcIn{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:translateY(0); } }
@media (prefers-reduced-motion: reduce){
    .dc-tile,.dc-rs{ animation:none; opacity:1; }
    .dc-sheet,.dc-scrim,.dc-toast,.dc-lang-trigger,.dc-wifi,.dc-wifi-mini,.dc-rs,.dc-rs-card,.dc-btn,.dc-tour{ transition:none; }
}

/* ===========================================================================
   DiCon — Dining menu redesign (Sprung-Pills, Scrollspy, Favoriten)
   =========================================================================== */
.scrollbar-hide{ -ms-overflow-style:none; scrollbar-width:none; }
.scrollbar-hide::-webkit-scrollbar{ display:none; }

.dc-menu-actions{ display:flex; align-items:center; gap:4px; }

/* HIG-Tap-Ziele: Header-/Sheet-Close auf ≥40px */
.dc-menu-x{ width:42px; height:42px; }
.dc-sheet-x{ width:40px; height:40px; }

/* Favoriten-Sammler im Header */
.dc-menu-fav{ position:relative; width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
              background:rgba(255,255,255,.10); border:1px solid var(--hairline); color:#fff; font-size:16px; cursor:pointer;
              transition:color .2s, transform .12s; }
.dc-menu-fav:active{ transform:scale(.94); }
.dc-menu-fav.has-items{ color:var(--ma-red); }
.dc-menu-fav-badge{ position:absolute; top:-1px; right:-1px; min-width:18px; height:18px; padding:0 5px;
                    border-radius:999px; background:var(--ma-red); color:#fff;
                    font-size:11px; font-weight:800; line-height:18px; text-align:center;
                    box-shadow:0 0 0 2px #141009; }

/* Kategorie-Sprungleiste (sticky im Scroll-Body, deckend — kein Glas) */
.dc-catnav{ position:sticky; top:0; z-index:5; background:var(--menu-bg,#141009);
            margin:0 -18px 0; padding:10px 18px 9px; border-bottom:1px solid var(--hairline); }
/* Rand-Fade rechts signalisiert horizontale Scrollbarkeit */
.dc-catnav-pills{ display:flex; gap:8px; overflow-x:auto; -webkit-overflow-scrolling:touch;
                  padding-inline-end:24px; /* peek room so the last pill (e.g. "Pasta") is fully reachable/visible */
                  -webkit-mask-image:linear-gradient(to right,#000 calc(100% - 22px),transparent);
                  mask-image:linear-gradient(to right,#000 calc(100% - 22px),transparent); }
.dc-pill{ flex:0 0 auto; padding:10px 15px; border-radius:999px; font-size:13px; font-weight:600; white-space:nowrap;
          background:var(--panel); border:1px solid var(--hairline); color:rgba(255,255,255,.82); cursor:pointer;
          transition:background .2s, color .2s, border-color .2s; }
.dc-pill.is-active{ background:linear-gradient(100deg,var(--sand),var(--sepia)); color:#fff; border-color:transparent; }
.dc-catnav-diet{ display:flex; gap:7px; overflow-x:auto; -webkit-overflow-scrolling:touch; margin-top:8px;
                 -webkit-mask-image:linear-gradient(to right,#000 calc(100% - 22px),transparent);
                 mask-image:linear-gradient(to right,#000 calc(100% - 22px),transparent); }
/* Diät-Filter bewusst untergeordnet (Pills bleiben das prominente Element) */
.dc-catnav-diet .dc-chip{ padding:9px 13px; font-size:12px; background:rgba(255,255,255,.05); }
.dc-catnav-diet .dc-chip.is-active{ background:rgba(191,159,127,.16); color:var(--sand-light); border-color:var(--sand-light); }
html[dir="rtl"] .dc-catnav-pills,html[dir="rtl"] .dc-catnav-diet{
    -webkit-mask-image:linear-gradient(to left,#000 calc(100% - 22px),transparent);
    mask-image:linear-gradient(to left,#000 calc(100% - 22px),transparent); }

/* Kategorie: luftig, KEINE Trennlinie (Typografie + Abstand tragen die Hierarchie) */
.dc-cat{ scroll-margin-top:120px; margin-top:0; padding-top:32px; }
.dc-cat:first-of-type{ padding-top:16px; }
.dc-cat-title{ border-bottom:0; padding-bottom:0; margin:0 0 6px; font-size:16.5px; letter-spacing:.05em; }

/* Gericht: zweispaltig (Inhalt | Preis+Herz), viel Luft, ohne Trennstriche */
.dc-item{ display:flex; gap:16px; padding:13px 0; border-bottom:0; }
.dc-item-main{ flex:1 1 auto; min-width:0; }
.dc-item-name{ margin:0; font-size:15.5px; font-weight:600; line-height:1.3; color:#fff; }
.dc-item-desc{ margin:5px 0 0; font-size:13px; line-height:1.5; color:rgba(255,255,255,.6); }
.dc-item-tags{ display:flex; flex-wrap:wrap; gap:6px; margin-top:9px; }
.dc-item-side{ flex:0 0 auto; display:flex; flex-direction:column; align-items:flex-end; gap:4px; }
.dc-item-price{ font-size:15px; font-weight:700; color:var(--sand-light); white-space:nowrap; font-variant-numeric:tabular-nums; }
/* Herz: 40px Hit-Target, Icon klein; negative Margins halten die Zeile kompakt */
.dc-fav{ width:40px; height:40px; margin:-4px -8px -6px 0; border-radius:50%;
         display:grid; place-items:center; background:transparent; border:0; color:rgba(255,255,255,.38);
         font-size:17px; cursor:pointer; transition:color .2s, transform .12s; }
.dc-fav:active{ transform:scale(.88); }
.dc-fav.is-active{ color:var(--sand-light); }
html[dir="rtl"] .dc-item-side{ align-items:flex-start; }
html[dir="rtl"] .dc-fav{ margin:-4px 0 -6px -8px; }

/* Favoriten-Sheet über dem Vollbild-Menü stapeln */
.dc-scrim.is-top{ z-index:66; }
.dc-sheet.is-top{ z-index:67; }

/* Favoriten-Liste im Sheet — als gruppierte "saved collection"-Karte */
.dc-fav-empty{ display:flex; flex-direction:column; align-items:center; gap:13px;
               text-align:center; color:rgba(255,255,255,.6); font-size:14px; line-height:1.55;
               padding:34px 18px 30px; }
.dc-fav-empty-ic{ font-size:30px; color:var(--sand-light); opacity:.6; }

.dc-fav-list{ background:var(--panel-strong); border:1px solid var(--hairline);
              border-radius:var(--r); padding:2px 15px; box-shadow:var(--shadow); }
.dc-fav-row{ display:flex; align-items:center; gap:12px;
             padding:13px 0; border-bottom:1px solid var(--hairline); }
.dc-fav-row:last-child{ border-bottom:0; }
.dc-fav-dot{ flex:0 0 auto; font-size:12px; color:var(--sand-light); opacity:.7; }
.dc-fav-name{ flex:1 1 auto; min-width:0; font-size:15px; font-weight:600; line-height:1.3;
              overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.dc-fav-meta{ display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.dc-fav-price{ font-size:14px; font-weight:700; color:var(--sand-light); white-space:nowrap; font-variant-numeric:tabular-nums; }
.dc-fav-rm{ flex:0 0 auto; width:30px; height:30px; border-radius:50%; display:grid; place-items:center;
            background:transparent; border:0; color:rgba(255,255,255,.42); font-size:18px; cursor:pointer;
            transition:color .2s, background .2s, transform .15s; }
.dc-fav-rm:hover{ color:#ef6e72; background:rgba(193,39,45,.12); }
.dc-fav-rm:active{ transform:scale(.88); }

/* Clear-List: klein, untergeordnet, klar abgesetzt vom Look der Anrufen-Buttons */
.dc-fav-clear{ display:flex; align-items:center; justify-content:center; gap:7px;
               margin:22px auto 2px; padding:6px 14px;
               background:transparent; border:0; border-radius:999px;
               color:rgba(255,255,255,.55); font:600 12px/1 'Montserrat',sans-serif;
               letter-spacing:.02em; cursor:pointer; transition:color .2s, background .2s, transform .15s; }
.dc-fav-clear:hover{ color:rgba(255,255,255,.8); background:rgba(255,255,255,.06); }
.dc-fav-clear:active{ transform:scale(.96); }
.dc-fav-clear i{ font-size:11px; opacity:.85; }
@media (prefers-reduced-motion: reduce){ .dc-pill,.dc-fav,.dc-menu-fav{ transition:none; } }

/* ===========================================================================
   DiCon — Speisekarte: Hintergrundbild + Glass-Cards
   (Glassmorphism bewusst auf ausdrücklichen Wunsch — weicht von der CD-Regel ab)
   =========================================================================== */
.dc-menu{ background-color:#0f0b07;
          background-image:linear-gradient(rgba(12,8,5,.72),rgba(12,8,5,.86)), url('../img/client/restaurant.jpg');
          background-size:cover; background-position:center; background-repeat:no-repeat; }

/* Kopf & Sticky-Filterleiste als Glas (transluzent + Blur) */
.dc-menu-head{ background:rgba(12,8,5,.55); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
               border-bottom:1px solid rgba(255,255,255,.10); }
.dc-menu-fav-badge{ box-shadow:0 0 0 2px rgba(12,8,5,.9); }
.dc-catnav{ background:rgba(14,10,6,.5); -webkit-backdrop-filter:blur(14px) saturate(120%); backdrop-filter:blur(14px) saturate(120%);
            border-bottom:1px solid rgba(255,255,255,.10); }

/* Kategorie-Titel über dem Bild lesbar */
.dc-cat{ scroll-margin-top:122px; padding-top:26px; }
.dc-cat:first-of-type{ padding-top:14px; }
.dc-cat-title{ text-shadow:0 2px 10px rgba(0,0,0,.55); }

/* Gericht = Glass-Card */
.dc-item{ background:rgba(255,255,255,.07); -webkit-backdrop-filter:blur(10px) saturate(120%); backdrop-filter:blur(10px) saturate(120%);
          border:1px solid rgba(255,255,255,.13); border-radius:16px; padding:14px 16px; margin:0 0 11px;
          box-shadow:0 8px 22px rgba(0,0,0,.24); }
.dc-item-desc{ color:rgba(255,255,255,.72); }

/* ===========================================================================
   DiCon — Speisekarte: aufgeräumte Filterleiste (Diät hinter Button)
   =========================================================================== */
.dc-catnav-top{ display:flex; align-items:center; gap:10px; }
.dc-catnav-pills{ flex:1 1 auto; min-width:0; }
.dc-catnav-diet{ margin-top:10px; }
.dc-catnav-diet[hidden]{ display:none; }

/* Filter-Button: öffnet/schließt die Diät-Optionen, Punkt zeigt aktiven Filter */
.dc-filter-btn{ position:relative; flex:0 0 auto; width:40px; height:40px; border-radius:50%;
                display:grid; place-items:center; cursor:pointer; font-size:15px; color:#fff;
                background:rgba(255,255,255,.08); border:1px solid var(--hairline);
                transition:background .2s, color .2s, border-color .2s, transform .12s; }
.dc-filter-btn:active{ transform:scale(.94); }
.dc-filter-btn.is-open{ background:rgba(255,255,255,.16); }
.dc-filter-btn.has-filter{ color:var(--sand-light); border-color:var(--sand-light); }
.dc-filter-dot{ position:absolute; top:7px; right:7px; width:8px; height:8px; border-radius:50%;
                background:var(--sand-light); box-shadow:0 0 0 2px rgba(14,10,6,.9); }

/* Bereich-Tabs ruhiger — nur EIN starker Gold-Akzent (die Kategorie-Pills) */
.dc-menu-areas{ padding:12px 18px 0; gap:8px; }
.dc-area-tab{ padding:8px 12px; font-size:13px; background:rgba(255,255,255,.06);
              border:1px solid var(--hairline); color:rgba(255,255,255,.75); }
.dc-area-tab.is-active{ background:rgba(191,159,127,.18); color:var(--sand-light); border-color:var(--sand-light); }

/* Speisen-Thumbnail (links in der Karte, Tap → SimpleLightbox) */
.dc-item{ align-items:flex-start; }
.dc-item-thumb{ flex:0 0 auto; display:block; width:62px; height:62px; border-radius:12px; overflow:hidden;
                border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.05); cursor:zoom-in; }
.dc-item-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

/* SimpleLightbox: dunkles Overlay + Caption (Titel · Preis) */
.sl-overlay{ background:#0e0a06 !important; }
.sl-wrapper .sl-caption{ background:rgba(12,8,5,.85); color:#fff; font-family:'Montserrat',sans-serif; font-size:14px; padding:10px 14px; }
.sl-wrapper .sl-close,
.sl-wrapper .sl-prev,
.sl-wrapper .sl-next,
.sl-wrapper .sl-counter{ color:#fff; }

/* ===========================================================================
   DiCon — Dining: Auswahlscreen (Restaurant / Room Service / Events),
   Zurück-Navigation und Event-Karten
   =========================================================================== */

/* Header: Zurück-Button links, Titel füllt, Aktionen rechts */
.dc-menu-back{ width:42px; height:42px; flex:0 0 auto; border-radius:50%; display:grid; place-items:center;
               background:rgba(255,255,255,.10); border:1px solid var(--hairline); color:#fff; font-size:15px;
               cursor:pointer; margin-right:6px; transition:background .2s, transform .12s; }
.dc-menu-back[hidden]{ display:none; }
.dc-menu-back:active{ transform:scale(.94); background:rgba(255,255,255,.18); }
.dc-menu-title{ flex:1 1 auto; min-width:0; }
html[dir="rtl"] .dc-menu-back{ margin-right:0; margin-left:6px; }
html[dir="rtl"] .dc-menu-back i{ transform:scaleX(-1); }

/* View 1: Auswahl (große Tap-Zeilen wie die Wi-Fi-Leiste) */
.dc-dine-pick{ flex:1 1 auto; min-height:0; overflow-y:auto; -webkit-overflow-scrolling:touch;
               display:flex; flex-direction:column; gap:12px;
               padding:18px 18px calc(env(safe-area-inset-bottom) + 24px); }
.dc-dine-pick[hidden]{ display:none; }
.dc-dine-pick-sub{ margin:2px 2px 4px; font-size:14px; color:rgba(255,255,255,.78); }
.dc-pick{ display:flex; align-items:center; gap:14px; width:100%; text-align:left;
          padding:16px; min-height:72px; background:var(--panel); border:1px solid var(--hairline-2);
          border-radius:var(--r); box-shadow:var(--shadow); color:#fff; cursor:pointer;
          transition:transform .15s, background .2s, border-color .2s; }
.dc-pick:active{ transform:scale(.985); background:var(--panel-strong); }
.dc-pick-ic{ flex:0 0 auto; width:46px; height:46px; border-radius:13px; display:grid; place-items:center;
             font-size:19px; color:var(--sand-light); background:rgba(191,159,127,.16); border:1px solid var(--hairline); }
.dc-pick-l{ flex:1 1 auto; min-width:0; font-size:16px; font-weight:600; letter-spacing:.01em; }
.dc-pick-arr{ flex:0 0 auto; font-size:13px; opacity:.55; }
html[dir="rtl"] .dc-pick{ text-align:right; }
html[dir="rtl"] .dc-pick-arr{ transform:scaleX(-1); }

/* View 2: Bereich-Menü füllt die Höhe (Body scrollt, Sticky-Filter bleibt) */
.dc-menu-view{ flex:1 1 auto; display:flex; flex-direction:column; min-height:0; }
.dc-menu-view[hidden]{ display:none; }

/* Event intro: shown on top of the menu view when opened from an event (e.g. Brunch) */
.dc-event-intro{ background:rgba(255,255,255,.07); -webkit-backdrop-filter:blur(10px) saturate(120%); backdrop-filter:blur(10px) saturate(120%);
                 border:1px solid rgba(255,255,255,.13); border-radius:16px; padding:16px; margin-bottom:16px; box-shadow:0 8px 22px rgba(0,0,0,.24); }
.dc-event-intro[hidden]{ display:none; }
.dc-event-price{ display:inline-block; font-size:13.5px; font-weight:700; color:var(--sand-light); white-space:nowrap; }
.dc-event-sub{ margin:4px 0 0; font-size:13.5px; color:rgba(255,255,255,.8); }
.dc-event-meta{ display:flex; flex-wrap:wrap; gap:8px 16px; margin-top:10px; }
.dc-event-meta span{ display:inline-flex; align-items:center; gap:6px; font-size:13px; color:rgba(255,255,255,.82); }
.dc-event-meta i{ color:var(--sand-light); font-size:12px; }
.dc-event-desc{ margin:10px 0 0; font-size:13px; line-height:1.5; color:rgba(255,255,255,.7); }
.dc-event-cal{ margin-top:14px; }
html[dir="rtl"] .dc-dine-pick-sub,html[dir="rtl"] .dc-event-sub,html[dir="rtl"] .dc-event-desc{ text-align:right; }

@media (prefers-reduced-motion: reduce){ .dc-pick,.dc-menu-back{ transition:none; } }

/* Abschnitts-Überschrift in Bottom-Sheets (Hotel-Infos, Guest Services ...) */
.dc-sheet-h{ margin:18px 0 2px; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
             color:var(--sand-light); }
.dc-sheet-h:first-child{ margin-top:0; }
html[dir="rtl"] .dc-sheet-h{ text-align:right; }


/* ---------- Spa & Wellness overlay footer ---------- */
.dc-spa-foot{ padding-bottom:calc(env(safe-area-inset-bottom) + 24px); }

/* Consistent top spacing above any call/action button across all areas. */
.dc-btn[href^="tel:"]{ margin-top:16px; }

/* Two side-by-side actions: a direct-call button (mobile) + an info chip for the
   room-phone extension. Different styling so the info one does not read as tappable. */
.dc-callrow{ display:flex; gap:10px; align-items:stretch; margin-top:16px; }
.dc-callrow > *{ flex:1 1 0; min-width:0; margin-top:0; }
.dc-callrow > .dc-btn[href^="tel:"]{ margin-top:0; }
.dc-callrow-room{
    display:flex; align-items:center; justify-content:center; gap:11px;
    padding:10px 14px; min-height:50px;
    border:1px solid var(--sand); border-radius:14px;
    background:rgba(191,159,127,.12);
}
.dc-callrow-room > i{ flex:0 0 auto; font-size:18px; color:var(--sand-light); }
.dc-callrow-room-tx{ display:flex; flex-direction:column; align-items:center; text-align:center; line-height:1.2; min-width:0; }
.dc-callrow-room-k{ font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; color:var(--sand-light); opacity:.85;
                    overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.dc-callrow-room-v{ font-size:16px; font-weight:800; color:#fff; white-space:nowrap; }

/* ===========================================================================
   DiCon — marokkanische Akzentfarben (Flagge: Grün + Rot) · FDS
   Gold bleibt Premium-Basis (Preise/Titel); Grün = lebendiger Nav-Akzent;
   Rot = Favoriten („Liebe"). Bewusst als Akzente, Dunkel/Gold bleibt Träger.
   =========================================================================== */
:root{
    --ma-red:#c1272d;
    --ma-green:#0a6b3b;
    --ma-green-deep:#013d20;
    --ma-green-soft:#8fd3ab;
}

/* Navigation aktiv = Marokko-Grün */
.dc-pill.is-active{ background:linear-gradient(100deg,var(--ma-green),var(--ma-green-deep)); color:#fff; border-color:transparent; }
.dc-area-tab.is-active{ background:rgba(10,107,59,.20); color:var(--ma-green-soft); border-color:rgba(10,107,59,.6); }
.dc-catnav-diet .dc-chip.is-active{ background:rgba(10,107,59,.18); color:var(--ma-green-soft); border-color:rgba(10,107,59,.55); }

/* Favoriten = Marokko-Rot */
.dc-fav.is-active{ color:var(--ma-red); }
.dc-menu-fav.has-items{ color:var(--ma-red); }
.dc-menu-fav-badge{ background:var(--ma-red); color:#fff; }

/* Sichtbares, entfernbares Aktiv-Diät-Chip (grün getönt) */
.dc-active-diet{ flex:0 0 auto; display:inline-flex; align-items:center; gap:6px; max-width:46vw;
                 padding:7px 11px; border-radius:999px; font-size:12px; font-weight:600; white-space:nowrap; cursor:pointer;
                 background:rgba(10,107,59,.18); color:var(--ma-green-soft); border:1px solid rgba(10,107,59,.55);
                 transition:transform .12s; }
.dc-active-diet > span{ overflow:hidden; text-overflow:ellipsis; }
.dc-active-diet i{ font-size:11px; opacity:.85; }
.dc-active-diet:active{ transform:scale(.96); }
.dc-active-diet[hidden]{ display:none; }

/* ---------- Guest Services sheet (service blocks + price tiers) ---------- */
.dc-gs{ padding:12px 0; border-bottom:1px solid var(--hairline); }
.dc-gs:first-child{ padding-top:2px; }
.dc-gs:last-of-type{ border-bottom:0; }
.dc-gs-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.dc-gs-name{ display:inline-flex; align-items:center; gap:9px; font-size:15px; font-weight:600; color:#fff; }
.dc-gs-name i{ width:20px; text-align:center; color:var(--sand-light); font-size:14px; }
.dc-gs-ext{ flex:0 0 auto; font-size:12px; font-weight:700; color:var(--sand-light); white-space:nowrap; }
.dc-gs-desc{ margin:6px 0 0; font-size:13px; line-height:1.5; color:rgba(255,255,255,.7); }
.dc-gs-hours{ margin:6px 0 0; font-size:12.5px; color:rgba(255,255,255,.8); display:flex; align-items:center; gap:7px; }
.dc-gs-hours i{ color:var(--sand-light); font-size:11px; }
.dc-gs-tiers{ display:flex; flex-wrap:wrap; gap:7px; margin-top:9px; }
.dc-gs-tier{ font-size:12.5px; font-weight:600; padding:5px 11px; border-radius:999px;
             background:rgba(191,159,127,.16); border:1px solid var(--hairline); color:var(--sand-light);
             white-space:nowrap; font-variant-numeric:tabular-nums; }
html[dir="rtl"] .dc-gs-hours{ flex-direction:row-reverse; }
html[dir="rtl"] .dc-gs-desc{ text-align:right; }

/* Transport sheet — airier rhythm (Apple HIG); on-request label left-aligned */
[data-tpl="transport"] .dc-gs{ padding:20px 0; }
[data-tpl="transport"] .dc-gs:first-child{ padding-top:6px; }
[data-tpl="transport"] .dc-gs-head{ justify-content:flex-start; flex-wrap:wrap; gap:7px 12px; }
[data-tpl="transport"] .dc-gs-desc{ margin-top:10px; line-height:1.6; }
[data-tpl="transport"] .dc-gs .dc-btn{ margin-top:14px; }

/* ===========================================================================
   DiCon — Gericht-Karten: mehr Luft + dezentere Badges
   =========================================================================== */
.dc-item{ padding:18px; }
.dc-item-tags{ margin-top:12px; gap:7px; }
.dc-badge,.dc-aller{ font-weight:400; font-size:10px; background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.10); color:rgba(255,255,255,.55); }

/* ---------- Spa service rows + price tiers ---------- */
/* Spa items stack vertically (name, description, price rows) instead of the
   dining two-column flex layout, so every price aligns to the same right edge. */
.dc-item.dc-spa-item{ display:block; }
.dc-tiers{ margin-top:8px; display:flex; flex-direction:column; gap:4px; }
.dc-tier{ display:flex; align-items:baseline; justify-content:space-between; gap:14px;
          padding:5px 0; border-top:1px solid var(--hairline); }
.dc-tier:first-child{ border-top:0; }
.dc-tier-l{ font-size:13.5px; color:rgba(255,255,255,.82); }
.dc-tier-p{ font-size:14px; font-weight:700; color:var(--sand-light); white-space:nowrap; font-variant-numeric:tabular-nums; }
html[dir="rtl"] .dc-tier-l{ text-align:right; }

/* ---------- Spa overlay background (pool by night) ---------- */
#dcSpa{
    background-color:#0f0b07;
    background-image:
        linear-gradient(180deg, rgba(13,10,6,.86) 0%, rgba(13,10,6,.80) 42%, rgba(13,10,6,.92) 100%),
        url('../img/client/pool-by-night.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* ---------- Hotel Information sheet background ---------- */
.dc-sheet[data-bg="hotel"]{
    background-color:var(--panel-strong);
    background-image:
        linear-gradient(180deg, rgba(13,10,6,.90) 0%, rgba(13,10,6,.84) 35%, rgba(13,10,6,.95) 100%),
        url('../img/bgs/hotel.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* ---------- Explore Kénitra sheet (points of interest) ---------- */
.dc-poi{ display:flex; align-items:center; gap:12px; padding:12px 0; border-bottom:1px solid var(--hairline); }
.dc-poi:first-child{ padding-top:2px; }
.dc-poi:last-of-type{ border-bottom:0; }
.dc-poi-main{ flex:1 1 auto; min-width:0; }
.dc-poi-name{ font-size:15px; font-weight:600; color:#fff; }
.dc-poi-meta{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-top:5px; }
.dc-poi-cat{ font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
             padding:3px 9px; border-radius:999px; background:rgba(191,159,127,.16);
             border:1px solid var(--hairline); color:var(--sand-light); }
.dc-poi-dist{ display:inline-flex; align-items:center; gap:5px; font-size:12.5px; color:rgba(255,255,255,.7); }
.dc-poi-dist i{ font-size:10px; color:var(--sand-light); }
.dc-poi-map{ flex:0 0 auto; width:42px; height:42px; border-radius:12px; display:grid; place-items:center;
             background:rgba(191,159,127,.14); border:1px solid var(--hairline); color:var(--sand-light);
             font-size:16px; text-decoration:none; transition:transform .12s, background .2s; }
.dc-poi-map:active{ transform:scale(.92); background:rgba(191,159,127,.24); }
html[dir="rtl"] .dc-poi-name,html[dir="rtl"] .dc-poi-meta{ text-align:right; }
@media (prefers-reduced-motion: reduce){ .dc-poi-map{ transition:none; } }
