/* ===== 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;
}

