﻿.reservation-form-container {
    background-color: var(--surface-color);
    padding: 15px;
   /* box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);*/
    height: Calc(100% - 10px);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


.location .contact-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
}

    .location .contact-sidebar .contact-card {
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        margin-bottom: 10px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        text-align: center;
       /* box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);*/
    }

        .location .contact-sidebar .contact-card .card-icon {
            width: 60px;
            height: 60px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

            .location .contact-sidebar .contact-card .card-icon i {
                font-size: 1.75rem;
                color: var(--accent-color);
            }

        .location .contact-sidebar .contact-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .location .contact-sidebar .contact-card p {
            margin: 0;
            line-height: 1.6;
        }

    .location .contact-sidebar a {
        word-break: break-word;
    }

    .location .contact-sidebar .contact-card .hours-list .hour-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
    }

        .location .contact-sidebar .contact-card .hours-list .hour-item:last-child {
            border-bottom: none;
        }

        .location .contact-sidebar .contact-card .hours-list .hour-item.closed .time {
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-style: italic;
        }

        .location .contact-sidebar .contact-card .hours-list .hour-item .day {
            font-weight: 500;
        }

        .location .contact-sidebar .contact-card .hours-list .hour-item .time {
            font-weight: 600;
            color: var(--accent-color);
        }

@media (max-width: 1199px) {
    .location .contact-sidebar .contact-card {
        padding: 1rem;
    }
}

@media (max-width: 1399px) and (min-width:992px) {
    .location .contact-sidebar .contact-card .hours-list .hour-item {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .location .contact-sidebar {
        margin-top: 2rem;
    }

    .location .location-content .content-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {


    .location .contact-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 370px) {
    .location .contact-sidebar .contact-card .hours-list .hour-item {
        flex-direction: column;
    }
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.store-gallery-section .container-fluid {
    margin-bottom: 3px;
}

.store-gallery-section .venue-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.store-gallery-section .venue-info {
    background: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
    padding-bottom: 60px;
}

    .store-gallery-section .venue-info h3 {
        font-size: 36px;
        font-weight: 700;
        color: var(--contrast-color);
    }

@media (max-width: 574px) {
    .store-gallery-section .venue-info h3 {
        font-size: 24px;
    }
}

.store-gallery-section .venue-info p {
    color: var(--contrast-color);
}

/*.store-gallery-section .venue-gallery-container {
    padding-right: 12px;
}*/

.store-gallery-section .venue-gallery {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}

    .store-gallery-section .venue-gallery img {
        transition: all ease-in-out 0.4s;
    }

    .store-gallery-section .venue-gallery:hover img {
        transform: scale(1.1);
    }

.contact-sidebar .social-link {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}

    .contact-sidebar .social-link a {
        width: 42px;
        height: 42px;
        background-color: color-mix(in srgb, var(--default-color), transparent 92%);
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        text-decoration: none;
    }

        .contact-sidebar .social-link a:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-3px);
        }

        .contact-sidebar .social-link a i {
            font-size: 16px;
        }
