/* --- HERO SECTION --- */
.hero {
    /* Use min-height so it doesn't shrink when the Android address bar hides */
    min-height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)),
                url('images/cards/family-room-01.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column; /* Ensures text and buttons stack correctly */
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

    /* THE FIX: Push the content down away from the fixed navbar */
    padding: 100px 20px 0;
}

.hero-content h1 { font-size: clamp(2.0rem, 6vw, 4.5rem); margin-bottom: 15px; text-transform: uppercase; }
.hero-content p { font-size: 1.4rem; margin-bottom: 30px; opacity: 0.9; }

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    background-color: #c5a059; /* Brand Gold */
    color: #fff !important;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
    border: none;
}

.btn:hover {
    background-color: #ab8b4a; /* Darker Gold */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* --- SERVICE GRID --- */
.portfolio { padding: 100px 10%; text-align: center; background: #fff; }
.portfolio h2 { margin-bottom: 50px; font-size: 2.2rem; position: relative; padding-bottom: 15px; text-transform: uppercase; }
.portfolio h2::after { content: ''; width: 60px; height: 4px; background: #c5a059; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
.grid {
    display: grid;
    /* Force 2 columns on desktop */
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    max-width: 1000px; /* Limits width so the 2x2 stays tight and elegant */
    margin: 0 auto;    /* Centers the whole 2x2 block */
}

.card { background: white; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; display: block; border: 1px solid #eee; }
.card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.card p { padding: 25px; font-weight: bold; font-size: 1rem; letter-spacing: 1px; color: #111; text-transform: uppercase; }

/* Mobile Tweaks */

@media (max-width: 800px) {
    .hero {
        /* Pushes the text down away from the fixed nav */
        padding-top: 140px; 
        
        /* THE FIX: Add bottom padding so the Video button isn't at the very edge */
        padding-bottom: 60px; 
        
        /* Switch from height to min-height so the section can grow if needed */
        height: auto; 
        min-height: 80vh; 
        
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        margin-bottom: 30px; /* Space between the text and the first button */
    }

    .hero-btns {
        width: 100%;
        display: flex;
        flex-direction: column; /* Stacks buttons vertically for easier thumb-tapping */
        align-items: center;
        gap: 12px;
    }

    .hero-btns .btn { 
        width: 50%; 
        margin: 0 auto; 
        padding: 15px; /* Bigger tap target for mobile */
    }

    .portfolio { padding: 60px 5%; }
    .grid { grid-template-columns: 1fr; }
}

