/* Navy Blue and Gold Aesthetic */
body { 
    background-color: #f4f4f4; 
    color: #333; 
    padding-top: 0;    /* Prevents header overlap */
    padding-bottom: 0;  /* Prevents footer overlap */
    margin: 0; 

    font-family: 'Arial', sans-serif; 
}

/* Fixed Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right:50px;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #003366; 
    color: #ffffff;      
        font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Fixed Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #003366; 
    color: #ffffff;      
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    z-index: 1000;
    font-size: 0.9rem;
}
.hero { height: 500px; background: url('../images/hero-bg.jpg') no-repeat center/cover; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; }
.logo img { height: 60px; }
nav ul {list-style:none; display:flex; gap: 20px; margin-right:  50px;}
nav a { color: #fff; text-decoration: none; font-weight:100; }
.btn-login { background: #C5A059; padding: 10px 20px; border-radius: 5px; }

/* ... (hero and search-bar styles remain same) ... */

.luxury-card {
    background: #001F3F;
    color: #ffffff;
    border-bottom: 5px solid #C5A059;
    transition: transform 0.3s ease;
}

.hang {
    margin-top:300px;    
}
.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.gold-btn {
    background: #C5A059;
    color: #001F3F;
    font-weight: bold;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
}

/* Project Image Container Styling */
.project-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid #C5A059;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Use cover for property photos */
}

.logo-card-img {
    object-fit: contain !important; 
    background-color: #ffffff;      
}

.luxury-card:hover .project-img-wrapper img {
    transform: scale(1.05);
}