/* ==========================
   RESET
========================== */

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


/* ==========================
   BODY
========================== */

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

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


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

.header {
    background: rgba(7, 21, 36, 0.95);
    border-bottom: 2px solid #12314a;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;
}

.logo img {
    width: 260px;
    height: auto;
    display: block;
}

nav ul {
    list-style: none;

    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;

    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;

    transition: .3s;
}

nav a:hover,
nav a.active {
    color: #2cb8ff;
}


/* ==========================
   HOME HERO
   DOWNTOWN SUNSET
========================== */

.hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.70)
        ),
        url("images/downtownsunset.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-content {
    width: 90%;
    max-width: 700px;

    margin-left: 8%;
}

.hero h1 {
    font-size: 70px;
    line-height: 1.1;

    text-transform: uppercase;
    font-weight: 800;

    margin-bottom: 20px;
}

.hero h1 span {
    color: #ff8a00;
}

.hero p {
    margin-bottom: 35px;

    color: #eeeeee;

    font-size: 22px;

    max-width: 600px;
}


/* ==========================
   PORTFOLIO HERO
   AUTUMN ROAD
========================== */

.portfolio-hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.28),
            rgba(0, 0, 0, 0.68)
        ),
        url("images/autumnroad.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.portfolio-hero-content {
    width: 90%;
    max-width: 850px;
}

.portfolio-hero h1 {
    font-size: 70px;
    font-weight: 800;

    text-transform: uppercase;

    margin-bottom: 20px;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.9);
}

.portfolio-hero p {
    font-size: 22px;
    color: #ffffff;

    margin-bottom: 20px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-description {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;
}


/* ==========================
   NORMAL PHOTO PAGE HERO
========================== */

.page-banner {
    min-height: 500px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-bottom: 2px solid #12314a;
}

.page-banner h1 {
    font-size: 60px;

    color: #ffffff;

    text-transform: uppercase;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.9);
}

.page-banner p {
    font-size: 21px;

    color: #ffffff;

    margin-top: 10px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9);
}


/* ==========================
   ABOUT HERO
   FOREST TRAIL
========================== */

.about-hero {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.65)
        ),
        url("images/foresttrail.JPG");

    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
}


/* ==========================
   SERVICES HERO
   DOWNTOWN
========================== */

.services-hero {
    min-height: 650px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.68)
        ),
        url("images/treeslookup.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ==========================
   CONTACT HERO
   RIVER SUNSET
========================== */

.contact-hero {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.65)
        ),
        url("images/clouds.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ==========================
   BUTTON
========================== */

.btn {
    display: inline-block;

    padding: 16px 40px;

    border: 2px solid #2cb8ff;

    color: #2cb8ff;

    text-decoration: none;
    text-transform: uppercase;

    font-weight: bold;

    border-radius: 30px;

    transition: .3s;
}

.btn:hover {
    background: #2cb8ff;
    color: #071524;
}


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

.home-services {
    padding: 90px 0;

    background: #071524;
}

.services-grid {
    display: flex;

    gap: 35px;

    justify-content: center;

    flex-wrap: wrap;
}

.service-box {
    flex: 1;

    min-width: 280px;

    background: #101a28;

    padding: 35px;

    border-radius: 12px;

    text-align: center;

    transition: .3s;
}

.service-box:hover {
    transform: translateY(-6px);
}

.service-box h2 {
    color: #2cb8ff;

    margin-bottom: 15px;

    text-transform: uppercase;
}

.service-box p {
    color: #cccccc;
}


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

.about-section {
    padding: 80px 0;
}

.about-section h2 {
    color: #2cb8ff;

    font-size: 36px;

    margin-bottom: 25px;
}

.about-section h3 {
    color: #2cb8ff;

    margin-top: 30px;

    margin-bottom: 15px;
}

.about-section p {
    color: #dddddd;

    margin-bottom: 20px;

    font-size: 18px;
}


/* ==========================
   PORTFOLIO
========================== */

.portfolio-section {
    padding: 80px 0;
}

.portfolio-title {
    color: #2cb8ff;

    font-size: 38px;

    margin-bottom: 8px;
}

.portfolio-intro {
    color: #cccccc;

    font-size: 18px;

    margin-bottom: 35px;
}

.portfolio-grid {
    display: flex;

    flex-wrap: wrap;

    gap: 30px;
}

.portfolio-card {
    background: #101a28;

    border-radius: 12px;

    overflow: hidden;

    width: calc(33.333% - 20px);

    transition: .3s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio-card img {
    width: 100%;

    height: 300px;

    object-fit: cover;

    display: block;
}

.portfolio-card h3 {
    color: #2cb8ff;

    padding: 20px 20px 10px;
}

.portfolio-card p {
    color: #cccccc;

    padding: 0 20px 25px;
}


/* ==========================
   AERIAL PORTFOLIO
========================== */

.aerial-section {
    background: #071524;
}


/* ==========================
   CREATIVE PORTFOLIO
========================== */

.creative-section {
    background: #05070d;
}

.creative-placeholder {
    padding: 35px;

    min-height: 180px;
}

.creative-placeholder h3 {
    padding: 0 0 10px 0;
}


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

.services-section {
    padding: 80px 0;
}

.services-page-grid {
    display: flex;

    flex-wrap: wrap;

    gap: 30px;
}

.service-card {
    width: calc(33.333% - 20px);

    background: #101a28;

    padding: 35px;

    border-radius: 12px;

    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h2 {
    color: #2cb8ff;

    margin-bottom: 15px;
}

.service-card p {
    color: #cccccc;
}


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

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;

    gap: 60px;

    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1;

    min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
    color: #2cb8ff;

    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 20px;

    color: #dddddd;
}

.contact-item {
    margin-top: 25px;
}

.contact-item h3 {
    color: #ff8a00;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 16px;

    margin-bottom: 20px;

    background: #101a28;

    border: 1px solid #2c3e50;

    border-radius: 8px;

    color: #ffffff;

    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;

    min-height: 180px;
}

.contact-form button {
    background: transparent;

    cursor: pointer;
}


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

footer {
    background: #000000;

    color: #cccccc;

    text-align: center;

    padding: 35px;
}


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

@media (max-width: 900px) {

    .header-container {
        flex-direction: column;

        gap: 20px;
    }


    .logo img {
        width: 220px;
    }


    nav ul {
        flex-wrap: wrap;

        justify-content: center;

        gap: 18px;
    }


    .hero {
        min-height: 700px;

        text-align: center;
    }


    .hero-content {
        margin: auto;

        padding: 20px;
    }


    .hero h1 {
        font-size: 46px;
    }


    .hero p {
        font-size: 18px;
    }


    .portfolio-hero {
        min-height: 700px;
    }


    .portfolio-hero h1 {
        font-size: 46px;
    }


    .portfolio-hero p {
        font-size: 18px;
    }


    .page-banner {
        min-height: 400px;
    }


    .page-banner h1 {
        font-size: 46px;
    }


    .page-banner p {
        font-size: 18px;
    }


    .services-grid,
    .contact-grid {
        flex-direction: column;
    }


    .portfolio-card,
    .service-card {
        width: 100%;
    }


    .portfolio-card img {
        height: 320px;
    }

}

/* =========================================
   ABOUT PAGE - FOREST HEADER + HERO
========================================= */

.about-top {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.45)
        ),
        url("images/foresttrail.JPG");

    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;

    border-bottom: 2px solid #12314a;
}


/* Transparent header so forest shows through */

.about-header {
    background: rgba(7, 21, 36, 0.68);
    border-bottom: none;
}


/* About hero area */

.about-banner {
    min-height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 50px 0 70px;
}


/* ABOUT ME */

.about-banner h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}


/* Photography • Aerial • etc */

.about-banner p {
    color: #ffffff;
    font-size: 20px;
}


/* Blue dots */

.about-banner p span {
    color: #2cb8ff;
    margin: 0 5px;
}


/* About content */

.about-section {
    background: #05070d;
    padding: 70px 0 80px;
}


.about-section h2 {
    color: #2cb8ff;
    font-size: 36px;
    margin-bottom: 25px;
}


.about-section p {
    color: #dddddd;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}


.about-section h3 {
    color: #2cb8ff;
    margin-top: 30px;
    margin-bottom: 15px;
}


/* =========================================
   MOBILE ABOUT PAGE
========================================= */

@media (max-width: 900px) {

    .about-banner {
        min-height: 300px;
        padding: 50px 20px;
    }

    .about-banner h1 {
        font-size: 42px;
    }

    .about-banner p {
        font-size: 17px;
    }

}

/* =========================================
   SHARED TRANSPARENT PHOTO HEADERS
========================================= */

.home-header,
.portfolio-header,
.services-header,
.contact-header {
    background: rgba(7, 21, 36, 0.68);
    border-bottom: none;
}


/* =========================================
   HOME
   DOWNTOWN SUNSET
========================================= */

.home-top {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.55)
        ),
        url("images/downtownsunset.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 2px solid #12314a;
}

.home-banner {
    min-height: 650px;

    display: flex;
    align-items: center;
}

.home-banner-content {
    width: 90%;
    max-width: 700px;
    margin-left: 8%;
}

.home-banner h1 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.home-banner h1 span {
    color: #2cb8ff;
}

.home-banner p {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 25px;
}


/* =========================================
   PORTFOLIO
   AUTUMN ROAD
========================================= */

.portfolio-top {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.50)
        ),
        url("images/autumnroad.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 2px solid #12314a;
}

.portfolio-banner {
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.portfolio-banner h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
}

.portfolio-banner p {
    color: #ffffff;
    font-size: 20px;
}

.portfolio-banner p span {
    color: #2cb8ff;
    margin: 0 5px;
}


/* =========================================
   SERVICES
   TREES LOOKING UP
========================================= */

.services-top {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.55)
        ),
        url("images/treeslookup.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 2px solid #12314a;
}

.services-banner {
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.services-banner h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
}

.services-banner p {
    color: #ffffff;
    font-size: 20px;
}

.services-banner p span {
    color: #2cb8ff;
    margin: 0 5px;
}


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

.contact-top {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.30),
            rgba(0, 0, 0, 0.60)
        ),
        url("images/clouds.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 2px solid #12314a;
}

.contact-banner {
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.contact-banner h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-banner p {
    color: #ffffff;
    font-size: 20px;
}


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

@media (max-width: 900px) {

    .home-banner {
        min-height: 600px;
    }

    .home-banner-content {
        margin: auto;
        text-align: center;
        padding: 20px;
    }

    .home-banner h1 {
        font-size: 46px;
    }

    .home-banner p {
        font-size: 18px;
    }

    .portfolio-banner,
    .services-banner,
    .contact-banner {
        min-height: 330px;
        padding: 40px 20px;
    }

    .portfolio-banner h1,
    .services-banner h1,
    .contact-banner h1 {
        font-size: 42px;
    }

    .portfolio-banner p,
    .services-banner p,
    .contact-banner p {
        font-size: 17px;
    }

}

/* =========================================
   NEW SIMPLE HOME PAGE
========================================= */

.home-page {
    margin: 0;
    padding: 0;
    background: #000;
}


/* FULL SCREEN PHOTO */

.home-hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.45)
        ),
        url("images/downtownsunset.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* LOGO + MENU */

.home-center {
    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    width: 90%;
}


/* LARGE CENTER LOGO */

.home-logo {
    width: 500px;
    max-width: 80vw;
    height: auto;

    margin-bottom: 35px;

    filter: drop-shadow(
        0 5px 12px rgba(0, 0, 0, 0.8)
    );
}


/* MENU BELOW LOGO */

.home-nav {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 40px;

    flex-wrap: wrap;
}


.home-nav a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: bold;

    letter-spacing: 2px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9);

    transition: 0.3s;
}


.home-nav a:hover,
.home-nav a.active {
    color: #2cb8ff;
}


/* MOBILE */

@media (max-width: 700px) {

    .home-logo {
        width: 330px;
        max-width: 85vw;
        margin-bottom: 30px;
    }

    .home-nav {
        gap: 18px 24px;
    }

    .home-nav a {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

}