/* Premium Maui Bob's Agency Master CSS - Feb 2026 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --navy: #002d5e;
    --blue: #004a99;
    --accent: #87ceeb;
    --white: #ffffff;
    --light: #f8fafb;
    --text: #333333;
}

body { 
    font-family: 'Open Sans', sans-serif; 
    color: var(--text); 
    margin: 0; 
    line-height: 1.7; 
    background: var(--white); 
    overflow-x: hidden; 
}

h1, h2, h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 800; 
    color: var(--navy); 
    text-transform: uppercase; 
    letter-spacing: -0.5px; 
}

/* --- NAVIGATION & LOGO PROMINENCE --- */
nav { 
    background: var(--white); 
    /* Reduced vertical padding (5px) allows the logo to fill the height */
    padding: 5px 10%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 20px rgba(0,0,0,0.05); 
    min-height: 120px; /* Ensures the bar is tall enough for the prominent logo */
}

nav img { 
    height: 130px; /* Increased height to make the logo and phone number prominent */
    width: auto;   /* Maintains proportions so it widens naturally */
    display: block; 
    margin: 0;
}

.nav-links a { 
    text-decoration: none; 
    color: var(--navy); 
    font-weight: 700; 
    margin-left: 30px; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s; 
}

.nav-links a:hover { 
    color: var(--blue); 
}

/* --- HERO SECTION --- */
.hero { 
    height: 65vh; 
    background: linear-gradient(rgba(0,45,94,0.75), rgba(0,45,94,0.75)), url('images/window-washing-van.jpg');
    background-size: cover; 
    background-position: center;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    color: var(--white); 
    text-align: center;
    padding: 0 20px;
}

.hero h1 { 
    font-size: 3.8rem; 
    color: var(--white); 
    margin: 0; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); 
}

.hero p { 
    font-size: 1.3rem; 
    max-width: 800px; 
    margin: 25px 0 40px; 
    opacity: 0.9; 
}

/* --- SERVICE GRID (4-COLUMN) --- */
.container { 
    max-width: 1400px; 
    margin: auto; 
    padding: 80px 20px; 
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.card { 
    background: var(--white); 
    border-radius: 4px; 
    overflow: hidden; 
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.card:hover { 
    transform: translateY(-12px); 
}

.card img { 
    width: 100%; 
    height: 230px; 
    object-fit: cover; 
    border-bottom: 5px solid var(--blue);
}

.card-body { 
    padding: 25px; 
}

.card-body h3 { 
    font-size: 1rem; 
    margin-top: 0; 
    color: var(--blue); 
}

/* --- SERVICE AREA --- */
.area-section { 
    background: var(--navy); 
    color: var(--white); 
    padding: 80px 10%; 
    text-align: center; 
}

.area-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 30px; 
    margin-top: 40px;
}

.area-item { 
    padding: 15px; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* --- BUTTONS --- */
.btn-primary { 
    background: var(--blue); 
    color: #ffffff !important; 
    padding: 18px 45px; 
    text-decoration: none; 
    font-weight: 800; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    display: inline-block;
}

/* --- FOOTER --- */
footer { 
    background: #111; 
    color: #777; 
    padding: 60px 10%; 
    text-align: center; 
}

footer strong { 
    color: var(--white); 
    font-size: 1.1rem; 
    display: block; 
    margin-bottom: 5px; 
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    nav { 
        height: auto; 
        padding: 20px; 
        flex-direction: column; 
    }
    nav img { 
        height: auto; 
        width: 100%; 
        max-width: 300px; 
    } 
    .nav-links { 
        margin-top: 20px; 
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .nav-links a { 
        margin: 5px 10px; 
    }
    .hero h1 { 
        font-size: 2.2rem; 
    }
    .grid { 
        grid-template-columns: 1fr; 
    }
}