/* ==========================
   HOUSECALL COMPUTERS
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f6f6f6;
    color:#333;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    background:#222;
    color:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

.logo h1{color:#ff8800;font-size:2rem;}
.logo p{color:#ddd;}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{color:#ff8800;}

/* HERO */

.hero{
    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url("images/hero.jpg") center/cover no-repeat;
    min-height:680px;
    display:flex;
    align-items:flex-start;
    padding-top:90px;
    color:#fff;
}

.hero-content{
    max-width:650px;
}

.hero h2{
    font-size:3.5rem;
    color:#fff;
    text-shadow:0 3px 12px rgba(0,0,0,.8);
    margin-bottom:10px;
}

.hero h3{
    font-size:2rem;
    color:#ff8800;
    text-shadow:0 3px 12px rgba(0,0,0,.8);
    margin-bottom:25px;
}

.hero-tagline{
    font-size:1.3rem;
    text-shadow:0 2px 8px rgba(0,0,0,.8);
    margin-bottom:35px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:40px;
}

.hero-features div{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(6px);
    padding:14px 20px;
    border-radius:10px;
}

.hero-button{
    display:inline-block;
    background:#ff8800;
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.hero-button:hover{
    background:#d96f00;
    transform:translateY(-3px);
}

/* SECTIONS */

section{padding:80px 0;}

section h2{
    text-align:center;
    font-size:2.4rem;
    margin-bottom:45px;
}

/* GRIDS */

.features-grid,
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature-card,
.service-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    padding:30px;
}

.service-card{
    padding:0;
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.service-card h3,
.service-card p{
    padding:0 25px;
}

.service-card h3{
    margin:20px 0 10px;
    color:#ff8800;
}

.service-card p{
    padding-bottom:25px;
}

.feature-card:hover,
.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.icon{
    font-size:2.5rem;
    margin-bottom:18px;
}

/* ABOUT */

.about p{
    max-width:850px;
    margin:20px auto;
    text-align:center;
}

blockquote{
    max-width:900px;
    margin:40px auto 0;
    text-align:center;
    color:#ff8800;
    font-size:1.5rem;
    font-style:italic;
    font-weight:700;
}

/* CONTACT */

.contact{
    background:#333;
    color:#fff;
    text-align:center;
}

.contact h2{color:#fff;}

.contact a{
    color:#ff8800;
    text-decoration:none;
}

.phone{
    font-size:2rem;
    font-weight:700;
    margin:20px 0;
}

/* FOOTER */

footer{
    background:#111;
    color:#bbb;
    text-align:center;
    padding:35px 20px;
}

/* MOBILE */

@media (max-width:768px){

header .container{
    flex-direction:column;
}

nav{
    margin-top:18px;
}

nav a{
    display:inline-block;
    margin:8px 10px;
}

.hero{
    min-height:520px;
    text-align:center;
}

.hero h2{
    font-size:2.4rem;
}

.hero-features{
    justify-content:center;
}

.hero-button{
    width:100%;
    max-width:320px;
}

section{
    padding:60px 0;
}

}
