/* ======================= */
/* STORE INFO PAGE STYLES  */
/* ======================= */

section.info-container {
    background-color: black;
    color: white;
    padding-top:10px !important;
}

/* Store Info Section */
div.store-info {
    text-align: center;
    padding: 20px;
}

/* Title */
.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Store Hours */
.store-hours {
    margin: 10px 0 30px 0;
}

.store-days {
    font-size: 1.8rem;
    color: #DDD;
    margin-right: 20px; /* Adds space between day and time */
}

.store-time {
    font-size: 2rem;
    font-weight: bold;
}

/* Contact Info */
.contact-info p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
    font-size: 1.8rem;
}

.contact-info a {
    font-size: 1.8rem;
    text-decoration: none;
    color: white;
}

.contact-info a:hover {
    color: #e0e0e0bd;
}

/* Map Section */
.store-map {
    padding: 40px;
}

/* Full-Width Map */
.store-info-map-container #map {
    width: 90%;
    height: 450px;
    border-radius: 0px;
    margin-top: 10px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .store-days{
        font-size: 1.5rem !important;
        margin-right: 5px; /* Adds space between day and time */

    }
    .store-time{
        font-size: 1.7rem !important;
    }
    .section-title{
        font-size: 2.5rem;
    }
    .store-info-map-container #map {
        height: 250px;
    }
    .store-map {
        padding: 10px;
    }
    section.info-container {
        padding-bottom:10px !important;
    }

    div.leaflet-control{
        display: none !important;
    }
}
