/* style.css */

/* --- General Styles --- */
body {
    font-family: 'Arial', sans-serif; 
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* --- Header & Navigation --- */
header {
    background-color: #093341; /* NEW: Dark Blue-Green from logo background */
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-left: 10px;
}
.logo-container img {
    height: 35px; 
    width: auto;
}
nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
}
nav a:hover {
    color: #4a86e8; /* Accent Blue on hover */
}

/* --- Buttons & CTAs --- */
.cta-button {
    background-color: #6EA542; /* Primary Green */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
}
.cta-button:hover {
    background-color: #5b8e34;
}

/* --- Main Content Areas --- */
.hero {
    background-color: #093341; /* NEW: Dark Blue-Green from logo background */
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.management-promo {
    background-color: #FFFFFF;
    padding: 30px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.management-promo h2 {
    color: #4a86e8; /* Accent Blue */
}

/* --- Property & Contact Grids --- */
.content {
    padding: 40px 5%;
    text-align: center;
}
.property-list, .contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
}
.property-card, .contact-box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px;
    padding: 20px;
    width: 350px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}
.property-card {
    border-top: 5px solid #6EA542; /* Green accent on top */
}
.property-card h3, .contact-box h3 {
    color: #0C1821; 
}
.contact-box {
    border-left: 5px solid #6EA542;
    width: 45%;
    min-width: 300px;
}
.vendor-info {
    width: 95%;
}
.management-link {
    background-color: #093341; /* NEW: Dark Blue-Green from logo background */
    color: white;
    padding: 10px;
    display: block;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* --- Footer --- */
footer {
    background-color: #093341; /* NEW: Dark Blue-Green from logo background */
    color: white;
    text-align: center;
    padding: 20px 5%;
    font-size: 0.9em;
}