:root {
    --bs-primary: #5a0833; /* Deep Red/Burgundy - inspired by "red velvet walls" */
    --bs-secondary: #a97d0c; /* Gold/Brass - for accents */
    --bs-body-bg: #F9F8F6; /* Off-white/Cream - softer than pure white */
    --bs-body-color: #333333; /* Dark Grey for text */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1a1a1a;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.btn-secondary {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}

.btn-secondary:hover {
    background-color: #8a6509 !important;
    border-color: #8a6509 !important;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: #6d2328;
    border-color: #6d2328;
}

.navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--bs-primary) !important;
    letter-spacing: 0.5px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: #555 !important;
    margin-left: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--bs-primary) !important;
}

.dropdown-menu {
    border-radius: 4px;
    padding: 0.5rem 0;
}

.dropdown-item {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bs-body-bg);
    color: var(--bs-primary);
}

.hero-section {
    background-color: #e9ecef; /* Placeholder for image */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background-color: var(--bs-secondary);
    margin: 1rem auto 0;
}

.feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: var(--bs-secondary);
    color: #fff;
    padding: 4rem 0 2rem;
    /* margin-top: 5rem; */
}

.footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #aaa;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* ── Gallery ── */
.gallery-section {
    padding: 0 0 3rem;
    overflow: hidden;
}

.gallery-swiper {
    width: 100%;
    overflow: visible;
}

.gallery-swiper .swiper-slide {
    height: auto;
}

.gallery-swiper .swiper-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-swiper .swiper-slide img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .gallery-swiper .swiper-slide img {
        height: 360px;
    }
}

@media (min-width: 1200px) {
    .gallery-swiper .swiper-slide img {
        height: 420px;
    }
}

.gallery-swiper .swiper-pagination {
    position: relative;
    margin-top: 1.25rem;
    bottom: auto;
}

.gallery-swiper .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: var(--bs-secondary, #6c757d);
    opacity: 0.35;
    transition: opacity 0.3s, transform 0.3s;
}

.gallery-swiper .swiper-pagination-bullet-active,
.gallery-swiper .swiper-pagination-bullet-active-main {
    opacity: 1;
    background: var(--bs-primary, #0d6efd);
}

/* Floorplan Section */
.floorplan-wrapper {
    line-height: 0;
}

.room-rect {
    fill: rgba(255, 255, 255, 0.01); /* Clickable but invisible */
    stroke: #0d6efd;
    stroke-width: 0;
    transition: all 0.2s ease-in-out;
}

.room-label {
    fill: #333;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Segoe UI', Roboto, sans-serif;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

.small-label { font-size: 9px; }
.x-small-label { font-size: 8px; }

/* Hover Highlight */
.room-group:hover .room-rect {
    fill: rgba(13, 110, 253, 0.15);
    stroke-width: 2;
    cursor: pointer;
}

.room-group:hover .room-label {
    fill: #000;
    font-size: 12px; /* Slight scale effect on hover */
}

/* Apartment Details Section */
.apartment-details {
    padding: 5rem 0;
}

.apartment-details h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.apartment-characteristics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    /* margin-top: 3rem; */
}

@media (min-width: 992px) {
    .apartment-characteristics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.characteristic-item {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.characteristic-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.characteristic-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.characteristic-text {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}