/* =====================================================
   LOVES PARK PROPERTY
   Main Stylesheet
===================================================== */

/* ---------- Fonts ---------- */

body {
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.7;
}

/* ---------- Headings ---------- */

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #1e2d3b;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

h2 {
    font-size: 2.7rem;
    margin-bottom: 20px;
}

h4 {
    margin-top: 20px;
    font-weight: 600;
}
/* =====================================================
   Interior Page Banner
===================================================== */

.page-header {

    background-image:
        linear-gradient(rgba(31,47,64,.45), rgba(31,47,64,.45)),
        url("../images/page-banner.png");

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

    height: 260px;

    margin-top: 76px;
}

.page-overlay {

    width: 100%;
    height: 100%;

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

.page-header h1 {

    color: white;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0;
}
/* =====================================================
   Navigation
===================================================== */

.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    background: transparent;
    transition: .35s;
}

.site-title {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
}

.site-subtitle {
    font-size: .70rem;
    color: rgba(255,255,255,.85);
    letter-spacing: 2px;
}

.nav-link {

    color: white !important;
    margin-left: 18px;
    font-size: .95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #7dbb67 !important;
}
/* Interior Pages */

.interior-nav {
    background-color: rgba(31, 47, 64, .96);
    box-shadow: 0 2px 12px rgba(0,0,0,.20);
    padding-top: 12px;
    padding-bottom: 12px;
}
/* =====================================================
   Hero
===================================================== */

.hero {

    height: 760px;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("../images/lovespark-hero.png");

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

.hero-overlay {

    height: 100%;
    display: flex;
    align-items: center;
}

.hero p {

    color: white;
    font-size: 1.2rem;
    max-width: 540px;
}

/* =====================================================
   Buttons
===================================================== */

.btn-success {

    background: #4f8d4d;
    border: none;

    padding: 14px 34px;

    border-radius: 50px;

    font-size: 1rem;

    font-weight: 600;

    transition: .25s;
}

.btn-success:hover {

    background: #3c6d3b;

    transform: translateY(-2px);
}

/* =====================================================
   Welcome Section
===================================================== */

section {

    background: white;
}

section p {

    max-width: 760px;

    margin: auto;
}

/* =====================================================
   Features
===================================================== */

.feature-icon {

    font-size: 3rem;

    color: #5e9a59;
}

.row h4 {

    margin-top: 20px;

    margin-bottom: 15px;
}

/* =====================================================
   Footer
===================================================== */

footer {

    background: #1f2f40;

    color: white;

    padding: 35px 0;

    margin-top: 40px;
}

footer i {

    margin-right: 8px;

    color: #79b36d;
}

/* =====================================================
   Responsive
===================================================== */

@media (max-width:991px) {

    h1 {

        font-size: 2.8rem;
    }

    .hero {

        height: 700px;
    }

    .navbar {

        background: rgba(25,35,45,.95);
    }

    .navbar-collapse {

        margin-top:20px;
    }

    .nav-link {

        margin-left:0;
        margin-bottom:10px;
    }

}

@media (max-width:768px) {

    h1 {

        font-size:2.3rem;
    }

    h2 {

        font-size:2rem;
    }

    .hero {

        height:650px;
    }

}
/* Active Navigation Link */

.nav-link.active {

    color: #8cc96d !important;
    font-weight: 600;

}
