/* Home Banner */
.banner {
    display: flex;
    background-position: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: calc(100vh - 112px);
    background-image:
        linear-gradient(to top, #000000, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url("../images/banner_img.jpg");
    background-size: cover;
    text-align: center;
    z-index: 1;
    background-attachment: fixed;
    position: relative;
    /* Added for parallax  */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.slideshow {
    height: calc(100vh - 112px);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(228, 220, 200, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(228, 220, 200, 0.8);
    transform: scale(1.1);
}

.dot.active {
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    transform: scale(1.2);
}

/* About info blocks */

.about-info {
    display: grid;
    grid-template-columns: 1fr;
    padding: 32px;
    text-align: center;
    justify-items: center;
    font-family: 'Verdana', sans-serif;
    width: 100vw;
}

.about-info .contact-button {
    margin: 16px;
}

.about-info-block {
    margin: 16px;
    padding: 16px;
    background-color: white;
    border-radius: 32px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.about-info-block p {
    color: var(--secondary-color);
}

.main-logo {
    max-width: 70%;
    margin: 48px auto 0px auto;
    align-content: center;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

/* Less than 650px */
@media screen and (max-width: 650px) {}

/* Between 600px and 1000px */
@media screen and (min-width: 650px) and (max-width: 1000px) {
    .main-logo {
        max-width: 50%;
    }
}

/* Greater than 1000px */
@media screen and (min-width: 1000px) {
    .main-logo {
        max-width: 30%;
        margin: 64px auto 0px auto;
    }

    .about-info {
        grid-template-columns: 1fr 1fr;
        padding: 48px 64px 64px 64px;
    }
}