/* =========================================
   STYLE.CSS - MAJI PROPERTY GLOBAL THEME
   ========================================= */
:root {
    --navy: #002147;         /* Trust */
    --navy-slate: #212A3E;   /* Dark Button/Footer Background */
    --bronze: #8C6239;       /* Primary Value Color (Gold/Bronze) */
    --bronze-hover: #A37548;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    --charcoal: #333333;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
}

a { text-decoration: none; transition: 0.3s; }

/* --- 1. THE CSS LOGO (No Image File Needed) --- */
.logo-container {
    display: flex; align-items: center; gap: 12px;
}
.logo-icon {
    display: flex; align-items: flex-end; gap: 4px; height: 35px;
}
.bar { width: 8px; border-radius: 2px 2px 0 0; }
.bar-1 { height: 25px; background-color: #3b82f6; } /* Blue */
.bar-2 { height: 35px; background-color: var(--bronze); } /* Gold */
.bar-3 { height: 20px; background-color: #3b82f6; } /* Blue */
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 2px;
}

/* --- 2. NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%;
    background-color: var(--navy-slate);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 3px solid var(--bronze);
}
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--bronze); }
.nav-btn {
    border: 1px solid var(--bronze); color: var(--bronze) !important;
    padding: 8px 15px; border-radius: 4px;
}
.nav-btn:hover { background: var(--bronze); color: var(--white) !important; }

/* --- 3. HERO & HEADERS --- */
/* Home Hero */
.hero {
    height: 90vh;
    background-size: cover; background-position: center;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; color: var(--white);
    position: relative; padding: 0 10%;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Sunset Effect Overlay */
    background: linear-gradient(to bottom, rgba(33,42,62,0.8) 0%, rgba(33,42,62,0.3) 50%, rgba(33,42,62,0.8) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; color: var(--white); text-shadow: 0 4px 10px rgba(0,0,0,0.5); }

/* Sub-Page Header */
.page-header {
    height: 40vh;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center;
}
.header-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 33, 71, 0.85); /* Solid Navy */
}
.page-title { position: relative; z-index: 2; color: var(--white); font-size: 2.5rem; }

/* --- 4. SECTIONS & LAYOUTS --- */
section { padding: 60px 10%; }
.bg-light { background-color: var(--light-grey); }

.split-layout { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.split-text { flex: 1; min-width: 300px; }
.split-image { 
    flex: 1; min-width: 300px; height: 350px; 
    background-size: cover; background-position: center; 
    border-bottom: 5px solid var(--bronze);
    border-radius: 4px;
}

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* Cards */
.card {
    background: var(--white); border: 1px solid #ddd;
    transition: 0.3s; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.card-img { height: 200px; background-size: cover; background-position: center; }
.card-body { padding: 20px; }

/* Buttons */
.btn-bronze {
    background: var(--bronze); color: var(--white); padding: 12px 25px;
    font-weight: 700; border-radius: 4px; display: inline-block;
}
.btn-navy {
    background: var(--navy-slate); color: var(--white); padding: 12px 25px;
    font-weight: 700; border-radius: 4px; display: inline-block; border: 1px solid rgba(255,255,255,0.2);
}

/* Checkmarks */
.check-list li { list-style: none; margin-bottom: 10px; display: flex; align-items: center; }
.check-icon { color: var(--bronze); margin-right: 10px; font-weight: bold; }

/* --- 5. FOOTER --- */
footer { background: var(--navy-slate); color: var(--white); padding: 40px 10%; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-col h4 { color: var(--bronze); font-size: 1rem; margin-bottom: 15px; }
.footer-col a { color: #ccc; display: block; margin-bottom: 8px; font-size: 0.9rem; }