.hours-module {
    min-height: 100vh;
    background-color: #0a0a0a;
    position: relative;
}

.hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left side - Image */
.hours-image {
    position: relative;
    overflow: hidden;
}

.hours-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hours-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    background-color: #1a1a1a;
    color: #666666;
    text-align: center;
    padding: 2rem;
}

.hours-image-placeholder i {
    font-size: 5rem;
    color: #cd7f32;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.hours-image-placeholder p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.hours-image-placeholder strong {
    color: #999999;
    display: block;
    margin-top: 0.5rem;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
}

/* Right side - Opening Hours */
.hours-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 8rem;
    background-color: #0a0a0a;
}

.hours-title {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 6px;
    margin-bottom: 2rem;
}

.hours-divider {
    text-align: center;
    margin-bottom: 3rem;
}

.divider-ornament {
    font-family: 'Great Vibes', 'Pacifico', cursive;
    font-size: 4rem;
    color: #cd7f32;
    display: inline-block;
    position: relative;
}

.divider-ornament::before,
.divider-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #cd7f32);
}

.divider-ornament::before {
    right: 100%;
    margin-right: 1rem;
}

.divider-ornament::after {
    left: 100%;
    margin-left: 1rem;
    background: linear-gradient(to left, transparent, #cd7f32);
}

.hours-list {
    margin-bottom: 3rem;
}

.hours-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(205, 127, 50, 0.15);
    transition: all 0.3s ease;
}

.hours-item:hover {
    padding-left: 1rem;
    border-bottom-color: rgba(205, 127, 50, 0.4);
}

/* Normale Tage - Grau */
.hours-item .day {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #888888;
    letter-spacing: 1px;
    min-width: 140px;
}

.hours-item .time {
    font-family: 'Open Sans', 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #888888;
    letter-spacing: 0.5px;
}

/* Heutiger Tag - Bronze/Matt hervorgehoben */
.hours-item.highlight {
    border-bottom-color: rgba(205, 127, 50, 0.4);
}

.hours-item.highlight .day {
    color: #cd7f32;
    font-weight: 700;
}

.hours-item.highlight .time {
    color: #cd7f32;
    font-weight: 600;
}

.hours-item .dots {
    flex: 1;
    height: 1px;
    background-image: linear-gradient(to right, rgba(205, 127, 50, 0.3) 50%, transparent 50%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    margin: 0 1.5rem;
}

.hours-note {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: #888;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hours-content {
        padding: 5rem 6rem;
    }
    
    .hours-title {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .hours-container {
        grid-template-columns: 1fr;
    }
    
    .hours-image {
        min-height: 40vh;
    }
    
    .hours-content {
        padding: 4rem 3rem;
    }
    
    .hours-title {
        font-size: 2.5rem;
    }
    
    .hours-item .day {
        min-width: 110px;
        font-size: 1rem;
    }
    
    .hours-item .time {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hours-image {
        min-height: 30vh;
    }
    
    .hours-content {
        padding: 3rem 1.5rem;
    }
    
    .hours-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .divider-line {
        width: 80px;
        height: 2px;
    }
    
    .hours-item {
        padding: 1rem 0;
    }
    
    .hours-item .day {
        min-width: 90px;
        font-size: 0.95rem;
    }
    
    .hours-item .dots {
        margin: 0 1rem;
    }
    
    .hours-item .time {
        font-size: 0.95rem;
    }
    
    .hours-note {
        font-size: 0.9rem;
    }
}
