html { scroll-behavior: smooth; }

/* ── LOADING SCREEN ── */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: #1a2e28;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s ease-out, visibility 0.9s ease-out;
}
#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#loading-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(197,160,89,0.35);
    animation: logoReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
    opacity: 0;
    box-shadow: 0 0 60px rgba(82,113,102,0.4);
}
@keyframes logoReveal {
    0%   { opacity: 0; transform: scale(0.75) translateY(16px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
#loading-hotel-name {
    font-family: 'Bodoni Moda', serif;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.35em;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 22px;
    animation: fadeInUp 0.9s 0.7s ease-out forwards;
    opacity: 0;
}
#loading-tagline {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.2em;
    font-size: 9px;
    text-transform: uppercase;
    margin-top: 6px;
    animation: fadeInUp 0.9s 0.9s ease-out forwards;
    opacity: 0;
}
#loading-bar-track {
    width: 140px;
    height: 1px;
    background: rgba(255,255,255,0.10);
    margin-top: 36px;
    overflow: hidden;
}
#loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #527166, #C5A059);
    animation: loadingBar 2.1s ease-in-out forwards;
    width: 0;
}
@keyframes loadingBar { 0% { width:0; } 100% { width:100%; } }
@keyframes fadeInUp {
    from { opacity:0; transform: translateY(10px); }
    to   { opacity:1; transform: translateY(0); }
}

/* ── KEN BURNS ── */
.ken-burns { animation: kenBurns 22s ease-out infinite alternate; }
@keyframes kenBurns {
    0%   { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.08) translate(-1%,1%); }
}

/* ── FADE-IN SECTIONS ── */
.fade-in-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1), transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.fade-in-section.is-visible { opacity:1; transform:none; }

/* ── STAGGER CHILDREN ── */
.stagger-child {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.stagger-child.is-visible { opacity:1; transform:none; }

/* ── GOLD OVERRIDES ── */
.hover-gold:hover { color:#C5A059 !important; border-color:#C5A059 !important; }
.bg-gold  { background-color:#C5A059; }
.text-gold{ color:#C5A059; }
.border-gold { border-color:#C5A059; }

/* ── DECO LINE ── */
.deco-line { display:inline-block; width:36px; height:1px; background:#C5A059; }

/* ── SECTION DIVIDER ── */
.section-divider { width:48px; height:2px; background:linear-gradient(90deg,#527166,#C5A059); margin:0 auto; }

/* ── LOGO WATERMARK ── */
.logo-watermark {
    position:absolute; inset:0;
    background-image: url('static/Logo.jpeg');
    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: 38%;
    opacity: 0.028;
    pointer-events: none;
    z-index: 0;
}

/* ── GOLD CORNER ACCENT ── */
.corner-tl { position:absolute; top:16px; left:16px; width:28px; height:28px; border-left:1.5px solid #C5A059; border-top:1.5px solid #C5A059; opacity:0.55; pointer-events:none; }
.corner-br { position:absolute; bottom:16px; right:16px; width:28px; height:28px; border-right:1.5px solid #C5A059; border-bottom:1.5px solid #C5A059; opacity:0.55; pointer-events:none; }

/* ── SCROLL BOUNCE ── */
.scroll-hint { animation: scrollBounce 2.2s ease-in-out infinite; }
@keyframes scrollBounce {
    0%,100% { transform:translateY(0); }
    50%      { transform:translateY(7px); }
}

/* ── PARALLAX IMAGE ── */
.parallax-hero-img { will-change:transform; }

/* ── CAROUSEL ARROWS HIDE/SHOW ON DESKTOP -── */
@media (min-width: 768px) {
    .carousel-btn { opacity: 0; }
    .carousel-container:hover .carousel-btn { opacity: 1; }
}