*{
    font-family: 'fengardo';
}

body {
    font-family: 'fengardo';
    margin: 0;
    padding: 0;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@font-face {
    font-family: 'fengardo';
    src: url('/static/fonts/fengardoneue_regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 10px;
    width: 100%;
    z-index: 1000;
    max-height: 100px;
    margin-bottom: 2%;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 10px 0;
}

.nav-link {
    font-family: 'fengardo';
    font-size: 1.1rem;
    color: #333;
    margin: 0 10px;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-link:hover {
    color: #777;
}


.navbar-collapse {
    background-color: white;
    max-width: 100%;
}

h1 {
    text-align: center;
    margin: 30px 0;
    color: black;
}

.property-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 30px;
    padding: 0 20px;
}

.property-card {
    flex: 0 0 calc(50% - 10px);
    background-color: white;
    border: 1px solid white;
    color: #0b1d30;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-info {
    padding: 15px;
}

.property-title {
    font-size: 30px;
    margin: 0 0 10px 0;
    color: #0b1d30;
}

.property-button {
    display: flex;
    justify-content: flex-end;
}

.view-more {
    background-color: #9dbace;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-more:hover {
    background-color: #7796af;
}

.page-title {
    margin-top: 30px;
    color: #333;
}

@media (max-width: 768px) {
    .property-card {
        flex: 0 0 100%;
    }
    
    .navbar-brand img {
        max-height: 40px;
    }
    
    .navbar-collapse {
        padding: 10px;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        margin-top: 10px;
        max-width: 100%;
    }
}