/* ==========================================
   RK OUTDOOR SERVICES
   MAIN WEBSITE STYLES
========================================== */


/* RESET */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #ffffff;
}


a {
    text-decoration: none;
    color: inherit;
}


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





/* ==========================================
   COLORS
========================================== */


:root {

    --green: #2f6b3c;
    --dark-green: #1f4d2a;
    --charcoal: #1f2933;
    --orange: #f97316;
    --light: #f4f6f5;
    --white: #ffffff;
    --gray: #6b7280;

}






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


.header {

    height: 90px;

    padding: 0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: white;

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow: 0 3px 15px rgba(0,0,0,.08);

}



.logo {

    font-size: 1.5rem;

    font-weight: 800;

    color: var(--green);

}



.navigation {

    display: flex;

    gap: 30px;

}



.navigation a {

    font-weight: 600;

    transition: .3s;

}



.navigation a:hover {

    color: var(--green);

}







/* ==========================================
   BUTTONS
========================================== */


.button {

    display: inline-block;

    background: var(--orange);

    color: white;

    padding: 14px 28px;

    border-radius: 6px;

    font-weight: 700;

    transition: .3s;

}



.button:hover {

    background: #dc5b08;

    transform: translateY(-2px);

}



.phone-button {

    display: inline-block;

    color: white;

    border: 2px solid white;

    padding: 12px 25px;

    border-radius: 6px;

    margin-left: 15px;

    font-weight: bold;

}







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


.hero {

    min-height: 650px;

    display: flex;

    align-items: center;

    color: white;

    background-image:
    linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.60)
    ),
    url("../images/hero/hero-01-1.jpg");

    background-size: 100% auto;

    background-position: center;

    background-repeat: no-repeat;

}



.page-hero {

    min-height: 350px;

    display: flex;

    align-items: center;

    color:white;

}



.hero-content {

    max-width: 700px;

    margin-left: 8%;

}



.hero h1,
.page-hero h1 {

    font-size: 3.2rem;

    line-height: 1.15;

    margin-bottom: 25px;

}



.hero p,
.page-hero p {

    font-size: 1.25rem;

    margin-bottom: 35px;

    color: #eeeeee;

}



.hero-buttons {

    display: flex;

    align-items: center;

}







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


section {

    padding: 80px 8%;

}



h2 {

    font-size: 2.4rem;

    margin-bottom: 20px;

    color: var(--charcoal);

}



.section-title {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;

}






/* ==========================================
   TRUST SECTION
========================================== */


.trust {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

    background: var(--light);

}



.trust-item {

    text-align: center;

}



.trust-item h3 {

    color: var(--green);

    margin-bottom: 10px;

}








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


.service-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}



.service-card {

    background: white;

    padding: 35px;

    border-radius: 10px;

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

    transition: .3s;

}



.service-card:hover {

    transform: translateY(-8px);

}



.service-card h3 {

    color: var(--green);

    margin-bottom: 15px;

}



.service-card a {

    color: var(--orange);

    font-weight: bold;

}







/* ==========================================
   PROJECT BANNER
========================================== */


.project-banner {

    text-align: center;

    color: white;

    background:

    linear-gradient(
        rgba(47,107,60,.90),
        rgba(47,107,60,.90)
    ),

    url("../images/projects/project-banner.jpg");


    background-size: cover;

    background-position: center;

}



.project-banner h2 {

    color: white;

}







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


.contact-section {

    background: var(--light);

}



.contact-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

}



.contact-box {

    background: white;

    padding: 25px;

    margin-top: 20px;

    border-radius: 8px;

    box-shadow:

    0 5px 15px rgba(0,0,0,.08);

}



.contact-box h3 {

    color: var(--green);

}



.form-container {

    background: white;

    padding: 40px;

    border-radius: 10px;

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

}



form {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



input,
select,
textarea {

    width: 100%;

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 6px;

    font-size: 1rem;

}



textarea {

    resize: vertical;

}







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


.gallery {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;

}



.photo {

    height: 300px;

    overflow: hidden;

    border-radius: 10px;

    background: #ddd;

}



.photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}



.photo:hover img {

    transform: scale(1.08);

}







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


.footer {

    background: var(--charcoal);

    color: white;

    padding: 40px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

}







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


@media(max-width:1000px){


.navigation {

    display:none;

}


.service-grid {

    grid-template-columns: repeat(2,1fr);

}



.gallery {

    grid-template-columns: repeat(2,1fr);

}



.contact-container {

    grid-template-columns:1fr;

}


}





@media(max-width:700px){


.header {

    padding:0 5%;

}



.logo {

    display: flex;

    align-items: center;

}

.logo a {

    display: flex;

    align-items: center;

}

.logo img {

    height: 72px;

    width: auto;

    display: block;

}



.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    background-image:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
        ),
        url("../images/hero/hero-01-1.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}



.hero-content {

    margin-left:6%;

    margin-right:6%;

}



.hero h1,
.page-hero h1 {

    font-size:2.1rem;

}



.hero-buttons {

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}



.phone-button {

    margin-left:0;

}



.trust {

    grid-template-columns:1fr;

}



.service-grid {

    grid-template-columns:1fr;

}



.gallery {

    grid-template-columns:1fr;

}



.footer {

    flex-direction:column;

    gap:20px;

    text-align:center;

}


}