/* ===== GLOBAL RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'Autography';
    src: url('fonts/Autography.otf') format('opentype'),
         url('fonts/Autography.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MIDWATCHES';
    src: url('fonts/MIDWATCHES.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #494141;
    --accent: #ead4c1;
    --dark: #1d1a1a;
    --light: #f7f1ed;
    --white: #ffffff;
    --warm-beige: #e5cabe;
    --dark-brown: #362b2b;
    --medium-brown: #473939;
    --transition-time: 1.2s;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 50%, var(--medium-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.loader-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loader-ring {
    fill: none;
    stroke: var(--accent);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: loader-ring-animation 1.5s ease-in-out infinite;
}

@keyframes loader-ring-animation {
    0% {
        stroke-dashoffset: 283;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -283;
    }
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'MIDWATCHES', serif;
    font-size: 3rem;
    color: var(--accent);
    animation: loader-text-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-text-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.loader-tagline {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.loader-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: loader-dots-bounce 1.4s ease-in-out infinite;
}

.loader-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loader-dots-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
    color: var(--white);
    cursor: default;
}

/* Hide default cursor, use custom one */
*, *:hover, *:active {
    cursor: none !important;
}

body, a, button, .nav-dot, .room-card, .amenity-item, .gallery-box, .cta-button, .feature-box {
    cursor: none !important;
}

/* Custom Cursor Element */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
    opacity: 1;
}

/* Rotating animation during transitions */
body.transitioning .custom-cursor {
    animation: rotateCursor 1.2s;
    transition: none;
}

@keyframes rotateCursor {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg);
        scale: 1;
        animation-timing-function: ease-in-out;
    }
    50% { 
        scale: 2;
    }
    80% { 
        transform: translate(-50%, -50%) rotate(360deg);
        animation-timing-function: ease-in-out;
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg);
        scale: 1;
    }
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.6s ease;
}

/* ===== SECTION NAME (LEFT) ===== */
.section-name {
    position: fixed;
    left: 5rem;
    top: calc(50% + 1rem);
    transform: translateY(-50%);
    z-index: 1000;
    font-size: 1.3rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 100;
    transition: opacity 0.3s ease;
}

/* ===== NAVIGATION DOTS ===== */
.nav-dots {
    position: fixed;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover, .nav-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.3);
    transition-delay: 0s;
}

.nav-dot.passed {
    background: var(--accent);
    border-color: var(--accent);
}

.nav-icon.passed {
    background: transparent !important;
}

.nav-icon {
    background: transparent !important;
    border: none !important;
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-icon {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    opacity: 0.3;
}

.nav-icon.active .dot-icon,
.nav-icon.passed .dot-icon {
    filter: brightness(0) saturate(100%) invert(92%) sepia(13%) saturate(457%) hue-rotate(329deg) brightness(98%) contrast(93%);
    opacity: 1;
}

.nav-icon.active,
.nav-icon:hover {
    transform: none;
}

.nav-icon:hover .dot-icon {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) invert(92%) sepia(13%) saturate(457%) hue-rotate(329deg) brightness(98%) contrast(93%);
}

.nav-line {
    width: 2px;
    height: 6rem;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.nav-line.passed,
.nav-line.active {
    background: var(--accent);
}

/* ===== SCROLL HINT ===== */
.scroll-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.scroll-hint span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-hint i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

body.transitioning .scroll-hint {
    opacity: 0;
}

/* ===== MAIN APP CONTAINER ===== */
#app {
    width: 100%;
    height: 100%;
    position: relative;
}

/* ===== CHECKPOINT SYSTEM ===== */
.checkpoint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    visibility: hidden;
}

.checkpoint.active {
    pointer-events: auto;
    z-index: 10;
    visibility: visible;
}

.checkpoint.transitioning-out {
    pointer-events: none;
    z-index: 5;
    visibility: visible;
}

/* Background layers - simple crossfade only */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.checkpoint.active .background {
    opacity: 1;
    z-index: 2;
    transition: opacity 0.8s ease;
}

.checkpoint.transitioning-out .background {
    opacity: 1;
    z-index: 1;
    transition: none;
}

/* First checkpoint visible on load */
.checkpoint[data-index="0"].active .background {
    opacity: 1;
}

@keyframes fadeOutBg {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Background gradients/colors */
.bg-hero {
    /*background: linear-gradient(135deg, #1a4d6d 0%, #2c7da0 50%, #1a4d6d 100%);*/
    background-image: 
        linear-gradient(135deg, #1d1a1a 0%, #362b2b 50%, #473939b0 100%),
        url('images/dds.webp');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.bg-details {
    /*background: linear-gradient(135deg, #1a4d6d 0%, #2c7da0 50%, #1a4d6d 100%);*/
    background-image: 
        linear-gradient(135deg, #1d1a1a 10%, #362b2bb0 50%, #473939 90%),
        url('images/ddz.webp');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.bg-rooms {
    /*background: linear-gradient(135deg, #1a4d6d 0%, #2c7da0 50%, #1a4d6d 100%);*/
    background-image: 
        linear-gradient(135deg, #1d1a1a 0%, #362b2b 50%, #473939b0 100%),
        url('images/ddx.webp');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

/* Mixed background - keep white text with shadows for readability */
.bg-rooms .label,
.bg-rooms .headline,
.bg-rooms .room-card h3,
.bg-rooms .room-card p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bg-menu {
    /*background: linear-gradient(135deg, #1a4d6d 0%, #2c7da0 50%, #1a4d6d 100%);*/
    background-image: 
        linear-gradient(135deg, #1d1a1a 10%, #362b2bb0 50%, #473939 90%),
        url('images/ddc.webp');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}


/* Menu section text stays white */
.bg-menu .label,
.bg-menu .headline {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bg-amenities {
    background: #1d1a1a;
    position: absolute;
    z-index: 1;
}

.bg-amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 26, 26, 0.85) 10%, rgba(54, 43, 43, 0.7) 50%, rgba(71, 57, 57, 0.85) 90%);
    z-index: 3;
    pointer-events: none;
}

.image-wall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 2px;
    z-index: 2;
}

.image-wall-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: opacity 1.5s ease-in-out;
}

.image-wall-item.fade-out {
    opacity: 0.1;
}

.bg-booking {
    background: linear-gradient(135deg, #1d1a1a 0%, #362b2b 100%);
}

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    z-index: 3;
}

.section-icon {
    position: fixed;
    left: 5rem;
    top: calc(50% - 2rem);
    width: 25px;
    height: 25px;
    opacity: 0;
    transform: translateX(-40px) scale(0.8);
    filter: blur(5px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.checkpoint.active .section-icon {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    transition-delay: 0.1s;
}

.section-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content animations - individual elements */
.checkpoint .label,
.checkpoint .headline,
.checkpoint .subline,
.checkpoint .body-text,
.checkpoint .cta-button,
.checkpoint .logo,
.checkpoint .logo-container,
.checkpoint .tagline,
.checkpoint .hero-split,
.checkpoint .hero-bottom,
.checkpoint .pattern-container,
.checkpoint .pattern-image,
.checkpoint .hero-right-content,
.checkpoint .stat-item,
.checkpoint .feature-box,
.checkpoint .room-card,
.checkpoint .virtual-tour-btn,
.checkpoint .menu-card,
.checkpoint .amenity-item,
.checkpoint .gallery-box,
.checkpoint .contact-item,
.checkpoint .contact-icon,
.checkpoint .booking-form,
.checkpoint .booking-info,
.checkpoint .showcase-text {
    transform: translateY(80px) scale(0.95);
    opacity: 0;
    filter: blur(8px);
    transition: all 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Special initial state for rotated tagline */
.checkpoint .tagline {
    transform: translateY(80px) scale(0.95) rotate(-3deg);
}

/* Staggered delays when checkpoint becomes active */
.checkpoint.active .label {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.2s;
}

.checkpoint.active .headline {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.4s;
}

.checkpoint.active .subline {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.5s;
}

.checkpoint.active .body-text {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.6s;
}

.checkpoint.active .logo {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.2s;
}

.checkpoint.active .hero-split {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.2s;
}

.checkpoint.active .logo-container {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.4s;
}

.checkpoint.active .tagline {
    transform: translateY(0) scale(1) rotate(-3deg);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.6s;
}

.checkpoint.active .pattern-container {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.5s;
}

.checkpoint.active .pattern-image {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.5s;
}

.checkpoint.active .hero-right-content {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.8s;
}

.checkpoint.active .hero-bottom {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.75s;
}

.checkpoint.active .cta-button {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.95s;
}

.checkpoint.active .stat-item:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.75s;
}

.checkpoint.active .stat-item:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.85s;
}

.checkpoint.active .stat-item:nth-child(3) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 1.0s;
}

.checkpoint.active .feature-box:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.5s;
}

.checkpoint.active .feature-box:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.6s;
}

.checkpoint.active .feature-box:nth-child(3) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.75s;
}

.checkpoint.active .room-card:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.5s;
}

.checkpoint.active .room-card:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.6s;
}

.checkpoint.active .room-card:nth-child(3) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.75s;
}

.checkpoint.active .room-card:nth-child(4) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.85s;
}

.checkpoint.active .room-card:nth-child(5) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.95s;
}

.checkpoint.active .virtual-tour-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 1.1s;
}

.checkpoint.active .menu-card:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.5s;
}

.checkpoint.active .menu-card:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.65s;
}

.checkpoint.active .amenity-item:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.5s;
}

.checkpoint.active .amenity-item:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.55s;
}

.checkpoint.active .amenity-item:nth-child(3) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.65s;
}

.checkpoint.active .amenity-item:nth-child(4) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.75s;
}

.checkpoint.active .amenity-item:nth-child(5) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.85s;
}

.checkpoint.active .amenity-item:nth-child(6) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 1.0s;
}

.checkpoint.active .gallery-box:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.5s;
}

.checkpoint.active .gallery-box:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.65s;
}

.checkpoint.active .gallery-box:nth-child(3) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.8s;
}

.checkpoint.active .gallery-box:nth-child(4) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.95s;
}

.checkpoint.active .contact-item:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.75s;
}

.checkpoint.active .contact-item:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.9s;
}

.checkpoint.active .contact-icon:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.7s;
}

.checkpoint.active .contact-icon:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.75s;
}

.checkpoint.active .contact-icon:nth-child(3) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.8s;
}

.checkpoint.active .contact-icon:nth-child(4) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.85s;
}

.checkpoint.active .contact-icon:nth-child(5) {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.9s;
}

.checkpoint.active .booking-info {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.4s;
}

.checkpoint.active .booking-form {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.6s;
}

.checkpoint.active .showcase-text {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.6s;
}

/* Exit animation - all at once with blur and scale */
.checkpoint.transitioning-out .label,
.checkpoint.transitioning-out .headline,
.checkpoint.transitioning-out .subline,
.checkpoint.transitioning-out .body-text,
.checkpoint.transitioning-out .cta-button,
.checkpoint.transitioning-out .logo,
.checkpoint.transitioning-out .logo-container,
.checkpoint.transitioning-out .tagline,
.checkpoint.transitioning-out .hero-split,
.checkpoint.transitioning-out .hero-bottom,
.checkpoint.transitioning-out .pattern-container,
.checkpoint.transitioning-out .pattern-image,
.checkpoint.transitioning-out .hero-right-content,
.checkpoint.transitioning-out .stat-item,
.checkpoint.transitioning-out .feature-box,
.checkpoint.transitioning-out .room-card,
.checkpoint.transitioning-out .virtual-tour-btn,
.checkpoint.transitioning-out .menu-card,
.checkpoint.transitioning-out .amenity-item,
.checkpoint.transitioning-out .gallery-box,
.checkpoint.transitioning-out .contact-item,
.checkpoint.transitioning-out .contact-icon,
.checkpoint.transitioning-out .booking-form,
.checkpoint.transitioning-out .booking-info,
.checkpoint.transitioning-out .showcase-text {
    transform: translateY(-80px) scale(0.9);
    opacity: 0;
    filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.6, 0, 0.8, 0.2) !important;
    transition-delay: 0s !important;
}

/* Special exit state for rotated tagline */
.checkpoint.transitioning-out .tagline {
    transform: translateY(-80px) scale(0.9) rotate(-3deg);
}

/* Reset delays after entrance completes - applied by JS */
.checkpoint.entrance-complete .feature-box,
.checkpoint.entrance-complete .room-card,
.checkpoint.entrance-complete .virtual-tour-btn,
.checkpoint.entrance-complete .menu-card,
.checkpoint.entrance-complete .amenity-item,
.checkpoint.entrance-complete .gallery-box,
.checkpoint.entrance-complete .contact-icon,
.checkpoint.entrance-complete .cta-button,
.checkpoint.entrance-complete .pattern-container,
.checkpoint.entrance-complete .hero-right-content {
    transition-delay: 0s !important;
}

/* ===== TYPOGRAPHY ===== */
/* All headings use MIDWATCHES */
h1, h2, h3, h4, h5, h6 {
    font-family: 'MIDWATCHES', sans-serif;
    font-weight: normal;
}

/* Paragraphs and body text use Century Gothic */
p {
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
}

.label {
    font-family: 'MIDWATCHES', sans-serif;
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.headline {
    font-family: 'MIDWATCHES', sans-serif;
    font-size: 4rem;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.subline {
    font-family: 'MIDWATCHES', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    transition-delay: 0s !important;
}

/* ===== CHECKPOINT 0: HERO ===== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.logo-container {
    width: 100%;
    max-width: 220px;
}

.main-logo {
    width: 100%;
    height: auto;
    display: block;
}

.tagline {
    font-family: 'Autography', cursive;
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    font-weight: normal;
    margin: 0;
    transform: rotate(-3deg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    line-height: 1;
    padding: 0.5rem 0;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.pattern-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.pattern-image {
    width: 100%;
    height: auto;
    display: block;
    mask-image: radial-gradient(ellipse 180% 100% at bottom, rgba(0,0,0,0) 10%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.9) 90%, rgba(0,0,0,0.9) 100%);
    -webkit-mask-image: radial-gradient(ellipse 180% 100% at bottom, rgba(0,0,0,0) 10%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.9) 90%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}

.pattern-overlay {
    /* No longer needed with mask, but keeping for structure */
    display: none;
}

.hero-right-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: -8rem;
    position: relative;
    z-index: 2;
}

/* ===== CHECKPOINT 1: EXPERIENCE ===== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    align-items: center;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: normal;
    font-family: 'MIDWATCHES', sans-serif;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    transition-delay: 0s !important;
}

.feature-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    opacity: 0.8;
}

/* ===== CHECKPOINT 2: ROOMS ===== */
.center-content {
    text-align: center;
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth transitions for all elements */
.rooms-container .label,
.rooms-container .headline {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* When gallery opens - shrink and move headline to top */
.rooms-container.gallery-open .label {
    font-size: 0.85rem;
    transform: translateY(-36vh);
}

.rooms-container.gallery-open .headline {
    font-size: 1.8rem;
    transform: translateY(-36vh);
}

/* Non-selected cards fade out */
.rooms-container.gallery-open .room-card:not(.selected) {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
    pointer-events: none;
}

/* Hide virtual tour button when gallery opens */
.rooms-container.gallery-open .virtual-tour-btn {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    pointer-events: none;
    transition: all 0.6s ease;
}

/* Selected card - prepare for animation (stays in place initially) */
.room-card.selected {
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Backdrop to close gallery on click outside */
.gallery-close-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
    cursor: pointer;
}

.rooms-container.gallery-open .gallery-close-backdrop {
    display: block;
}

/* Selected card morphs to center and grows */
.rooms-container.gallery-open .room-card.selected {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 70vw !important;
    height: 70vh !important;
    z-index: 100;
    background: transparent !important;
    backdrop-filter: none !important;
    margin: 0;
}

/* Keep hover effect on expanded card */
.rooms-container.gallery-open .room-card.selected:hover {
    transform: translate(-50%, -50%) !important;
}

/* Hide text inside morphing card */
.rooms-container.gallery-open .room-card.selected h3,
.rooms-container.gallery-open .room-card.selected p,
.rooms-container.gallery-open .room-card.selected .badge {
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Gallery content inside expanded card */
.room-gallery-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.gallery-main-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-main-image .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-thumbnails-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.gallery-thumbnail {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.5);
}

/* Bottom row container */
.rooms-bottom-row {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(5, 180px);
    gap: 1rem;
    z-index: 102;
    pointer-events: none;
}

.rooms-bottom-row.show-cards {
    pointer-events: all;
}

/* Small compact cards in bottom row - hidden initially */
.rooms-bottom-row .room-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(-40px) scale(0.7);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Cards animate in one by one */
.rooms-bottom-row.show-cards .room-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

.rooms-bottom-row.show-cards .room-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.12s;
}

.rooms-bottom-row.show-cards .room-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.24s;
}

.rooms-bottom-row.show-cards .room-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.36s;
}

.rooms-bottom-row.show-cards .room-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.48s;
}

.rooms-bottom-row .room-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.rooms-bottom-row .room-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.rooms-bottom-row .room-card .badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
}

/* Highlight selected card in bottom row */
.rooms-bottom-row .room-card.selected {
    border-color: var(--accent);
    background: rgba(201, 169, 97, 0.25);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

.room-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    transition-delay: 0s !important;
}

.room-card.featured {
    border-color: var(--accent);
    background: rgba(201, 169, 97, 0.2);
}

.badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
}

.room-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.room-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.room-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.price {
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--accent);
    font-family: 'MIDWATCHES', sans-serif;
}

/* Virtual Tour Card - Always Hidden */
.virtual-tour-card {
    display: none !important;
    text-decoration: none;
}

/* Virtual Tour Button (All Screen Sizes) */
.virtual-tour-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin: 3rem auto 0;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

.virtual-tour-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
    background: rgba(234, 212, 193, 1);
}

.virtual-tour-btn i {
    font-size: 1.4rem;
}

/* ===== ROOM GALLERY LIGHTBOX ===== */
.room-gallery-lightbox {
    display: none;
}

.gallery-main-image {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
}

.main-room-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.gallery-nav:hover {
    background: rgba(201, 169, 97, 0.3);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.gallery-thumb {
    min-width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    border-color: var(--accent);
}

.gallery-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.5);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CHECKPOINT 3: MENU ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.menu-card p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Menu Viewer */
.menu-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 26, 26, 0.97) 0%, rgba(54, 43, 43, 0.95) 50%, rgba(71, 57, 57, 0.97) 100%);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-viewer.active {
    opacity: 1;
    pointer-events: all;
}

.menu-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.menu-pages {
    max-width: 90vw;
    max-height: 85vh;
    transition: opacity 0.3s ease;
}

.menu-pages img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.menu-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu-prev-btn,
.menu-next-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-prev-btn:hover,
.menu-next-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.menu-prev-btn:disabled,
.menu-next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.menu-prev-btn:disabled:hover,
.menu-next-btn:disabled:hover {
    transform: none;
}

.menu-page-counter {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

/* ===== CHECKPOINT 4: AMENITIES ===== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition-delay: 0s !important;
}

.amenity-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.amenity-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.amenity-item p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== CHECKPOINT 5: BOOKING ===== */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1200px;
    align-items: center;
}

.contact-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-icon:hover {
    background: rgba(234, 212, 193, 0.3);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-icon i {
    color: var(--white);
    transition: color 0.3s ease;
}

.contact-icon:hover i {
    color: var(--accent);
}

.booking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-split,
    .split-layout,
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tagline {
        font-size: 2.2rem;
    }
    
    .logo-container {
        max-width: 180px;
    }
    
    .pattern-container {
        max-width: 350px;
    }
    
    .hero-right-content {
        margin-top: -6rem;
        gap: 0.8rem;
    }
    
    .room-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .room-card {
        padding: 1.5rem 1rem;
    }
    
    .room-card h3 {
        font-size: 1.1rem;
    }
    
    .room-card p {
        font-size: 0.8rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .headline {
        font-size: 3rem;
    }
    
    .section-name {
        left: 2rem;
    }
    
    .section-icon {
        left: 2rem;
    }
    
    .nav-dots {
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section - Fixed Mobile Layout */
    .hero-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
        justify-items: center;
        align-items: center;
        min-height: auto !important;
    }
    
    .hero-left {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-right {
        gap: 0.5rem;
        width: 100%;
    }
    
    .logo-container {
        max-width: 140px;
        margin: 0 auto;
    }
    
    .tagline {
        font-size: 1.5rem;
        line-height: 1.2;
        margin: 0.5rem 0;
    }
    
    .pattern-container {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Fixed: Remove negative margin and center content properly */
    .hero-right-content {
        gap: 0.5rem;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
        padding: 0 1rem;
        position: relative;
        z-index: 2;
    }
    
    /* CTA Button - Smaller and separated from scroll hint */
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0;
        margin-bottom: 3rem !important;
    }
    
    .scroll-hint {
        bottom: 1rem;
        font-size: 0.75rem;
    }
    
    .scroll-hint i {
        font-size: 0.9rem;
    }
    
    /* General Typography */
    .headline {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    /* Details Section */
    .split-layout {
        gap: 2rem;
    }
    
    .split-left,
    .split-right {
        max-width: 100%;
    }
    
    .label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .body-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    /* Stats Section */
    .stats {
        flex-direction: row;
        gap: 1.5rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1 1 30%;
        min-width: 90px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Feature Boxes */
    .feature-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-box i {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Amenities Grid - 2 columns on mobile */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .amenity-item {
        padding: 1.5rem 1rem;
    }
    
    .amenity-item i {
        font-size: 2rem;
    }
    
    .amenity-item h3 {
        font-size: 1.1rem;
    }
    
    .amenity-item p {
        font-size: 0.85rem;
    }
    
    /* Image Wall - Fewer cells for better performance */
    .image-wall {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1px;
    }
    
    /* Rooms Section */
    .room-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .room-card {
        padding: 1.5rem 1rem;
    }
    
    /* Virtual Tour - Keep button on mobile too */
    .virtual-tour-card {
        display: none !important;
    }
    
    .virtual-tour-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        margin: 2rem auto 0;
    }
    
    .virtual-tour-btn i {
        font-size: 1.2rem;
    }
    
    .room-card h3 {
        font-size: 1rem;
    }
    
    .room-card p {
        font-size: 0.85rem;
    }
    
    /* Room Gallery Mobile Fixes */
    
    /* Fix 1: Make text visible ABOVE gallery at top center */
    .rooms-container.gallery-open .label {
        position: fixed !important;
        top: 2.5rem !important;
        left: 50% !important;
        transform: translate(-50%, 0) !important;
        font-size: 0.7rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 200 !important;
        width: 90vw !important;
        text-align: center !important;
        transition: all 0.6s ease !important;
    }
    
    .rooms-container.gallery-open .headline {
        position: fixed !important;
        top: 4rem !important;
        left: 50% !important;
        transform: translate(-50%, 0) !important;
        font-size: 1.4rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 200 !important;
        width: 90vw !important;
        text-align: center !important;
        transition: all 0.6s ease !important;
    }
    
    /* Fix 2: Gallery box perfectly centered vertically */
    .rooms-container.gallery-open .room-card.selected {
        width: 90vw !important;
        height: auto !important;
        max-height: 80vh !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .gallery-main-image {
        height: auto !important;
        aspect-ratio: 1 !important;
        max-height: 60vh !important;
    }
    
    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .gallery-prev {
        left: 0.5rem;
    }
    
    .gallery-next {
        right: 0.5rem;
    }
    
    /* Fix 3: Thumbnails in 2 rows of 5 with proper spacing */
    .gallery-thumbnails-row {
        grid-template-columns: repeat(5, 1fr) !important;
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        row-gap: 0.8rem;
        padding: 0.75rem;
        max-height: 20vh;
        overflow-y: hidden;
    }
    
    /* Hide scrollbar that causes grey line */
    .gallery-thumbnails::-webkit-scrollbar,
    .gallery-thumbnails-row::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    /* Disable thumbnail scale on mobile */
    .gallery-thumbnail:hover {
        transform: scale(1) !important;
    }
    
    .gallery-thumbnail.active {
        transform: scale(1) !important;
    }
    
    /* Fix 4: Bottom room cards - fit all 5 cards */
    .rooms-bottom-row {
        display: flex !important;
        grid-template-columns: unset !important;
        bottom: 2.5rem !important;
        gap: 0.5rem !important;
        padding: 0 0.5rem !important;
        max-width: 98vw !important;
        width: 98vw !important;
        justify-content: space-between;
    }
    
    .rooms-bottom-row .room-card {
        padding: 0.6rem 0.4rem !important;
        min-width: 65px !important;
        max-width: 18.5% !important;
        flex: 1 1 18.5% !important;
    }
    
    .rooms-bottom-row .room-card h3 {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
        line-height: 1.1;
    }
    
    .rooms-bottom-row .room-card p {
        font-size: 0.6rem;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .rooms-bottom-row .room-card .badge {
        font-size: 0.5rem;
        padding: 0.15rem 0.35rem;
        margin-top: 0.15rem;
    }
    
    .gallery-close-btn {
        top: 0.5rem;
        right: 0.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    /* Dining Section */
    .menu-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .menu-card {
        padding: 1.5rem;
    }
    
    .menu-card h3 {
        font-size: 1.1rem;
    }
    
    /* Menu Viewer */
    .menu-pages {
        max-width: 95vw;
        max-height: 80vh;
    }
    
    .menu-pages img {
        max-height: 80vh;
    }
    
    .menu-close-btn {
        display: none !important;
    }
    
    .menu-controls {
        bottom: 1rem;
        gap: 1.5rem;
    }
    
    .menu-prev-btn,
    .menu-next-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .menu-page-counter {
        font-size: 1rem;
    }
    
    /* Booking Section - Fixed layout */
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding-bottom: 2rem;
    }
    
    .booking-info {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-items {
        margin-top: 1rem;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* Booking Form - Compact, no scrollbar */
    .booking-form {
        padding: 1rem 0.8rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        max-height: none;
        overflow: visible;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .form-row .form-group {
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 13px;
        min-height: 38px;
        border-radius: 6px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 0.6rem;
        font-size: 0.85rem;
        min-height: 38px;
    }
    
    /* Hide Desktop Navigation Elements */
    .section-name,
    .section-icon,
    .nav-dots {
        display: none;
    }
    
    /* Content Padding - Fixed spacing, no scrollbar */
    .content-wrapper {
        padding: 2rem 1.5rem;
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    /* Checkpoint specific adjustments */
    .checkpoint[data-index="0"] .content-wrapper {
        padding: 2rem 1.5rem;
        justify-content: center;
    }
    
    .checkpoint[data-index="5"] .content-wrapper {
        padding: 2rem 1.5rem;
        height: 100vh;
        overflow: hidden;
        align-items: center;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Hero Section - Extra Small Devices */
    .hero-split {
        gap: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-left {
        gap: 0.6rem;
    }
    
    .hero-right {
        gap: 0.3rem;
    }
    
    .logo-container {
        max-width: 110px;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin: 0.2rem 0;
    }
    
    .pattern-container {
        max-width: 230px;
    }
    
    .hero-right-content {
        gap: 0.4rem;
        padding: 0 0.8rem;
        margin-bottom: 0.8rem !important;
    }
    
    .cta-button {
        padding: 0.6rem 1.3rem;
        font-size: 0.85rem;
        margin-bottom: 2.5rem !important;
    }
    
    .headline {
        font-size: 1.8rem;
    }
    
    .subheadline {
        font-size: 0.95rem;
    }
    
    /* Content Wrapper - Extra Small, Fixed spacing */
    .content-wrapper {
        padding: 1.5rem 1rem;
        height: 100vh;
        overflow: hidden;
    }
    
    .checkpoint[data-index="0"] .content-wrapper {
        padding: 1.5rem 1rem;
        justify-content: center;
    }
    
    .checkpoint[data-index="5"] .content-wrapper {
        padding: 1.5rem 1rem;
        height: 100vh;
        overflow: hidden;
        align-items: center;
    }
    
    .mobile-nav-toggle {
        width: 45px;
        height: 45px;
        top: 1rem;
        right: 1rem;
    }
    
    .hamburger-line {
        width: 24px;
    }
    
    /* Details Section - More compact */
    .split-layout {
        gap: 1.5rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    .body-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .stats {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        flex: 1 1 30%;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .feature-box {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-box i {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-box h3 {
        font-size: 1.1rem;
    }
    
    .feature-box p {
        font-size: 0.85rem;
    }
    
    /* Amenities - Keep 2 columns, more compact */
    .amenities-grid {
        gap: 0.8rem;
    }
    
    .amenity-item {
        padding: 1.2rem 0.8rem;
    }
    
    .amenity-item i {
        font-size: 1.8rem;
    }
    
    .amenity-item h3 {
        font-size: 1rem;
    }
    
    .amenity-item p {
        font-size: 0.8rem;
    }
    
    /* Image Wall - Even fewer cells (4x3 = 12) */
    .image-wall {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    /* Rooms - 2 columns on very small screens */
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .room-card {
        padding: 1.2rem 0.8rem;
    }
    
    .room-card h3 {
        font-size: 0.9rem;
    }
    
    .room-card p {
        font-size: 0.75rem;
    }
    
    /* Virtual Tour Button - Extra small screens */
    .virtual-tour-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        margin: 1.5rem auto 0;
        gap: 0.6rem;
    }
    
    .virtual-tour-btn i {
        font-size: 1.1rem;
    }
    
    /* Gallery - Extra small adjustments */
    .rooms-container.gallery-open .label {
        top: 2rem !important;
        font-size: 0.65rem !important;
    }
    
    .rooms-container.gallery-open .headline {
        top: 3.25rem !important;
        font-size: 1.2rem !important;
    }
    
    .rooms-container.gallery-open .room-card.selected {
        width: 96vw !important;
        max-height: 75vh !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .gallery-main-image {
        aspect-ratio: 1 !important;
        max-height: 50vh !important;
    }
    
    .gallery-thumbnails-row {
        padding: 0.5rem;
        gap: 0.4rem;
        row-gap: 0.7rem;
        max-height: 15vh;
        overflow-y: hidden;
    }
    
    /* Disable thumbnail scale on mobile */
    .gallery-thumbnail:hover {
        transform: scale(1) !important;
    }
    
    .gallery-thumbnail.active {
        transform: scale(1) !important;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    /* Even more compact bottom cards - ensure all 5 visible */
    .rooms-bottom-row {
        display: flex !important;
        grid-template-columns: unset !important;
        bottom: 1rem !important;
        gap: 0.4rem !important;
        padding: 0 0.4rem !important;
        max-width: 98vw !important;
        width: 98vw !important;
    }
    
    .rooms-bottom-row .room-card {
        padding: 0.5rem 0.3rem !important;
        min-width: 55px !important;
        max-width: 18.5% !important;
        flex: 1 1 18.5% !important;
    }
    
    .rooms-bottom-row .room-card h3 {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .rooms-bottom-row .room-card p {
        font-size: 0.55rem;
        line-height: 1.2;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    
    .rooms-bottom-row .room-card .badge {
        font-size: 0.45rem;
        padding: 0.1rem 0.3rem;
    }
    
    .gallery-close-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    /* Dining */
    .menu-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .menu-card {
        padding: 1.2rem;
    }
    
    .menu-card h3 {
        font-size: 1.6rem;
    }

    .menu-card p {
        font-size: 0.8rem;
    }
    
    /* Menu Viewer */
    .menu-pages {
        max-width: 98vw;
        max-height: 75vh;
    }
    
    .menu-pages img {
        max-height: 75vh;
    }
    
    .menu-controls {
        bottom: 0.5rem;
        gap: 1rem;
    }
    
    .menu-prev-btn,
    .menu-next-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .menu-page-counter {
        font-size: 0.9rem;
    }
    
    /* Booking Section - Extra Small Devices */
    .booking-layout {
        gap: 1.2rem;
        padding-bottom: 1.5rem;
    }
    
    .booking-info .headline {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-items {
        margin-top: 0.8rem;
        gap: 0.6rem;
        justify-content: center;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    /* Booking Form - Compact for small devices */
    .booking-form {
        padding: 0.8rem 0.6rem;
        border-radius: 8px;
        margin-bottom: 0;
        overflow: visible;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 0.7rem;
    }
    
    .form-row .form-group {
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 0.7rem;
    }
    
    .form-group label {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.45rem;
        font-size: 12px;
        border-radius: 6px;
        min-height: 35px;
    }
    
    .submit-btn {
        padding: 0.5rem;
        font-size: 0.8rem;
        min-height: 35px;
    }
}

/* ===== LOADING LOCK ===== */
body.transitioning {
    pointer-events: none;
}

body.transitioning * {
    cursor: none !important;
}

/* ===== MOBILE NAVIGATION ===== */
/* Hidden on desktop, shown only on mobile */
.mobile-nav-toggle,
.mobile-nav-menu,
.mobile-nav-backdrop {
    display: none;
}

/* Backdrop for click-outside to close */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 768px) {
    /* Mobile Navigation Backdrop */
    .mobile-nav-backdrop {
        display: block;
    }
    
    /* Hamburger Button */
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        background: rgba(29, 26, 26, 0.9);
        border: 2px solid rgba(234, 212, 193, 0.5);
        border-radius: 8px;
        padding: 10px;
        z-index: 10000;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-toggle:hover {
        background: rgba(234, 212, 193, 0.2);
        border-color: var(--accent);
    }
    
    .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hamburger-line {
        width: 28px;
        height: 3px;
        background: var(--accent);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Slide-out Menu */
    .mobile-nav-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(29,26,26,0.98) 0%, rgba(54,43,43,0.96) 50%, rgba(71,57,57,0.98) 100%);
        backdrop-filter: blur(10px);
        border-left: 2px solid rgba(234, 212, 193, 0.3);
        z-index: 9999;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-nav-menu.active {
        right: 0;
    }
    
    /* Menu Header */
    .mobile-nav-header {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(234, 212, 193, 0.2);
    }
    
    .mobile-nav-header h3 {
        font-family: 'MIDWATCHES', sans-serif;
        color: var(--accent);
        font-size: 1.5rem;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    /* Menu Items */
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-list li {
        border-bottom: 1px solid rgba(234, 212, 193, 0.1);
    }
    
    .mobile-nav-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 1.25rem 1.5rem;
        background: none;
        border: none;
        color: #fff;
        font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
        font-size: 1rem;
        text-align: left;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .mobile-nav-item:hover {
        background: rgba(234, 212, 193, 0.1);
        padding-left: 2rem;
    }
    
    .mobile-nav-item.active {
        background: rgba(234, 212, 193, 0.2);
        color: var(--accent);
        border-left: 4px solid var(--accent);
    }
    
    .mobile-nav-icon {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
        transition: filter 0.3s ease;
    }
    
    .mobile-nav-item:hover .mobile-nav-icon,
    .mobile-nav-item.active .mobile-nav-icon {
        filter: brightness(0) invert(1);
    }
    
    /* Hide custom cursor on touch devices */
    .custom-cursor {
        display: none !important;
    }
}
