body {
    background-color: var(--background);
    color: var(--on-surface);
    font-family: var(--body-font);
}

.font-headline {
    font-family: var(--headline-font);
}

/* Navbar Customization */
.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(252, 249, 248, 0.85);
    padding: 1.5rem 3rem;
}

.nav-link {
    color: #6c757d !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--secondary);
}

/* Hero Carousel */
.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.7);
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    max-width: 700px;
}

/* Buttons */
.btn-luxury {
    background-color: var(--primary);
    color: white;
    border-radius: 0;
    padding: 12px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.4s;
    border: none;
}

.btn-luxury:hover {
    background-color: var(--secondary);
    color: white;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 3rem;
    height: 100%;
    transition: transform 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.dark {
    background: var(--primary);
    color: white;
}

/* Masonry Gallery simulation */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    height: 300px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.material-symbols-outlined {
    vertical-align: middle;
}

.logo {
    max-width: 40px;
}

.text-secondary-emphasis
{
    color: var(--secondary) !important;
}