/* Basic Reset and Typography */
body {
    margin: 0;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.vh-hero {
    height: 308px;
}

#carousel-item-1 {
    background-image: url("../images/lake_mountains.jpg");
}

#carousel-item-2 {
    background-image: url("../images/old_stories_of_yesteryear.jpg");
}

#carousel-item-3 {
    background-image: url("../images/rock-arch.jpg");
}

.bg-img-cover {
    background-position: center;
    background-size: cover;
}

.carousel-btn-wrapper {
    background-color: black;
}

#hero-about {
    background-image: url("../images/splish_splash_talking_trash.jpg");
}

#hero-gallery {
    background-image: url("../images/wishing_well_with_angels.jpg");
}

#hero-contact {
    background-image: url("../images/coffee.jpg");
}

#messageTextarea {
    height: 200px;
}

/* Vertical iPad (810x1080) */
@media (min-width: 720px) {
    .vh-hero {
        height: 580px;
    }
}

/* Horizontal iPad (810x1080) */
@media (min-width: 1000px) {
    .vh-hero {
        height: 670px;
    }

    .w-lg-50 {
        width: 50%;
    }
}

/* 13 in Laptop (1440x900) */
@media (min-width: 1380px) {
    .vh-hero {
        height: 720px;
    }

    .w-lg-50 {
        width: 50%;
    }
}

/* 15 in Laptop (1920x1080) */
@media (min-width: 1600px) {
    .vh-hero {
        height: 920px;
    }

    .w-lg-50 {
        width: 50%;
    }
}

