/* ==================================================
   Flat River Landscaping
   Main Stylesheet
   Part 1 of 2
================================================== */

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#161616;
    color:#f5f5f5;
    overflow-x:hidden;
    line-height:1.7;
}

/* CONTAINER */

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

/* LINKS */

a{
    text-decoration:none;
}

/* IMAGES */

img{
    max-width:100%;
    display:block;
}

/* ==========================
   HEADER
========================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(20,20,20,.82);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.header-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:72px;

}

/* ==========================
   NAVIGATION
========================== */

nav{

    display:flex;

    align-items:center;

}

nav a{

    color:#f5f5f5;

    margin-left:38px;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#d97706;

}

.estimate-btn{

    margin-left:45px;

    background:#d97706;

    color:#fff;

    padding:14px 28px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;

}

.estimate-btn:hover{

    background:#b86000;

}

/* ==========================
   HERO
========================== */

.hero{

    height:100vh;

    background:

    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),

    url("images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.hero-content{

    max-width:850px;

    padding:20px;

}

.hero h1{

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    color:#d6d6d6;

    margin-bottom:45px;

}

.button{

    display:inline-block;

    background:#d97706;

    color:#fff;

    padding:18px 42px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;

}

.button:hover{

    background:#b86000;

    transform:translateY(-3px);

}

/* ==========================
   PAGE HEADER
========================== */

.page-header{

    height:45vh;

    background:

    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),

    url("images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.page-header h1{

    font-size:60px;

    margin-bottom:15px;

}

.page-header p{

    color:#cfcfcf;

    font-size:20px;

}

/* ==========================
   SECTIONS
========================== */

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:15px;

}

.section-title p{

    color:#bdbdbd;

    font-size:18px;

}

/* ==================================================
   Flat River Landscaping
   Main Stylesheet
   Part 2 of 2
================================================== */

/* ==========================
   SERVICES
========================== */

.services{

    background:#1c1c1c;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    background:#262626;

    border:1px solid #333;

    border-radius:14px;

    padding:40px;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#d97706;

    box-shadow:0 15px 40px rgba(217,119,6,.25);

}

.service-card h3{

    color:#d97706;

    margin-bottom:18px;

    font-size:26px;

}

.service-card p{

    color:#cfcfcf;

}

/* ==========================
   GALLERY
========================== */

.gallery{

    background:#161616;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:12px;

    transition:.35s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.04);

}

/* ==========================
   ABOUT
========================== */

.about{

    background:#1c1c1c;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about h2{

    font-size:48px;

    margin-bottom:20px;

}

.about p{

    color:#cfcfcf;

    margin-bottom:20px;

}

/* ==========================
   CONTACT
========================== */

.contact{

    background:#161616;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

form{

    display:flex;

    flex-direction:column;

}

input,
textarea,
select{

    background:#262626;

    color:white;

    border:1px solid #3a3a3a;

    padding:16px;

    border-radius:8px;

    margin-bottom:20px;

    font-size:16px;

    font-family:Poppins,sans-serif;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:#d97706;

}

textarea{

    min-height:180px;

    resize:vertical;

}

button{

    background:#d97706;

    color:white;

    border:none;

    padding:18px;

    font-size:18px;

    font-weight:700;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#b86000;

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#111;

    border-top:1px solid #333;

    padding:60px 0;

    text-align:center;

}

footer h3{

    color:#d97706;

    margin-bottom:15px;

}

footer p{

    color:#bdbdbd;

    margin:10px 0;

}

/* ==========================
   UTILITIES
========================== */

.text-center{

    text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:60px;}

/* ==========================
   MOBILE
========================== */

@media(max-width:992px){

.header-inner{

    flex-direction:column;

    height:auto;

    padding:20px 0;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

    margin-top:20px;

}

nav a{

    margin:10px 15px;

}

.estimate-btn{

    margin:20px 0 0;

}

.hero h1{

    font-size:46px;

}

.hero p{

    font-size:18px;

}

.page-header h1{

    font-size:42px;

}

.about-grid,
.contact-grid{

    grid-template-columns:1fr;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.service-grid{

    grid-template-columns:1fr;

}

.logo img{

    height:60px;

}

}