:root {
    --emerald: #062C21;
    --silk: #F4F1EA;
    --gold: #B89352;
    --stone: #2A2A2A;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--silk);
    color: var(--stone);
    overflow-x: hidden;
}

h1,
h2,
h3,
.font-accent {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* Custom Logo Constraints */
.custom-logo {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

#mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--emerald);
    z-index: 10000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#mobile-menu.active {
    display: flex;
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.4s;
}

.nav-link:hover::after {
    width: 100%;
}

.luxe-card {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.luxe-card img {
    transition: 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.luxe-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 44, 33, 0.8) 0%, rgba(6, 44, 33, 0) 40%);
    z-index: 5;
    pointer-events: none;
}

.booking-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-bar.visible {
    transform: translateY(0);
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--emerald);
    display: flex;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--gold);
}

.comparison-col {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.comparison-col.featured {
    border: 2px solid var(--gold);
    position: relative;
    z-index: 10;
    transform: scale(1.02);
}

.heroSlider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 6px;
    height: 6px;
}

.heroSlider .swiper-pagination-bullet-active {
    background: #d4af37;
    opacity: 1;
    width: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Gallery items (apartment subpage) */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Breakfast Menu WYSIWYG Content */
#breakfast-menu .prose ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

#breakfast-menu .prose li {
    display: list-item !important;
}