/* Luxury Restaurant CSS - Premium Dark Red & Brown Theme */

:root {
    /* Premium Color Palette */
    --primary-burgundy: #8B1538;        /* Deep Burgundy */
    --primary-wine: #722F37;            /* Wine Red */
    --secondary-mahogany: #4A2C2A;      /* Rich Mahogany */
    --secondary-espresso: #3C2415;      /* Dark Espresso */
    --accent-gold: #B8860B;             /* Deep Gold */
    --accent-bronze: #CD7F32;           /* Bronze */
    --accent-champagne: #F7E7CE;        /* Champagne */
    
    /* Luxury Backgrounds */
    --bg-velvet: #1A0E0E;               /* Velvet Black */
    --bg-charcoal: #2C1810;             /* Charcoal Brown */
    --bg-cream: #FFF8DC;                /* Luxury Cream */
    --bg-pearl: #F5F5DC;                /* Pearl White */
    
    /* Text Colors */
    --text-gold: #DAA520;               /* Golden Text */
    --text-cream: #F5DEB3;              /* Cream Text */
    --text-dark: #2F1B14;               /* Dark Brown Text */
    --text-white: #FFFFFF;              /* Pure White */
    
    /* Luxury Effects */
    --shadow-gold: 0 8px 32px rgba(184, 134, 11, 0.3);
    --shadow-burgundy: 0 8px 32px rgba(139, 21, 56, 0.4);
    --shadow-deep: 0 12px 40px rgba(0, 0, 0, 0.6);
    --glow-gold: 0 0 20px rgba(218, 165, 32, 0.5);
    --glow-burgundy: 0 0 25px rgba(139, 21, 56, 0.6);
}

/* Global Luxury Styles */
body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.7;
    /* color: var(--text-dark); */
    color: #ececec;

    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-pearl) 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('/images/tr82header.png') center/cover,
        radial-gradient(circle at 20% 80%, rgba(139, 21, 56, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-burgundy);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.text-primary {
    color: var(--primary-burgundy) !important;
}

.display-1, .display-2, .display-3, .display-4 {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Premium Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-wine) 50%, var(--secondary-mahogany) 100%);
    border: 2px solid var(--accent-gold);
    color: var(--text-cream);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-burgundy);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-light {
    background: url(./images/bg_light.png) center/cover;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 50%, var(--primary-burgundy) 100%);
    color: var(--text-dark);
    border-color: var(--text-cream);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-gold), var(--glow-gold);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    border: 2px solid var(--primary-burgundy);
    color: var(--text-dark);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn-accent:hover::after {
    width: 300px;
    height: 300px;
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-wine) 100%);
    color: var(--text-cream);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-burgundy), var(--glow-burgundy);
}

/* Luxury Navigation */
.navbar {
    background: linear-gradient(135deg, 
        var(--bg-velvet) 0%, 
        var(--secondary-mahogany) 50%, 
        var(--bg-charcoal) 100%) !important;
    padding: 1.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-gold);
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-gold) 20%, 
        var(--accent-bronze) 50%, 
        var(--accent-gold) 80%, 
        transparent 100%);
}

.navbar-brand {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
    text-shadow: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.4s ease;
    color: var(--text-cream) !important;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Luxury Hero Section */
.hero-section {
    background: 
        linear-gradient(135deg, 
            rgba(26, 14, 14, 0.8) 0%, 
            rgba(139, 21, 56, 0.6) 50%, 
            rgba(44, 24, 16, 0.8) 100%
        ),
        url('/images/noi_that.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(184, 134, 11, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 21, 56, 0.3) 0%, transparent 50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23DAA520' fill-opacity='0.1'%3E%3Cpath d='M30 30c0-16.569-13.431-30-30-30v30h30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-overlay {
    position: relative;
    z-index: 3;
}

.hero-section .display-4 {
    font-size: 4rem;
    margin-bottom: 2rem;
    /* text-shadow: 4px 4px 8px rgba(0,0,0,0.7); */
}

.hero-section .lead {
    color: var(--text-cream);
    font-size: 1.4rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, 
        var(--primary-burgundy) 0%, 
        var(--secondary-mahogany) 50%, 
        var(--bg-charcoal) 100%);
    padding: 160px 0 120px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(205, 127, 50, 0.2) 0%, transparent 60%);
}

/* Luxury Cards */
.card {
    background: linear-gradient(135deg, 
        var(--text-white) 0%, 
        var(--bg-cream) 100%);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-gold) 0%, 
        var(--accent-bronze) 50%, 
        var(--primary-burgundy) 100%);
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.25),
        0 0 30px rgba(184, 134, 11, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.card-body {
    padding: 2.5rem;
    position: relative;
}

.card-title {
    color: var(--primary-burgundy);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Menu Cards */
.menu-card,
.sushi-card {
    background: linear-gradient(135deg, 
        var(--text-white) 0%, 
        var(--accent-champagne) 100%);
    /* border: 2px solid var(--accent-gold); */
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-gold);
}

.menu-card::after,
.sushi-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.menu-card:hover::after,
.sushi-card:hover::after {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.menu-card:hover,
.sushi-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-burgundy);
    box-shadow: 
        var(--shadow-burgundy),
        var(--glow-burgundy);
}

/* Price Styling */
.price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Gallery Effects */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-deep);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 21, 56, 0.3) 0%, 
        rgba(184, 134, 11, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    transition: all 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

/* Reviews Section */
.review-card {
        background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-wine) 50%, var(--secondary-mahogany) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    position: relative;
    box-shadow: var(--shadow-gold);
    margin: 1rem;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 5rem;
    color: var(--primary-burgundy);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.review-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-burgundy) 0%, 
        var(--accent-gold) 50%, 
        var(--primary-burgundy) 100%);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.4rem;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

/* Contact Section */
.contact-card .card {
    background: linear-gradient(135deg, 
        var(--text-white) 0%, 
        var(--bg-pearl) 100%);
    border: 2px solid var(--accent-bronze);
}

.contact-icon,
.feature-icon,
.hours-icon {
    color: var(--primary-burgundy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

/* Footer */
footer {
    background: linear-gradient(135deg, 
        var(--bg-velvet) 0%, 
        var(--secondary-mahogany) 50%, 
        var(--bg-charcoal) 100%) !important;
    position: relative;
    border-top: 3px solid var(--accent-gold);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(139, 21, 56, 0.1) 0%, transparent 50%);
}

.social-links a {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    color: var(--text-dark);
    padding: 12px;
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.3s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.social-links a:hover::before {
    width: 100px;
    height: 100px;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-wine) 100%);
    color: var(--text-cream) !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-burgundy), var(--glow-burgundy);
}

/* Luxury Animations */
@keyframes luxuryGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(184, 134, 11, 0.6);
    }
}

@keyframes fadeInLuxury {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-in {
    animation: fadeInLuxury 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Scrollbar Luxury */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-charcoal);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    border-radius: 6px;
    border: 2px solid var(--bg-charcoal);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-wine) 100%);
}

/* Responsive Luxury */
@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
    
    .btn-primary,
    .btn-accent {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.8rem;
    }
}

/* Special Luxury Effects */
.luxury-glow {
    animation: luxuryGlow 3s ease-in-out infinite;
}

.text-luxury {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-luxury {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent-gold), var(--primary-burgundy), var(--accent-bronze)) 1;
}

/* Premium Loading States */
.loading-luxury {
    position: relative;
    overflow: hidden;
}

.loading-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(184, 134, 11, 0.4), 
        transparent);
    animation: luxuryLoading 2s infinite;
}

@keyframes luxuryLoading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Simple Menu Carousel Styles */
.menu-slide {
    transition: all 0.3s ease;
}

#menuCarouselTrack {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100%;
}

/* Navigation buttons responsive */
@media (max-width: 991px) {
    #menuCarouselPrev,
    #menuCarouselNext {
        margin-left: -15px !important;
        margin-right: -15px !important;
        display: none;
    }
}

@media (max-width: 575px) {
    #menuCarouselPrev {
        left: 10px !important;
        margin-left: 0 !important;
        display: none;
    }
    
    #menuCarouselNext {
        right: 10px !important;
        margin-right: 0 !important;
        display: none;
    }
}

/* Touch-friendly indicators */
#menuCarouselIndicators button {
    border: 2px solid var(--primary-burgundy) !important;
    margin: 0 4px;
    transition: all 0.3s ease;
}

#menuCarouselIndicators button:hover {
    transform: scale(1.2);
}

/* Smooth transitions */
#menuCarouselTrack {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Prevent text selection during swipe */
.menu-slide {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Background Food Images Class */
.bg-food {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--bg-velvet) 0%,
        var(--secondary-mahogany) 50%,
        var(--bg-charcoal) 100%
    );
    overflow: hidden;
}

.bg-food::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('./images/bg/bgf_1.jpg'),
        url('./images/bg/bgf_2.jpg'),
        url('./images/bg/bgf_3.jpg');
    background-size: 
        33.333% auto,
        33.333% auto,
        33.333% auto;
    background-position: 
        0% center,
        33.333% center,
        66.666% center;
    background-repeat: repeat-y;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 1;
    animation: foodParallax 20s linear infinite;
}

.bg-food::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 14, 14, 0.85) 0%,
        rgba(139, 21, 56, 0.75) 30%,
        rgba(44, 24, 16, 0.85) 70%,
        rgba(26, 14, 14, 0.9) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Parallax Animation */
@keyframes foodParallax {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

/* Content positioning */
.bg-food > * {
    position: relative;
    z-index: 3;
}

/* Alternative version with static background */
.bg-food-static {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--bg-velvet) 0%,
        var(--secondary-mahogany) 50%,
        var(--bg-charcoal) 100%
    );
    overflow: hidden;
}

.bg-food-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('./images/bg/bgf_1.jpg'),
        url('./images/bg/bgf_2.jpg'),
        url('./images/bg/bgf_3.jpg');
    background-size: 
        33.333% 400px,
        33.333% 400px,
        33.333% 400px;
    background-position: 
        0% top,
        33.333% top,
        66.666% top;
    background-repeat: repeat-y;
    opacity: 0.25;
    z-index: 1;
}

.bg-food-static::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 14, 14, 0.88) 0%,
        rgba(139, 21, 56, 0.78) 25%,
        rgba(184, 134, 11, 0.1) 50%,
        rgba(139, 21, 56, 0.78) 75%,
        rgba(26, 14, 14, 0.88) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.bg-food-static > * {
    position: relative;
    z-index: 3;
}

/* Luxury Food Background with Pattern */
.bg-food-luxury {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--bg-velvet) 0%,
        var(--secondary-mahogany) 100%
    );
    overflow: hidden;
}

.bg-food-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('./images/bg/bgf_1.jpg'),
        url('./images/bg/bgf_2.jpg'),
        url('./images/bg/bgf_3.jpg');
    background-size: 
        calc(100% / 3) auto,
        calc(100% / 3) auto,
        calc(100% / 3) auto;
    background-position: 
        0% 0%,
        33.333% 0%,
        66.666% 0%;
    background-repeat: repeat-y;
    opacity: 0.2;
    z-index: 1;
    filter: brightness(0.8) contrast(1.2) saturate(1.1);
}

.bg-food-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 21, 56, 0.15) 0%, transparent 50%),
        linear-gradient(
            135deg,
            rgba(26, 14, 14, 0.9) 0%,
            rgba(139, 21, 56, 0.7) 30%,
            rgba(184, 134, 11, 0.1) 50%,
            rgba(139, 21, 56, 0.7) 70%,
            rgba(26, 14, 14, 0.9) 100%
        );
    z-index: 2;
    pointer-events: none;
}

.bg-food-luxury > * {
    position: relative;
    z-index: 3;
}

/* Animated Food Background */
.bg-food-animated {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--bg-velvet) 0%,
        var(--secondary-mahogany) 50%,
        var(--bg-charcoal) 100%
    );
    overflow: hidden;
}

.bg-food-animated::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    bottom: -50px;
    background-image: 
        url('./images/bg/bgf_1.jpg'),
        url('./images/bg/bgf_2.jpg'),
        url('./images/bg/bgf_3.jpg');
    background-size: 
        33.333% 500px,
        33.333% 500px,
        33.333% 500px;
    background-position: 
        0% 0%,
        33.333% 0%,
        66.666% 0%;
    background-repeat: repeat-y;
    opacity: 0.3;
    z-index: 1;
    animation: slowFloat 30s ease-in-out infinite;
    filter: brightness(0.9) contrast(1.1);
}

.bg-food-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            45deg,
            rgba(26, 14, 14, 0.9) 0%,
            rgba(139, 21, 56, 0.8) 25%,
            rgba(184, 134, 11, 0.1) 50%,
            rgba(139, 21, 56, 0.8) 75%,
            rgba(26, 14, 14, 0.9) 100%
        );
    z-index: 2;
    pointer-events: none;
}

.bg-food-animated > * {
    position: relative;
    z-index: 3;
}

@keyframes slowFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bg-food::before,
    .bg-food-static::before,
    .bg-food-luxury::before,
    .bg-food-animated::before {
        background-size: 
            100% auto,
            100% auto,
            100% auto;
        background-position: 
            0% 0%,
            0% 33.333%,
            0% 66.666%;
        opacity: 0.2;
    }
    
    .bg-food::after,
    .bg-food-static::after,
    .bg-food-luxury::after,
    .bg-food-animated::after {
        background: linear-gradient(
            135deg,
            rgba(26, 14, 14, 0.92) 0%,
            rgba(139, 21, 56, 0.85) 50%,
            rgba(26, 14, 14, 0.92) 100%
        );
    }
}

/* Text styling for food background sections */
.bg-food .text-white,
.bg-food-static .text-white,
.bg-food-luxury .text-white,
.bg-food-animated .text-white {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.bg-food h1, .bg-food h2, .bg-food h3,
.bg-food-static h1, .bg-food-static h2, .bg-food-static h3,
.bg-food-luxury h1, .bg-food-luxury h2, .bg-food-luxury h3,
.bg-food-animated h1, .bg-food-animated h2, .bg-food-animated h3 {
    color: var(--text-cream);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}

/* Special effects for food background */
.bg-food-glow {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--bg-velvet) 0%,
        var(--secondary-mahogany) 100%
    );
    overflow: hidden;
}

.bg-food-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('./images/bg/bgf_1.jpg'),
        url('./images/bg/bgf_2.jpg'),
        url('./images/bg/bgf_3.jpg');
    background-size: 
        33.333% auto,
        33.333% auto,
        33.333% auto;
    background-position: 
        0% center,
        33.333% center,
        66.666% center;
    background-repeat: repeat-y;
    opacity: 0.25;
    z-index: 1;
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.bg-food-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(184, 134, 11, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 21, 56, 0.2) 0%, transparent 50%),
        linear-gradient(
            135deg,
            rgba(26, 14, 14, 0.85) 0%,
            rgba(139, 21, 56, 0.6) 50%,
            rgba(26, 14, 14, 0.85) 100%
        );
    z-index: 2;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

.bg-food-glow > * {
    position: relative;
    z-index: 3;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .bg-food::after,
    .bg-food-static::after,
    .bg-food-luxury::after,
    .bg-food-animated::after,
    .bg-food-glow::after {
        background: rgba(0, 0, 0, 0.9);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .bg-food::before,
    .bg-food-animated::before,
    .bg-food-glow::after {
        animation: none;
    }
}

/* Cocktail Hero Section Styles */
.cocktail-hero-section {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.cocktail-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cocktail-hero-section > .row {
  position: relative;
  z-index: 2;
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  height: 700px;
      width: 463px;
  overflow: hidden;

    object-position: center center;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-accent);
    border-radius: 30em 30em 0em 0em;
}

.hero-cocktail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.hero-image-container:hover .hero-cocktail-image {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.2);
}

/* Hero Image Overlay */
.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(26, 14, 14, 0.9) 100%);
  padding: 3rem 2rem 2rem;
  color: var(--text-cream);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.hero-image-container:hover .hero-image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.hero-badge {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.wine-badge {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-wine) 100%);
  color: var(--text-cream);
}

.tea-badge {
  background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
  color: var(--text-white);
}

.hero-drink-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.hero-drink-desc {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

/* Drinks Menu Container */
.drinks-menu-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-category {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: var(--text-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

.menu-title {
  color: var(--primary-burgundy);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

/* Drinks List */
.drinks-list {
  flex: 1;
  overflow-y: auto;
}

.drink-item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(139, 21, 56, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.drink-item:last-child {
  border-bottom: none;
}

.drink-item:hover {
  background: rgba(184, 134, 11, 0.05);
  transform: translateX(10px);
  padding-left: 1rem;
  border-radius: 15px;
}

/* Drink Item Image */
.drink-item-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.drink-item:hover .drink-item-image {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(139, 21, 56, 0.2);
}

.drink-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Drink Item Content */
.drink-item-content {
  flex: 1;
  margin-right: 1rem;
}

.drink-name {
  color: var(--primary-burgundy);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}

.drink-name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--accent-gold) 0px,
    var(--accent-gold) 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.drink-item:hover .drink-name::after {
  opacity: 1;
  right: 100px;
}

.drink-description {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* Drink Price */
.drink-price {
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.drink-item:hover .drink-price {
  color: var(--primary-burgundy);
  transform: scale(1.1);
}

/* Wine & Sake Section */
.wine-sake-section {
  background: linear-gradient(135deg, var(--secondary-mahogany) 0%, var(--bg-charcoal) 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  position: relative;
}

.wine-sake-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.05) 0%, rgba(26, 14, 14, 0.1) 100%);
  z-index: 1;
}

.wine-sake-section > .row {
  position: relative;
  z-index: 2;
}

/* Tea & Coffee Section */
.tea-coffee-section {
  background: linear-gradient(135deg, var(--bg-velvet) 0%, var(--secondary-mahogany) 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  position: relative;
}

.tea-coffee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(139, 69, 19, 0.05) 100%);
  z-index: 1;
}

.tea-coffee-section > .row {
  position: relative;
  z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 992px) {


  .drinks-menu-container {
    height: auto;
    padding: 3rem 2rem;
  }

  .hero-drink-name {
    font-size: 2rem;
  }

  .hero-drink-desc {
    font-size: 1rem;
  }

  .menu-title {
    font-size: 1.5rem;
  }

  .drink-name {
    font-size: 1.1rem;
  }

  .drink-price {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .cocktail-hero-section,
  .wine-sake-section,
  .tea-coffee-section {
    margin-bottom: 3rem;
  }

  .drinks-menu-container {
    padding: 2rem 1.5rem;
  }

  .drink-item {
    padding: 1rem 0;
  }

  .drink-item-image {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }

  .hero-drink-name {
    font-size: 1.8rem;
  }

  .menu-title {
    font-size: 1.3rem;
  }

  .drink-name {
    font-size: 1rem;
  }

  .drink-description {
    font-size: 0.9rem;
  }

  .drink-price {
    font-size: 1.1rem;
  }

  .hero-image-overlay {
    padding: 2rem 1.5rem 1.5rem;
  }
}

/* Scrollbar Styling for Drinks List */
.drinks-list::-webkit-scrollbar {
  width: 6px;
}

.drinks-list::-webkit-scrollbar-track {
  background: rgba(184, 134, 11, 0.1);
  border-radius: 3px;
}

.drinks-list::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  border-radius: 3px;
}

.drinks-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-wine) 100%);
}
/* Modern Drinks Page Styles */

/* Modern Drink Cards */
.modern-drink-card {
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-champagne) 100%);
}

.modern-drink-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

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

.drink-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.modern-drink-card:hover .drink-image {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.2);
}

/* Drink Overlay */
.drink-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 14, 14, 0.8) 0%, rgba(139, 21, 56, 0.9) 50%, rgba(44, 24, 16, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
  color: var(--text-cream);
}

.modern-drink-card:hover .drink-overlay {
  opacity: 1;
}

/* Drink Badges */
.drink-badge {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.tea-badge {
  background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
  color: var(--text-white);
}

.coffee-badge {
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  color: var(--text-white);
}

.sake-badge {
  background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
  color: var(--text-white);
}

.fresh-badge {
  background: linear-gradient(135deg, #ff6347 0%, #ff7f50 100%);
  color: var(--text-white);
}

/* Drink Content */
.drink-overlay h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.drink-overlay h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.drink-overlay h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--accent-gold);
}

.drink-overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Wine List */
.wine-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.wine-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245, 222, 179, 0.3);
  transition: all 0.3s ease;
}

.wine-list li:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

/* Sake Types */
.sake-types {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.sake-types span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hot Drinks Row */
.hot-drinks-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  height: 100%;
}

/* Large Card Specific Styles */
.large-card .drink-overlay h3 {
  font-size: 2.5rem;
}

.large-card .drink-overlay p {
  font-size: 1.2rem;
  max-width: 80%;
}

/* Modern Pairing Grid */
.pairing-modern-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, minmax(200px, auto));
  gap: 2rem;
}

.large-pairing {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.medium-pairing:nth-of-type(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}

.medium-pairing:nth-of-type(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
}

.wide-pairing {
  grid-column: 1 / 13;
  grid-row: 3 / 4;
}

/* Modern Pairing Cards */
.pairing-card-modern {
  background: linear-gradient(135deg, var(--text-white) 0%, var(--bg-cream) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  position: relative;
}

.pairing-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.pairing-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-burgundy) 50%, var(--accent-bronze) 100%);
}

/* Pairing Image Section */
.pairing-image-section {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.pairing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.pairing-card-modern:hover .pairing-image {
  transform: scale(1.05);
}

/* Pairing Content Section */
.pairing-content-section {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pairing-category {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: var(--text-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}

.pairing-content-section h3 {
  color: var(--primary-burgundy);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pairing-content-section h4 {
  color: var(--primary-burgundy);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pairing-content-section p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pairing-details {
  margin-top: auto;
}

.pairing-item {
  background: rgba(184, 134, 11, 0.1);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  margin-bottom: 1rem;
}

.pairing-item strong {
  color: var(--primary-burgundy);
}

.pairing-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-align: right;
}

.pairing-special {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-wine) 100%);
  color: var(--text-cream);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}

/* Wide Pairing Specific */
.wide-pairing {
  flex-direction: row;
}

.wide-pairing .pairing-image-section {
  flex: 0 0 40%;
}

.wide-pairing .pairing-content-section {
  flex: 1;
  padding: 2rem 3rem;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .drinks-modern-grid {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, minmax(180px, auto));
  }

  .drink-featured-large {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }

  .drink-wine-section {
    grid-column: 5 / 9;
    grid-row: 1 / 3;
  }

  .drink-hot-beverages {
    grid-column: 1 / 5;
    grid-row: 3 / 5;
  }

  .drink-alcohol-section {
    grid-column: 5 / 7;
    grid-row: 3 / 5;
  }

  .drink-fresh-section {
    grid-column: 7 / 9;
    grid-row: 3 / 5;
  }
}

@media (max-width: 992px) {
  .drinks-modern-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, minmax(160px, auto));
    gap: 1.5rem;
  }

  .drink-featured-large {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }

  .drink-wine-section {
    grid-column: 1 / 4;
    grid-row: 3 / 5;
  }

  .drink-hot-beverages {
    grid-column: 4 / 7;
    grid-row: 3 / 5;
  }

  .drink-alcohol-section {
    grid-column: 1 / 4;
    grid-row: 5 / 7;
  }

  .drink-fresh-section {
    grid-column: 4 / 7;
    grid-row: 5 / 7;
  }

  .hot-drinks-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Pairing Grid Mobile */
  .pairing-modern-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }

  .large-pairing,
  .medium-pairing,
  .wide-pairing {
    grid-column: 1;
    grid-row: auto;
  }

  .pairing-card-modern {
    flex-direction: column;
  }

  .pairing-image-section {
    height: 200px;
  }

  .pairing-content-section {
    padding: 2rem;
  }

  .wide-pairing .pairing-image-section {
    flex: none;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .drinks-modern-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, minmax(250px, auto));
    gap: 1.5rem;
  }

  .drink-featured-large,
  .drink-wine-section,
  .drink-hot-beverages,
  .drink-alcohol-section,
  .drink-fresh-section {
    grid-column: 1;
    grid-row: auto;
  }

  .drink-overlay {
    padding: 1.5rem;
  }

  .drink-overlay h3 {
    font-size: 1.8rem;
  }

  .drink-overlay h4 {
    font-size: 1.5rem;
  }

  .drink-overlay h5 {
    font-size: 1.2rem;
  }

  .pairing-content-section {
    padding: 1.5rem;
  }
}

/* Drinks Carousel Styles */
.drinks-slide {
  transition: all 0.3s ease;
}

#drinksCarouselTrack {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
}

/* Touch-friendly indicators for drinks carousel */
#drinksCarouselIndicators button {
  border: 2px solid var(--primary-burgundy) !important;
  margin: 0 4px;
  transition: all 0.3s ease;
}

#drinksCarouselIndicators button:hover {
  transform: scale(1.2);
}

/* Smooth transitions for drinks carousel */
#drinksCarouselTrack {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Prevent text selection during swipe */
.drinks-slide {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Fresh Drinks Section */
.fresh-drinks-section {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent-champagne) 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  position: relative;
}

.fresh-drinks-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 99, 71, 0.05) 0%, rgba(255, 127, 80, 0.05) 100%);
  z-index: 1;
}

.fresh-drinks-section > .row {
  position: relative;
  z-index: 2;
}

/* Navigation buttons responsive */
@media (max-width: 991px) {
  #drinksCarouselPrev,
  #drinksCarouselNext {
    margin-left: -15px !important;
    margin-right: -15px !important;
    display: none;
  }
}

@media (max-width: 575px) {
  #drinksCarouselPrev {
    left: 10px !important;
    margin-left: 0 !important;
    display: none;
  }

  #drinksCarouselNext {
    right: 10px !important;
    margin-right: 0 !important;
    display: none;
  }
}


/* Drinks Layout Fixes */

/* Fix for Bootstrap order classes - ensure proper positioning */
.col-lg-6.order-lg-1 {
  order: 1;
}

.col-lg-6.order-lg-2 {
  order: 2;
}

/* Hero Image Container Positioning */
.hero-image-container {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  border: 1px solid var(--accent-gold);
  margin: 0 auto;
}

/* Image positioning - left aligned for imageFirst, right aligned for menuFirst */
.col-lg-6:first-child .hero-image-container {
  margin-left: 0;
  margin-right: auto;
}

.col-lg-6.order-lg-1 .hero-image-container {
  margin-left: auto;
  margin-right: 0;
}

/* Drinks Menu Container - match hero image height and constrain width */
.drinks-menu-container {
  height: 600px;
  max-width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px;
  overflow: hidden;
}

/* Constrain menu items to prevent overflow */
.drink-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 21, 56, 0.1);
  transition: all 0.3s ease;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.drink-item:hover {
  background: rgba(184, 134, 11, 0.05);
  transform: translateX(8px);
  padding-left: 0.5rem;
  border-radius: 15px;
  max-width: calc(100% - 8px);
}

/* Constrain drink item content */
.drink-item-content {
  flex: 1;
  margin-right: 0.5rem;
  min-width: 0; /* Allow text to wrap/truncate */
  overflow: hidden;
}

.drink-name {
  color: var(--primary-burgundy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drink-description {
  color: var(--text-dark);
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Adjust dotted line effect to work with constrained width */
.drink-name::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--accent-gold) 0px,
    var(--accent-gold) 3px,
    transparent 3px,
    transparent 6px
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.drink-item:hover .drink-name::after {
  opacity: 1;
  right: 80px; /* Reduced from 100px to accommodate smaller space */
}

/* Drink price positioning */
.drink-price {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 60px;
  text-align: right;
}

/* Drinks list scrolling */
.drinks-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-right: -0.5rem;
}

/* Menu header adjustments */
.menu-header {
  text-align: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.menu-category {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: var(--text-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.menu-title {
  color: var(--primary-burgundy);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* Section spacing */
.cocktail-hero-section,
.wine-sake-section,
.tea-coffee-section,
.fresh-drinks-section {
  margin-bottom: 4rem;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-image-container {
    height: 400px;
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .drinks-menu-container {
    height: auto;
    min-height: 400px;
    padding: 2rem 1.5rem;
  }

  .col-lg-6:first-child .hero-image-container,
  .col-lg-6.order-lg-1 .hero-image-container {
    margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {
  .hero-image-container {
    height: 300px;
    border-radius: 20px;
  }

  .drinks-menu-container {
    padding: 1.5rem;
    min-height: 300px;
  }

  .drink-item {
    padding: 0.8rem 0;
  }

  .drink-item-image {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }

  .drink-name {
    font-size: 1rem;
  }

  .drink-description {
    font-size: 0.8rem;
  }

  .drink-price {
    font-size: 1.1rem;
    min-width: 50px;
  }

  .menu-title {
    font-size: 1.3rem;
  }
}

/* Fix for vertical centering of entire sections */
.cocktail-hero-section .row,
.wine-sake-section .row,
.tea-coffee-section .row,
.fresh-drinks-section .row {
  min-height: 600px;
  align-items: center;
}

@media (max-width: 992px) {
  .cocktail-hero-section .row,
  .wine-sake-section .row,
  .tea-coffee-section .row,
  .fresh-drinks-section .row {
    min-height: auto;
  }
}

/* Ensure proper stacking on mobile */
@media (max-width: 991px) {
  .col-lg-6.order-lg-1,
  .col-lg-6.order-lg-2 {
    order: unset;
  }
}
