@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #f8f5f2;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/2000x1200/?luxury-home') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.2rem;
    margin: 0;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.4rem;
    margin: 20px 0 40px;}

.btn {
    padding: 16px 40px;
    background: #d4af87;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    background: #c9a46f;
    transform: scale(1.05);
}

.section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

input, textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: #111;
    color: #ddd;
    text-align: center;
    padding: 60px 20px;
    font-size: 0.95rem;
}

/* ====================== MOBILE RESPONSIVE ====================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
        letter-spacing: 2px;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 70px 15px;
    }
    
    .grid {
        gap: 25px;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero {
        height: 90vh;
    }
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), 
                url('images/issaquah.jpg') center/cover no-repeat;
    transition: transform 0.1s ease-out;
    opacity: 0.5;   /* Change this number */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-logo {
    max-width: 170px;
    width: 100%;
    height: auto;
    margin-bottom: -10px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

/* Fix mobile form overflow */
#contact form {
    padding: 0 15px;
    box-sizing: border-box;
}

#contact input,
#contact textarea,
#contact button {
    box-sizing: border-box;
    max-width: 100%;
}

/* Extra safety for very small screens */
@media (max-width: 480px) {
    #contact form {
        padding: 0 10px;
    }
    
    .btn {
        font-size: 1rem;
        padding: 14px 20px;
    }
}

/* ==================== CONTACT PARALLAX ==================== */
.parallax-contact {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    color: white;
    text-align: center;
}

.parallax-bg-contact {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 150px);
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat;
    transition: transform 0.1s ease-out;
    z-index: 1;
}

.content-overlay {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
    .section { padding: 70px 15px; }
    .hero h1 { font-size: 3.2rem; }
}

@media (max-width: 480px) {
    .hero { height: 90vh; }
    .parallax-contact { padding: 80px 10px; }
}