/* Self-hosted fonts (latin subset) — originally Google Fonts:
   Open+Sans:400 | Work+Sans:200,400. Files live in ./fonts/.
   Work Sans is a variable font, so 200 & 400 share one file. */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/open-sans-400-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('./fonts/work-sans-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/work-sans-latin.woff2') format('woff2');
}

* {
    margin: 0px;
    padding: 0px;
}

html {
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 200;
    font-size: 64px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 200;
    font-size: 42px;
}

h3:not(.h3-ignore) {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
}

h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: black;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
}

a:hover {
    color: #efc11a;
}

hr {
    height: 12px;
    border: 0;
    box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.25);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 200;
    font-size: 42px;
    padding: 0px 8px 0px 8px;
    border-radius: 10px;
    background: white;
}

textarea {
    overflow: auto;
    outline: none;
    resize: none;
    border-radius: 10px;
    padding: 10px;
    margin: -10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}

input[type=submit] {
    background-color: white;
    border: 2px solid #efc11a;
    border-radius: 10px;
    color: #efc11a;
    padding: 16px 32px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

input[type=submit]:hover {
    background-color: #efc11a;
    color: white;
}

::selection {
    background: #fad326; /* WebKit/Blink Browsers */
    color: white;
}

::-moz-selection {
    background: #fad326; /* Gecko Browsers */
    color: white;
}

.site-banner {
    background-color: #efc11a;
    color: #1a1a1a;
    text-align: center;
    padding: 12px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.site-banner-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid #1a1a1a;
    border-radius: 4px;
    padding: 2px 8px;
    margin-right: 10px;
    white-space: nowrap;
}

.navigation {
    padding: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation-item {
    padding: 0px 30px;
    font-size: 18px;
}

.jumbotron {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background-image: url("../images/jumbotron_aerial.jpg");
    background-position: center;
    height: 400px;
    color: white;
}

.tagline {
    text-align: center;
    max-width: 1150px;
    margin: auto;
    padding: 60px 0px;
}

.cards {
    padding: 40px 0px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-item {
    width: 350px;
    padding: 15px 15px;
    margin: 5px 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 7px;
}

.flex-item:hover {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
    transform: scale(1.025);
}

.card-title {
    text-align: center;
    color: #efc11a;
}

.card-img {
    width: 100%;
    padding: 20px 0px;
}

.form {
    text-align: center;
    padding: 40px 0px;
    margin: 0px 0px -5px 0px;
}

.photo-gallery {
    padding: 0px 0px 10px 0px;
}

.video-gallery {
    display: flex;
    justify-content: center;
}

.video-gallery-column {
    max-width: 1420px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -15px;
    padding-bottom: 15px;
}

.photo-gallery-column img {
    cursor: pointer;
}

.max-width-div {
    max-width: 1150px;
    margin: auto;
}

.about-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.about-row-reverse {
    width: 100%;
    display: flex;
    flex-wrap: wrap-reverse;
}

.about-text {
    min-width: 200px;
    width: 60%;
}

.about-text h3 {
    color: #efc11a;
}

.about-image {
    width: 40%;
    align-self: center;
}

.big-textarea {
    width: 100%;
    height: 100px;
    max-width: 555px;
}

.small-textarea {
    width: 100%;
    height: 25px;
    max-width: 555px;
}

@media (max-width: 600px) {
    .about-text {
        width: 100%;
    }

    .about-image {
        width: 100%;
    }

    .pano {
        height: 400px;
    }

    .youtube {
        width: 336px;
        height: 189px;
    }

    .navigation {
        padding: 10px 0px;
        flex-direction: column;
    }

    .navigation-item {
        padding: 10px 0px;
        font-size: 20px;
    }
}

.footer {
    color: rgb(160, 160, 160);
    text-align: center;
    padding: 40px 0px;
}

.social-icons {
    padding: 0px 0px 15px 0px;
    margin: -20px 0px 0px 0px;
}
