<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* apartments/static/apartments/css/styles.css */

/* Reset and Global Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Lora', serif;
    overflow-x: hidden;
}

.container-centered {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Headers */
h1, h2, h3 {
    font-family: 'Lora', serif;
}

/* Discover Cities */
.discover-cities {
    margin-top: 2.5rem; /* Adjusted from previous padding */
}

/* Logo Hover Effect */
.logo-container:hover img {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    margin-top: 50px;
    background-color: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: #555; /* Default color */
    font-size: 24px; /* Icon size */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #6B4769; /* Change the color on hover */
}

/* Featured Stays */
.featured-stay-card {
    transition: transform 0.3s ease-in-out;
}

.featured-stay-card:hover {
    transform: scale(1.05);
}

/* City Styles */
.city-intro {
    background-color: rgba(0,0,0,0.6);
    color: white;
    position: absolute;
    bottom: 0;
    padding: 20px;
}

/* Dropdown Styles */
.dropdown-menu {
    display: none;
    transform-origin: top;
    animation: slideDown 0.3s forwards;
}

@keyframes slideDown {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

.booking-dropdown {
    background-color: #f9f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Misc Styles */
.btn-luxury {
    background-color: #925e84;
    color: white;
    border: none;
}

.btn-luxury:hover {
    background-color: #6B4769;
    color: white;
}

/* Main Content Adjustment */
#main-content {
    padding-top: 70px; /* Ensure content is below the fixed navbar */
}

.navbar.shrink + #main-content {
    padding-top: 60px; /* Adjust when navbar shrinks */
}

@media (max-width: 576px) {
    #main-content {
        padding-top: 65px;
    }

    .navbar.shrink + #main-content {
        padding-top: 55px;
    }
}

/* Hero Section Buttons */
.hero-section .btn {
    font-size: 0.9rem; /* Reduced font size to prevent enlargement */
    padding: 0.4rem 0.8rem; /* Reduced padding for compactness */
}

/* Additional Global Styles */

/* Ensure no unwanted styles affect navbar */
</pre></body></html>