a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
    /* Use inherit to take the color from the parent element */
    text-decoration: none;
}

body {
    background-color: #e4e5e7;
    color: rgba(8, 27, 51, .8);
    text-shadow: 5px 5px 8px rgba(255, 255, 255, 0.1);
    /* White shadow */

    font-family: 'Oswald', sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    height: 100%;
    letter-spacing: .02em;
    line-height: 1.5em;
    text-rendering: optimizeLegibility;
}

header {
    background-color: #fff;
    /* optional, makes logo pop */
}

h1 {
    color: #081b33;
    font-style: normal;
    font-weight: 400;
    line-height: .9em;
    letter-spacing: .04em;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 14px;
    font-style: normal;
    line-height: 1.4em;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #e6aa33;
    /*color: #f7b229; */
    /*color: #ff6600; */
    /* Vibrant orange */
    text-shadow: 3px 3px 3px rgba(27, 26, 24, 0.1);
}

.banner-image {
    height: 70vh;
    object-fit: cover;
    width: 100%;
    object-position: center;
    transition: transform 0.5s linear;
}

/* .logo-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 106px;
} */

.logo-img {
    max-height: 80px;
    /* control the logo height */
    height: auto;
    width: auto;
}

.overlay-left-start {
    left: 5%;
    transform: translateY(-50%);
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

.overlay-paragraph {
    color: #f2f2f2;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-size: 5.625vw;
    font-style: normal;
    letter-spacing: .01em;
    line-height: 1em;
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
}


.overlay-title {
    font-style: normal;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 2.6em;
    color: #66faff;
    white-space: nowrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@media (min-width: 1400px) {
    .banner-image {
        object-position: center center;
    }
}

@media (min-width: 768px) {
    .banner-overlay {
        width: 100%;
    }

    .banner-image {
        transform: scale(1.05);
    }

}

/* Adjust banner for mobile screens */
@media (max-width: 767.98px) {
    header .row {
        text-align: center;
    }

    header .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center !important;
        margin-bottom: 0.5rem;
    }

    .banner-image {
        height: 35vh;
        /* shorter banner */
        object-position: center top;
        transform: scale(1.1);
        /* keep subtle zoom effect */
    }

    .logo-img {
        max-height: 60px;
    }

    .overlay-left-start {
        left: 5%;
        /* keep it left-aligned */
        top: 55%;
        /* adjust vertical centering */
        transform: translateY(-50%);
        /* only move vertically, not horizontally */
        width: 90%;
        text-align: left;
    }

    .overlay-title {
        font-size: 1.1rem;
        line-height: 1.3em;
        letter-spacing: .12em;
    }

    .overlay-paragraph {
        font-size: 4vw;
        /* responsive text size */
        line-height: 1.1em;
        max-width: 80%;
    }
}