:root{
    --brand-green:#2f8a4a;
    --dark:#0f1620;
    --muted:#6b7280;
    --accent:#f3f4f6;
    --max-width:1200px;
    --radius:8px;
    font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color-scheme: light;
}

.brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
}

.brand h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #000;
    font-family: "Georgia", serif;
    font-weight: 700;
    text-align: left;
}

.hero {
    position: relative; 
    height: 100vh;
    background-image: url('images/house1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    max-width: 800px;
}

.hero-image {
    display: none;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    background-color: #4CAF50;
    color: white;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.hero-buttons .btn:hover {
    background-color: #388E3C;
}

.btn-secondary {
    background-color: #ffffff;
    color: #4CAF50;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    color:var(--dark);
    background:linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.5;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 250px;
    height: auto;
}

.header-tagline {
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark);
    padding: 0 1rem;
    font-family: Inter, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}



.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: center;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:#fff;
    border-bottom:1px solid #e6e9ee;
    position: sticky;
    top: 0;
    z-index: 40;
}

.container{max-width:var(--max-width);margin:0 auto;padding:1rem}
.top-nav{display:flex;align-items:center;gap:0.5rem}
.phone{color:var(--dark);text-decoration:none;font-weight:600}
.btn{padding:0.6rem 0.9rem;border-radius:6px;border:1px solid transparent;cursor:pointer;font-weight:600}
.btn-primary{background:var(--brand-green);color:#fff}
.btn-outline{background:transparent;border-color:var(--brand-green);color:var(--brand-green)}
.menu-toggle{display:none;background:transparent;border:0;font-size:1.2rem;padding:0.4rem}

/* Main nav Moile */
.main-nav{display:none;background:#fff;border-top:1px solid #eee}
.main-nav .container{display:flex;gap:1rem;padding:0.5rem 1rem}
.main-nav a{color:var(--dark);text-decoration:none;padding:0.5rem 0}

/* Hero - see above */


/*About */
.about{padding:2rem 0}
.about h2{margin-top:0}


/* Services */
.services{background:#fff;padding:2rem 0;border-top:1px solid #f1f3f5;border-bottom:1px solid #f1f3f5}
.service{background:#fff;padding:0.75rem;border-radius:8px;text-align:center}
.service img{width:100%;height:200px;object-fit:cover;border-radius:6px;margin-bottom:0.5rem}
.service h3{margin:0.5rem 0 0.25rem}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Gallery */
.gallery{padding:2rem 0}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0.5rem}
.gallery-grid img{width:100%;height:auto;object-fit:contain;border-radius:8px}

/* Contact */
.contact{padding:2rem 0}
.estimate-form{background:#fff;padding:1rem;border-radius:8px;box-shadow:0 6px 18px rgba(15,23,32,0.04)}
.estimate-form label{display:block;margin-top:0.5rem;font-weight:600}
.estimate-form input,.estimate-form textarea,.estimate-form select{width:100%;padding:0.6rem;border:1px solid #e6e9ee;border-radius:6px;margin-top:0.25rem}
.form-actions{display:flex;gap:0.5rem;margin-top:0.75rem}
.form-note{font-size:0.85rem;color:var(--muted);margin-top:0.5rem}


.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brand-green);
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-icon:hover svg {
    transform: scale(1.15);
    color: #1b5e2f;
}

/* Footer */
.site-footer{background:#0b1220;color:#fff;padding:1rem 0;margin-top:2rem}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:1rem}
.footer-inner a{color:#cfead1;text-decoration:none}

/* Estimate form */


.estimate-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: 'Segoe UI', sans-serif;
}

.estimate-form input,
.estimate-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #4CAF50;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    background-color: #f9f9f9;
    color: #333;
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder {
    color: #888;
}

.estimate-form textarea {
    min-height: 150px;
    resize: vertical;
}

.estimate-form button {
    background-color: #4CAF50;
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.estimate-form button:hover {
    background-color: #388E3C;
}

/* Responsive */


@media (max-width: 768px) {
    /* Header Layout */
    .site-header .header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .brand {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .logo {
        max-width: 200px;
        height: auto;
        margin: 0 auto;
    }

    .header-tagling {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .top-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Hero Section */

    .hero {
        background-position: top;
        height: 80vh;
    }

    .hero-overlay {
        padding: 1.5rem;
        max-width: 90%;
    }

    .hero h1,
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
    /* Service grid*/
    .services-grid {
        grid-template-columns: 1fr;
    }
    /* Gallery grid */

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }

    /* Contact section */

    .contact-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .estimate-form {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }

    .social-lins {
        justify-content: center;
    }

    /* Floating call button */

    .floating-call {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #4CAF50;
        color: white;
        padding: 0.75rem 1.25rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 999;
    }
}
        























