/* Small additions on top of the original template's CSS, previously injected
   inline by html/js/header.js via document.write. Kept as a separate file so
   the vendor CSS files can stay byte-for-byte untouched. */
.logo-box { text-align: center; }
.logo-box .logo { display: inline-block; text-align: center; }
.logo-box .logo img { display: block; margin: 0 auto; width: 90px; height: auto; }
.logo-hotel-name {
    display: block;
    color: rgb(228,197,144);
    font-size: 17px;
    letter-spacing: 5px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}

/* Lightbox (replaces Fancybox) */
.site-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(14,13,11,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    animation: siteLightboxFade 250ms ease;
}

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

.site-lightbox-content {
    max-width: 100%;
    max-height: 100%;
    display: flex;
}

.site-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.6);
}

.site-lightbox-video {
    width: min(90vw, 960px);
    aspect-ratio: 16 / 9;
}

.site-lightbox-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.site-lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(228,197,144,0.5);
    color: rgb(228,197,144);
    font-size: 18px;
    cursor: pointer;
    transition: all 300ms ease;
}

.site-lightbox-close:hover {
    background: rgb(228,197,144);
    color: rgb(14,13,11);
}

.site-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(228,197,144,0.5);
    color: rgb(228,197,144);
    font-size: 20px;
    cursor: pointer;
    transition: all 300ms ease;
}

.site-lightbox-nav:hover {
    background: rgb(228,197,144);
    color: rgb(14,13,11);
}

.site-lightbox-prev { left: 20px; }
.site-lightbox-next { right: 20px; }

@media (max-width: 767px) {
    .site-lightbox-overlay { padding: 70px 20px 20px; }
    .site-lightbox-nav { width: 40px; height: 40px; font-size: 16px; }
    .site-lightbox-prev { left: 6px; }
    .site-lightbox-next { right: 6px; }
}
