.highslide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9990;
}

.highslide-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.highslide-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 10000;
}

.gallery-item img {
    cursor: pointer;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 0 15px;
}

.slide-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Responsive Header Fixes */
@media (min-width: 769px) {
    .header-container {
        flex-wrap: nowrap;
    }
    
    .logo h1 {
        white-space: nowrap;
    }
    
    .nav-menu {
        flex-wrap: nowrap;
    }
}

/* Business Hours in Contact Section */
.contact-hours {
    margin-top: 20px;
}

.contact-hours h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hours-grid-small {
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px;
    font-size: 0.9rem;
}

.hours-day-small {
    padding: 3px 0;
}

.hours-day-small.closed {
    color: #ff6b6b;
}
