.banner {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(source/visit-background.jpg?v=1);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
}

.location-section {
    padding: clamp(30px, 8vw, 40px) clamp(15px, 5vw, 25px) clamp(40px, 10vw, 50px) clamp(15px, 5vw, 25px);
    margin: 0;
}

.location-title {
    width: 100%;
    text-align: center;
    margin: 0 0 30px 0;
}

.location-title h1 {
    font-size: clamp(28px, 6vw, 45px);
}

.location-title p {
    font-size: clamp(16px, 4vw, 25px);
}

.location-map {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    aspect-ratio: 16 / 9;
    min-height: 400px;
    width: 100%;
    max-width: 1000px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Decrease map height on desktop/laptop to 80% */
@media (min-width: 992px) {
    .map-wrapper {
        max-height: 450px;
    }
}

.contact-section {
    padding: 60px 20px;
    background: #f9f9f9;
    margin-top: 0;
    margin-bottom: 0;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.contact-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section-title h1 {
    color: #0689ce;
    font-size: clamp(28px, 6vw, 42px);
    margin-bottom: 10px;
}

.contact-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #0689ce;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: clamp(20px, 5vw, 30px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-card h2 {
    color: #0689ce;
    font-size: clamp(20px, 4vw, 24px);
    margin-bottom: 20px;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.holiday-note {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.contact-icon {
    color: #0689ce;
    margin-right: 10px;
}

.contact-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
}

#hours-status-2 {
    font-weight: bold;
}

.hours-closed {
    color: #d32f2f;
}

.hours-open {
    color: #28a745;
}

.section-divider {
    width: 100px;
    margin: 20px auto;
    border: none;
    border-top: 2px solid #0689ce;
    border-radius: 2px;
}

/* RESPONSIVE MEDIA QUERIES FOR VISIT PAGE */

/* Mobile optimization (max-width: 600px) */
@media (max-width: 600px) {
    .location-section {
        padding: clamp(20px, 5vw, 30px) clamp(10px, 3vw, 15px);
    }

    .location-title {
        margin-bottom: clamp(20px, 5vw, 30px);
    }

    .map-wrapper {
        min-height: clamp(250px, 60vw, 400px);
    }

    .contact-section {
        padding: clamp(30px, 8vw, 60px) clamp(15px, 5vw, 20px);
    }

    .contact-section-title {
        margin-bottom: clamp(30px, 8vw, 50px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: clamp(20px, 5vw, 40px);
    }

    .contact-card {
        padding: clamp(15px, 5vw, 30px);
    }

    .contact-card p {
        font-size: clamp(13px, 3vw, 16px);
    }

    .holiday-note {
        font-size: clamp(12px, 2.5vw, 14px);
    }
}

/* Tablet (600px - 992px) */
@media (min-width: 600px) and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(25px, 6vw, 40px);
    }
}

/* Large screens (992px+) */
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(30px, 4vw, 40px);
    }
}
