﻿.banner-section {
    margin-top: 0;
    height: 520px;
    /* TODO: Remove block if deciding to keep
        video instead */
    /*noinspection CssUnknownTarget*/
    /*background-image: url('/images/banner.jpg');*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/

    position: relative;
}

.banner-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}

.banner-content {
    height: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

    .banner-content h1 {
        color: white;
        text-align: center;
        font-size: 52px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0;
    }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px 40px;
}

.booking-info-bar {
    margin-top: 40px;
}


.main-container {
    display: flex;
    margin-top: 50px;
    gap: 50px;
}

.error-container {
    margin-top: 50px;
    gap: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}



.main-container-left-column {
    flex-basis: 0;
    flex-grow: 1;
}

.main-container-right-column {
    flex-basis: 0;
    flex-grow: 3;
    /* Gives enough space to the service popup */
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}


