/* 
 * Kaisergarten Restaurant - Home Page CSS
 * Enthält alle spezifischen Styles für die Startseite
 */

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('../../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-light);
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--secondary-color);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

/* Stilvolles chinesisches Muster-Overlay */
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/patterns/pattern-overlay.svg');
    background-size: 300px;
    opacity: 0.08;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards;
    padding: 0 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-accent {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.hero-cta {
    margin: 2.5rem 0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    order: 4;
    flex-wrap: wrap; /* Allow wrapping on very small screens */
}

.badge {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 25px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.badge:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.badge i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.badge span {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    color: var(--text-light);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--secondary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Intro Section */
.intro-section {
    background-color: var(--light-color);
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.intro-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url('../../images/patterns/ornament-corner.svg');
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
}

.intro-decoration.top-left {
    top: -50px;
    left: -50px;
}

.intro-decoration.bottom-right {
    bottom: -50px;
    right: -50px;
    transform: rotate(180deg);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.intro-eyebrow {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    justify-items: center;
}

.intro-feature {
    text-align: center;
    max-width: 280px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(196, 18, 48, 0.08);
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.intro-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.intro-feature p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Buffet Highlights Section */
.buffet-section {
    background: linear-gradient(145deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: var(--text-light);
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    margin: 0;
}

.buffet-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/mmexport1744990568264.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: blur(3px);
}

.buffet-content {
    position: relative;
    z-index: 2;
}

.buffet-header {
    text-align: center;
    margin-bottom: 4rem;
}

.buffet-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.buffet-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

.buffet-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.buffet-card {
    background-color: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.buffet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 180, 76, 0.3);
}

.buffet-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: height var(--transition-speed) ease;
}

.buffet-card:hover::after {
    height: 8px;
}

.buffet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.buffet-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.buffet-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.buffet-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.buffet-times {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1.5rem;
}

.buffet-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.buffet-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.3rem 0.75rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--ink-wash);
    background-size: cover;
    opacity: 0.08;
}

.testimonials-header {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.testimonials-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonials-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(233, 180, 76, 0.3));
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 180, 76, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1rem;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.8rem;
    border: 2px solid var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Neuer Stil für Initialen-Avatare */
.testimonial-avatar-initial {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-info > span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Testimonial Highlight Badges */
.testimonial-highlight {
    margin-bottom: 1rem;
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(196, 30, 58, 0.2);
}

.testimonial-quote .fas {
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

/* Location Section */
.location-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-header {
    margin-bottom: 2.5rem;
}

.location-header h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.location-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.location-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
}

.location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(196, 18, 48, 0.1);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.location-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.location-text p, .location-text a {
    color: var(--text-muted);
    line-height: 1.6;
}

.location-text a {
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.location-text a:hover {
    color: var(--primary-color);
}

.location-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    min-height: 450px;
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Call to Action */
.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/patterns/pattern-overlay.svg');
    background-size: 300px;
    opacity: 0.05;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-eyebrow {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-additional-services {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cta-additional-services span {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: color var(--transition-speed) ease;
}

.cta-additional-services span i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.cta-additional-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    transition: all var(--transition-speed) ease;
}

.cta-additional-services a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonials-cta .btn {
    background: linear-gradient(45deg, #4285F4, #34A853);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonials-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.testimonials-cta .btn i {
    margin-right: 0.5rem;
}

/* Enhanced Testimonial Card Elements */
.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.testimonial-rating .star {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.testimonial-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-source i {
    color: #4285F4;
}

/* Mobile/Desktop Display Controls für Testimonials */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Testimonials Swiper Styles */
.testimonials-swiper {
    position: relative;
    max-width: 400px;
    margin: 0 auto 3rem;
}

.testimonials-swiper .swiper {
    padding: 1rem 0 3rem;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .testimonial-card {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-swiper .swiper-pagination {
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--secondary-color);
    width: 35px;
    height: 35px;
    margin-top: -17px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: rgba(233, 180, 76, 0.2);
    transform: scale(1.1);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 600;
}

/* Mobile Testimonials Adjustments */
@media (max-width: 768px) {
    .testimonials-swiper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none; /* Verstecke Buttons auf sehr kleinen Bildschirmen, nutze Swipe */
    }
}

@media (max-width: 480px) {
    .testimonials-swiper .swiper {
        padding: 0.5rem 0 2.5rem;
    }
}

/* Opening Hours Section Styles */
.opening-hours-section {
    padding: 5rem 0;
    background-color: #f9f7f3;
    position: relative;
    overflow: hidden;
}

.opening-hours-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/patterns/pattern-overlay.svg');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.opening-hours-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.opening-hours-section .section-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.opening-hours-section .subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.opening-hours-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Location section modern opening hours styles */
.location-detail .oh-modern-container {
    margin-top: 0.5rem;
}

.location-detail .oh-modern-card {
    padding: 0;
    box-shadow: none;
    border-left: none;
}

.location-detail .oh-modern-table td {
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.location-detail .oh-modern-table tr.today .day::before {
    margin-right: 4px;
}

/* Responsive adaptations */
@media (max-width: 768px) {
    .opening-hours-section {
        padding: 3rem 0;
    }
    
    .opening-hours-section .section-title {
        font-size: 2rem;
    }
}

/* Desktop-spezifische Testimonials Grid Regel */
@media (min-width: 769px) {
    .testimonials-grid.desktop-only {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 2rem;
    }
}
