/* Fine Dining Hero Section Styles */
#fine-dining-hero {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    width: 100%;
    display: block;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Ensure proper spacing after hero section */
#fine-dining-hero {
    margin-bottom: 0;
}

#fine-dining-hero + #fine-dining-intro {
    padding-top: 80px;
    margin-top: 0;
}

/* Fine Dining Intro Section */
#fine-dining-intro {
    padding: 0 0 0 0;
    margin-bottom: 0;
    background: #ffffff;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.02) 2px,
            rgba(0, 0, 0, 0.02) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.02) 2px,
            rgba(0, 0, 0, 0.02) 4px
        );
    position: relative;
}

/* Ensure proper spacing before kitchen staff section */
#fine-dining-intro + section.kitchen-staff {
    padding-top: 40px;
    margin-top: 0;
}

/* Subtle texture overlay */
#fine-dining-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.015) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

#fine-dining-intro .container {
    position: relative;
    z-index: 1;
}

.intro-tagline {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8AB69;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-description {
    text-align: left;
    margin: 50px auto;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.intro-description .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.intro-cta {
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}


/* Animated overlay effect on hero */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 400px at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 600px 500px at 80% 70%, rgba(200, 210, 220, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 700px 300px at 50% 50%, rgba(180, 190, 200, 0.04) 0%, transparent 50%);
    animation: backgroundWave 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundWave {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-20px);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8AB69;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 4px;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.book-table-btn {
    background-color: #B8AB69;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #B8AB69;
    font-weight: 600;
}

.book-table-btn:hover {
    background-color: transparent;
    color: #B8AB69;
    text-decoration: none;
}

@media (max-width: 768px) {
    #fine-dining-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }
    
    .hero-tagline {
        font-size: 14px;
    }
    
    .intro-subtitle {
        font-size: 20px;
    }
    
    .intro-description .text {
        font-size: 15px;
    }
}

/* Flyers Section Styles */
.flyers-section {
    padding: 80px 0;
    background: #ffffff;
}

.flyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.flyer-item {
    text-align: center;
    border-radius: 8px;
    padding: 10px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flyer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.flyer-day {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B8AB69;
    margin-bottom: 20px;
}

.flyer-image,
.flyer-video {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    max-width: 100%;
}

.flyer-video {
    background: #000;
}

/* Hide video controls */
.flyer-video::-webkit-media-controls {
    display: none !important;
}

.flyer-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.flyer-video::-webkit-media-controls-panel {
    display: none !important;
}

.flyer-video::-webkit-media-controls-play-button {
    display: none !important;
}

.flyer-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

@media (max-width: 768px) {
    .flyers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .flyer-day {
        font-size: 20px;
    }

    .flyers-section {
        padding: 60px 0;
    }
}
