/* Jumbotron (template-parts/home/jumbotron.php) */

.jumbotron {
    box-sizing: border-box;
    width: 100%;
    background-color: transparent !important;
    height: 700px;
}


.jumbotron-row,
.jumbotron-col {
    box-sizing: border-box;
    display: flex;
    height: 100%;
}

.jumbotron-row {
    flex-direction: row;
    gap: 15px;
}

.jumbotron-col {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
}

.jumbotron-col:nth-child(2) {
    flex: 0 0 0;
}

/***
    Image / Thumbnail
***/

.jumbotron-image {
    box-sizing: border-box;
    width: auto;
    height: 90%;
}

.jumbotron-thumbnail {
    box-sizing: border-box;
    width: auto;
    height: 75%;
    filter: drop-shadow(1px 1px 25px #f9e2ae);
    margin-bottom: 30px;
}

/***
    Title, subtitle, descriptions
***/
.jumbotron-title,
.jumbotron-subtitle,
.jumbotron-description,
.jumbotron-description2 {
    background: -webkit-linear-gradient(40deg,
            var(--color-gold-dark),
            var(--color-gold-light),
            var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.jumbotron-title,
.jumbotron-subtitle {
    font-family: "Cormorant Garamond";
    text-transform: uppercase;
    width: fit-content;
}

.jumbotron-title {
    font-size: 72px;
}

.jumbotron-subtitle {
    font-size: 48px;
    margin: 15px 0;
}

.jumbotron-description {
    font-family: "Montserrat";
    font-size: 36px;
    font-weight: 300;
}

.jumbotron-description2 {
    font-family: "Montserrat";
    font-size: 20px;
    font-weight: 300;
}


@media screen and (max-width: 980px) {
    .jumbotron {
        height: auto;
        margin-top: 2rem;
    }

    .jumbotron-row,
    .jumbotron-col {
        width: 100%;
    }

    .jumbotron-row {
        flex-wrap: wrap;
    }

    .jumbotron-col {
        flex: initial !important;
    }

    .jumbotron-title {
        margin-top: 2rem;
        font-size: 2.5rem !important;
    }

    .jumbotron-description,
    .jumbotron-description2 {
        font-size: 1rem !important;
    }

    .jumbotron-subtitle {
        font-size: 1.25rem;
    }

    .jumbotron-image {
        margin-top: 5rem;
        width: 60%;
        max-height: auto;
    }

    .jumbotron-col:nth-child(3) {
        display: none;
    }


    .jumbotron-description {
        margin-left: 0;
    }

    .jumbotron-thumbnail {
        width: 100%;
        height: auto;
    }
}