/* ==========================================================================
   ULTRA-PREMIUM RESTAURANT PAGE - LUXURY THEME (DARK & GOLD ACCENTS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --luxury-dark-bg: #07090e;       /* Deep space dark background */
    --luxury-dark-card: #0d111b;     /* Slate dark card background */
    --luxury-gold: #d4af37;          /* Premium luxury gold color */
    --luxury-gold-hover: #f3e5ab;    /* Soft gold color for hover */
    --luxury-gold-glow: rgba(212, 175, 55, 0.18);
    --luxury-light: #f8fafc;         /* White body text */
    --luxury-text-muted: #94a3b8;    /* Muted grey description text */
    --luxury-border: rgba(212, 175, 55, 0.16);
    --luxury-glass: rgba(13, 17, 27, 0.85); /* Glassmorphic card background */
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-micro: all 0.2s ease;
}

body.restaurant-body-theme {
    background-color: var(--luxury-dark-bg);
    color: var(--luxury-light);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* --- Hero Section --- */
.restaurant-hero {
    position: relative;
    height: 95vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.restaurant-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.restaurant-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1); /* Darken image to emphasize text */
    transform: scale(1.05);
    transition: transform 12s ease-out;
}

.restaurant-hero:hover .restaurant-hero-bg img {
    transform: scale(1.1);
}

.restaurant-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 9, 14, 0.3) 20%, var(--luxury-dark-bg) 95%),
                linear-gradient(0deg, var(--luxury-dark-bg) 5%, transparent 60%);
    z-index: 2;
}

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

.restaurant-hero-subtitle {
    font-family: var(--font-sans);
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.restaurant-hero-subtitle::before,
.restaurant-hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--luxury-gold);
}

.restaurant-hero-subtitle::before {
    right: 105%;
}

.restaurant-hero-subtitle::after {
    left: 105%;
}

.restaurant-hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--luxury-light);
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .restaurant-hero-title {
        font-size: 3.2rem;
    }
    .restaurant-hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }
}

.restaurant-hero-desc {
    font-size: 1.15rem;
    color: var(--luxury-text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.gold-btn {
    background: transparent;
    color: var(--luxury-gold);
    border: 1.5px solid var(--luxury-gold);
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 16px 40px;
    font-size: 0.85rem;
    border-radius: 50px; /* Rounded pill style buttons */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    display: inline-block;
}

.gold-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--luxury-gold);
    z-index: -1;
    transition: var(--transition-smooth);
}

.gold-btn:hover {
    color: #07090e !important; /* Dark text on gold hover button */
    text-decoration: none;
    box-shadow: 0 0 25px var(--luxury-gold-glow);
}

.gold-btn:hover::before {
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--luxury-text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-micro);
}

.scroll-indicator:hover {
    color: var(--luxury-gold);
    text-decoration: none;
}

.scroll-indicator-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
    margin-bottom: 8px;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* --- About Story Section --- */
.restaurant-story {
    padding: 120px 0;
    position: relative;
}

.restaurant-section-head {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.restaurant-section-head .sub {
    font-family: var(--font-sans);
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.restaurant-section-head .main {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: var(--luxury-light);
    font-weight: 700;
}

.restaurant-section-head .gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--luxury-gold);
    margin: 25px auto 0;
}

@media (max-width: 768px) {
    .restaurant-section-head .main {
        font-size: 2.3rem;
    }
}

.story-text-card {
    padding: 40px;
    background: var(--luxury-glass);
    border: 1px solid var(--luxury-border);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.story-text-card h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--luxury-light);
    margin-bottom: 25px;
}

.story-text-card p {
    color: var(--luxury-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.story-image-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-image-wrap:hover img {
    transform: scale(1.05);
}

.story-decor-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--luxury-gold);
    border-radius: 16px;
    pointer-events: none;
    z-index: 2;
}

/* Stats Counter */
.restaurant-stats {
    background: linear-gradient(180deg, var(--luxury-dark-bg), #0c0f17);
    padding: 80px 0;
    border-top: 1px solid var(--luxury-border);
    border-bottom: 1px solid var(--luxury-border);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--luxury-text-muted);
}

/* --- Cuisine Showcase --- */
.restaurant-cuisine {
    padding: 120px 0;
    background-color: #0c0f17;
}

.cuisine-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 15px;
    background-color: var(--luxury-dark-card);
    border: 1px solid var(--luxury-border);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.cuisine-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: var(--transition-smooth);
}

.cuisine-card:hover .cuisine-card-img {
    transform: scale(1.08);
    filter: brightness(0.35);
}

.cuisine-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(0deg, rgba(13, 17, 27, 0.98) 0%, rgba(13, 17, 27, 0.7) 60%, transparent 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.cuisine-card-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--luxury-light);
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.cuisine-card-desc {
    color: var(--luxury-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.cuisine-card:hover .cuisine-card-desc {
    opacity: 1;
    transform: translateY(0);
}

.cuisine-card:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 15px 40px var(--luxury-gold-glow);
}

/* slick styles override */
.slick-dots li button:before {
    color: var(--luxury-gold) !important;
}
.slick-dots li.slick-active button:before {
    color: var(--luxury-gold) !important;
}

/* --- Signature Dishes Grid --- */
.restaurant-menu {
    padding: 120px 0;
}

.menu-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    color: var(--luxury-text-muted);
    border: 1px solid var(--luxury-border);
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition-micro);
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--luxury-gold);
    border-color: var(--luxury-gold);
    background-color: var(--luxury-gold-glow);
}

.dish-card {
    background: var(--luxury-dark-card);
    border: 1px solid var(--luxury-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-8px);
    border-color: var(--luxury-gold);
    box-shadow: 0 15px 35px var(--luxury-gold-glow);
}

.dish-img-wrap {
    display: none !important;
}

.dish-badge {
    position: relative;
    top: auto;
    left: auto;
    background: var(--luxury-gold);
    color: #07090e;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 5px;
    z-index: 2;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
}

.dish-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    gap: 15px;
}

.dish-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--luxury-light);
    font-weight: 700;
}

.dish-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--luxury-gold);
    font-weight: 700;
}

.dish-desc {
    color: var(--luxury-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Ambience Section --- */
.restaurant-ambience {
    padding: 120px 0;
    background-color: #0c0f17;
    position: relative;
}

.ambience-slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--luxury-border);
    border-radius: 24px;
}

.ambience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Reservation CTA --- */
.restaurant-reservation {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.restaurant-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 14, 0.9); /* Dark overlay */
    z-index: 2;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) contrast(1.1);
    z-index: 1;
    transform: scale(1.02);
}

.reservation-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-content h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--luxury-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.reservation-content p {
    color: var(--luxury-text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.reservation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reservation-details {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.res-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.res-detail-item i {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 12px;
}

.res-detail-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--luxury-text-muted);
    margin-bottom: 5px;
}

.res-detail-item strong {
    font-size: 1.1rem;
    color: var(--luxury-light);
}

@media (max-width: 576px) {
    .reservation-details {
        gap: 25px;
        flex-direction: column;
    }
}

/* Animations */
[data-aos] {
    pointer-events: auto;
}

/* Subtle gold glow text animation */
.text-shimmer {
    background: linear-gradient(to right, #ffffff 0%, var(--luxury-gold) 50%, #ffffff 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Food Star Rating Styles */
.dish-rating-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.stars-interactive {
    display: flex;
    gap: 4px;
}

.stars-interactive i {
    color: #3b4252; /* Default empty star color on dark background */
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.stars-interactive i.filled,
.stars-interactive i.hovered {
    color: #ffb703; /* Gold filled/hovered star color */
}

.stars-interactive i:hover {
    transform: scale(1.25);
}

.rating-value {
    font-weight: 700;
    color: var(--luxury-light);
    font-size: 0.9rem;
}

.rating-count {
    color: var(--luxury-text-muted);
    font-size: 0.8rem;
}

/* Star Rating Toast Notification */
.rating-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0d121f;
    border: 1px solid var(--luxury-gold);
    color: #f8fafc;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rating-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.rating-toast i {
    color: #ffb703;
    font-size: 1.2rem;
}

/* Swiggy Highlight Badge and CTA Styles */
.swiggy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(252, 128, 25, 0.08);
    border: 1px solid rgba(252, 128, 25, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    margin-top: 25px;
    transition: var(--transition-smooth);
}

.swiggy-hero-badge:hover {
    transform: translateY(-2px);
    border-color: #fc8019;
    box-shadow: 0 5px 15px rgba(252, 128, 25, 0.15);
    background: rgba(252, 128, 25, 0.12);
}

.swiggy-hero-badge .swiggy-dot {
    width: 8px;
    height: 8px;
    background-color: #fc8019;
    border-radius: 50%;
    position: relative;
}

.swiggy-hero-badge .swiggy-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 14px;
    height: 14px;
    border: 1px solid #fc8019;
    border-radius: 50%;
    animation: swiggyPulse 1.8s infinite;
}

@keyframes swiggyPulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.swiggy-hero-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f8fafc;
}

.swiggy-hero-badge a {
    color: #fc8019;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.swiggy-hero-badge a:hover {
    color: #ff9f43;
}

.swiggy-btn {
    background: #fc8019;
    color: #07090e !important;
    border: 1.5px solid #fc8019;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 16px 40px;
    font-size: 0.85rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    display: inline-block;
}

.swiggy-btn:hover {
    background: transparent;
    color: #fc8019 !important;
    box-shadow: 0 0 25px rgba(252, 128, 25, 0.4);
    text-decoration: none;
}

@media (max-width: 768px) {
    .swiggy-hero-badge {
        margin-top: 15px;
    }
}

/* --- Dining Venues Section Styles --- */
.restaurant-venues-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--luxury-dark-bg) 0%, #0a0e17 100%);
}

.venue-card {
    background: var(--luxury-dark-card);
    border: 1px solid var(--luxury-border);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 25px var(--luxury-gold-glow);
    border-color: var(--luxury-gold);
}

.venue-card-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.venue-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.venue-card:hover .venue-card-img-wrap img {
    transform: scale(1.08);
}

.venue-badge-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #ff7b54 100%);
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.venue-badge-tag.garden-badge {
    background: linear-gradient(135deg, #1d8da8 0%, #0284c7 100%);
    color: #ffffff;
}

.venue-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.venue-card-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--luxury-light);
    margin-bottom: 12px;
}

.venue-card-desc {
    color: var(--luxury-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.venue-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
}

.venue-features-list li {
    font-size: 13.5px;
    color: var(--luxury-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.venue-features-list li i {
    color: var(--luxury-gold);
    font-size: 14px;
}

.venue-card-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.venue-timing {
    font-size: 12.5px;
    color: var(--luxury-text-muted);
}
