:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff0000;
    --background-color: #f0f0f0;
    --text-color: #333333;
    --dark-grey: #3c3c3c;
	--grey: #5c5c5c;
}

body {
    margin: 185px 0 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

.header, .navbar {
    z-index: 100;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    height: 150px;
    width: 100%;
    margin: 0;
    background-color: var(--dark-grey);
}

.header img {
    height: 100%;
    width: auto;
}

.logo {
    display: flex;
    height: 150px;
    align-content: flex-start;
}

.header-text {
    display: flex;
    width: calc(100% - 300px);
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.header-text h1 {
    margin: 5px;
    padding: 0;
    font-size: 30px;
    text-align: center;
    color: var(--secondary-color);
}

.header-anim {
    margin: 0;
    padding: 0;
    animation: goldShine 3s infinite;
    font-size: 20px;
    background: linear-gradient(120deg, #ffffff, #ffcc00, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes goldShine {
    0% { text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 204, 0, 1), 0 0 50px rgba(255, 204, 0, 0.8); }
    100% { text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
}

/* .header-extra {
    display: flex;
    width: 33vw;
    justify-content: flex-end;
    align-items: center;
} */

.navbar {
    position: fixed;
    top: 150px;
    left: 0;
    background-color: var(--grey);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
    width: 100vw;
    font-size: clamp(12px, 2vw, 20px);
    line-height: 1.4;
    display: flex;
    
}

.navbar a {
    color: var(--secondary-color);
    margin: 0 5px;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.navbar a:hover {
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
    /* border-bottom: 2px solid #ffcc00; */
}



.hero {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
    height: 400px;
    width: auto;
    margin-right: 0;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.section {
    background-color: var(--dark-grey);
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 10px;
    color: var(--secondary-color);
}


.properties {
    display: flex;
    justify-content: center;
}

.property-align {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* margin-left: 40px; */
    max-width: 100%;
    gap: 20px;      
}

.property {
    background: #3c3c3c;
    border: 2px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 350px;
    transition: all 0.4s ease-in-out;
}

.property img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.property:hover {
    border: 2px solid #807f7f;
    box-shadow: 0 4px 15px rgba(0, 0.5, 0, 0.5);
    transform: scale(1.02);
    transition: all 0.4s ease-in-out;
}



.property-details {
    background: #3c3c3c;
    padding: 7px;
    text-align: center;
}


@media (max-width: 600px) {
    body {
        margin: 103px 0 0;
    }
    .header {
        height: 75px;
    }
    .header img {
        height: 75px;
    }
    .header-text {
        width: calc(100% - 150px);
    }
    .header-text h1 {
        font-size: 20px;
    }
    .header-anim {
        font-size: 15px;
    }
    .navbar {
        top: 75px;
        font-size: 15px;
    }
}