/* 
================================================================
BANSURI - THE MELODY OF TASTE
Luxury Pure Vegetarian Restaurant Style Guide & Main Stylesheet
================================================================
*/

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

:root {
    /* Color Palette */
    --primary-orange: #F57C00;
    --primary-orange-rgb: 245, 124, 0;
    --deep-orange: #E65100;
    --deep-orange-rgb: 230, 81, 0;
    --golden-orange: #FB8C00;
    --golden-orange-rgb: 251, 140, 0;

    --light-yellow-background: #FFF8E1;
    --cream-background: #FFFDF7;
    --soft-beige: #FDF5E6;
    --warm-white: #FFFFFF;

    --card-background: #FFFFFF;
    --section-alternate-background: #FFF3D6;

    --heading-color: #3E2723;
    --paragraph-color: #6D4C41;

    --primary-button: #F57C00;
    --button-hover: #E65100;

    --navbar-bg: #FFFFFF;
    --navbar-active: #F57C00;

    --footer-bg: #3E2723;
    --footer-text: #FFF8E1;

    --border-color: #FFE0B2;
    --shadow-rgb: 245, 124, 0;
    --shadow: rgba(var(--shadow-rgb), 0.18);
    
    /* Gradients */
    --gradient-orange: linear-gradient(135deg, var(--primary-orange) 0%, var(--golden-orange) 100%);
    --gradient-darker-orange: linear-gradient(135deg, var(--deep-orange) 0%, var(--primary-orange) 100%);

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-serif: 'Cormorant Garamond', serif;

    /* Transition */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--warm-white);
    color: var(--paragraph-color);
    line-height: 1.6;
    overflow-x: hidden;
}
strong{
    color: orangered;
    font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

p {
    font-size: 1rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: var(--heading-color);
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-button);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream-background);
}
::-webkit-scrollbar-thumb {
    background: var(--golden-orange);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Layout Elements */
.section-padding {
    padding: 50px 0;
}

.bg-white-section {
    background-color: var(--warm-white);
}
.bg-cream-section {
    background-color: var(--cream-background);
}
.bg-light-yellow-section {
    background-color: var(--light-yellow-background);
}

/* Reusable Decorative Titles */
.section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.subtitle-melody {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: normal; 
    color: var(--golden-orange);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    background: var(--cream-background); /* Match section background */
    border-radius: 15px;
    padding: 0 10px;
}

.section-title {
    font-size: 2.8rem;
    position: relative; /* Keep for ::after and ::before */
    padding-bottom: 15px;
    color: inherit;
}

/* Elegant line separator with an SVG flute/feather vibe */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px; /* Slightly thinner for elegance */
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-title::before {
    content: '🪶';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem; /* Slightly smaller */
    background: var(--warm-white); /* Match section background */
    padding: 0 10px;
    z-index: 1;
    color: var(--primary-orange); /* Use primary orange for accent */
}

.bg-cream-section .section-title::before {
    background: var(--cream-background);
}

.bg-light-yellow-section .section-title::before {
    background: var(--light-yellow-background);
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--card-background); /* White background */
    /* Removed backdrop-filter for bright theme */
    border: 1px solid var(--border-color); /* Soft beige border */
    box-shadow: 0 10px 20px var(--shadow); /* Soft orange shadow */
    /* Added for orange top border */
    border-top: 5px solid var(--primary-orange);
    padding: 20px; /* Added for premium spacing */
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.glass-card-dark {
    /* This class is removed as per the "No dark backgrounds" requirement */
    /* If you need a variant, consider a different light-themed approach */
    display: none; /* Hide or remove this class if it's not used */
}

/* Premium Buttons */
.btn-bansuri {
    position: relative;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: none;
    z-index: 1;
    display: inline-flex; /* Keep for alignment */
    align-items: center;
    gap: 8px; /* Keep for icon spacing */
    justify-content: center;
    gap: 8px;
}

.btn-bansuri-primary {
    background-color:cadetblue; 
    color: var(--warm-white);
    box-shadow: 0 10px 20px rgba(var(--shadow-rgb), 0.25);
}

.btn-bansuri-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Full width for hover effect */
    height: 100%; /* Full height for hover effect */
    background: var(--gradient-darker-orange); /* Darker orange on hover */
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-bansuri-primary:hover {
    color: var(--warm-white); /* Keep text white for contrast */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--shadow-rgb), 0.4); /* Enhanced shadow */
}

.btn-bansuri-primary:hover::before {
    opacity: 1;
}

.btn-bansuri-secondary {
    background: transparent;
    color: var(--heading-color); /* Dark text for light background */
    border: 2px solid var(--primary-orange); /* Orange border */
}

.btn-bansuri-secondary:hover {
    background: var(--gradient-orange); /* Orange gradient on hover */
    color: var(--warm-white); /* White text on orange background */
    border-color: transparent;
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 15px 30px rgba(var(--shadow-rgb), 0.3); /* Soft orange shadow */
}

/* Sticky Header & Navbar */
.bansuri-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth); /* Keep smooth transition */
    padding: 5px 0; /* Reduced padding */
    background: transparent; /* Initially transparent */
}

.bansuri-navbar.scrolled {
    padding: 5px 0; /* Reduced padding */
    background: var(--gradient-orange); /* Changed to orange gradient */
    backdrop-filter: none; /* Removed blur for bright theme */
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Lighter border for contrast */
    box-shadow: 0 5px 15px var(--shadow); /* Soft orange shadow */
}

.navbar-brand .logo-img {
    height: 50px; /* Reduced logo height */
    transition: var(--transition-smooth);
}

.bansuri-navbar.scrolled .logo-img {
    height: 40px; /* Reduced scrolled logo height */
}

.nav-link {
    color: var(--heading-color) !important; /* Dark text color initially */
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition-smooth); /* Keep smooth transition */
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-orange) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-orange); /* Orange gradient underline */
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: right;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.bansuri-navbar.scrolled .nav-link {
    color: var(--warm-white) !important; /* White text on scrolled navbar */
}

/* Mobile Contact Number in Header */
.header-mobile-phone {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(var(--primary-orange-rgb), 0.12);
    color: var(--primary-orange);
    border: 1px solid rgba(var(--primary-orange-rgb), 0.3);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.header-mobile-phone i {
    font-size: 0.85rem;
    color: var(--primary-orange);
    transition: var(--transition-smooth);
}

.header-mobile-phone:hover {
    background: var(--primary-orange);
    color: var(--warm-white) !important;
    border-color: var(--primary-orange);
}

.header-mobile-phone:hover i {
    color: var(--warm-white);
}

.bansuri-navbar.scrolled .header-mobile-phone {
    background: rgba(255, 255, 255, 0.2);
    color: var(--warm-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.bansuri-navbar.scrolled .header-mobile-phone i {
    color: var(--warm-white);
}

.bansuri-navbar.scrolled .header-mobile-phone:hover {
    background: var(--warm-white);
    color: var(--primary-orange) !important;
    border-color: var(--warm-white);
}

.bansuri-navbar.scrolled .header-mobile-phone:hover i {
    color: var(--primary-orange);
}

/* Custom Hamburger Icon */
.navbar-toggler {
    border: none;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--heading-color); /* Dark color for hamburger */
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.bansuri-navbar.scrolled .hamburger span {
    background-color: var(--warm-white); /* White when scrolled */
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section (Bansuri Signature) */
.bansuri-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Text left, image right */
    background: linear-gradient(135deg, var(--cream-background) 0%, var(--light-yellow-background) 100%),
                url('../images/hero/hero_background.jpg') no-repeat center center/cover; /* Warm background */
    background-blend-mode: overlay; /* Blend with image */
    background-attachment: fixed; /* Parallax effect */
    color: var(--heading-color); /* Dark text color */
    padding: 100px 0;
    overflow: hidden;
}

/* Glowing background particles */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; /* Behind content */
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: left; /* Text left */
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: normal; /* Changed from italic */
    color: var(--primary-orange); /* Primary orange */
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    text-shadow: none; /* Removed dark text shadow */
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary-orange) !important; /* Primary orange */
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 550px; /* Keep max-width */
    margin: 20px 0 40px 0; /* Text left */
    color: var(--paragraph-color); /* Paragraph color */
    font-weight: 300;
}

.hero-flute-container {
    position: relative;
    position: absolute;
    top: 50%; /* Centered vertically */
    right: 5%; /* Positioned to the right */
    transform: translateY(-50%); /* Centered vertically */
    width: 250px; /* Larger for visual impact */
    height: auto;
    z-index: 10; /* Above other elements */
}

/* Floating flute SVG */
.hero-flute-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: 0; /* Align to bottom of container */
    right: 0; /* Align to right of container */
    rotate: 0deg; /* Reset rotation if not needed */
    filter: drop-shadow(0 0 15px rgba(var(--shadow-rgb), 0.7)); /* Orange glow */
    transform-origin: center;
}

.flute-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--golden-orange-rgb), 0.25) 0%, rgba(var(--golden-orange-rgb), 0) 65%); /* Golden orange glow */
    z-index: -1;
}

/* Peacock feather decoration in hero */
.hero-feather {
    position: absolute;    
    top: -20px; /* Slightly above the flute */
    right: 10px; /* Near the flute */
    width: 100px; /* Larger feather */
    height: auto;
    transform-origin: bottom center;
    opacity: 0.9;
}

/* Hero Feature Cards */
.hero-feature-cards-container {
    position: absolute;
    bottom: 40px; /* Keep at bottom */
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-feature-card {
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color); /* Dark text */
    background: var(--card-background); /* White background */
    backdrop-filter: none; /* Removed blur */
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border-color); /* Soft border */
    box-shadow: 0 5px 15px var(--shadow); /* Soft orange shadow */
    transition: var(--transition-smooth); /* Keep smooth transition */
}

.hero-feature-card:hover {
    transform: translateY(-5px);
    background: var(--cream-background); /* Cream background on hover */
    border-color: var(--primary-orange); /* Orange border on hover */
    box-shadow: 0 10px 20px rgba(var(--shadow-rgb), 0.2); /* Enhanced shadow */
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase; /* Keep uppercase */
    color: var(--paragraph-color); /* Dark text color */
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    color: var(--primary-orange); /* Orange on hover */
}

.mouse-wheel {
    width: 26px;
    height: 42px;
    border: 2px solid var(--paragraph-color); /* Dark border */
    border-radius: 15px;
    position: relative;
}

.bansuri-navbar.scrolled ~ .scroll-indicator .mouse-wheel {
    border-color: var(--primary-orange); /* Orange when scrolled */
}

.mouse-wheel::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-orange); /* Orange dot */
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

/* Premium General Cards */
.bansuri-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--card-background); /* White background */
    box-shadow: 0 10px 30px var(--shadow); /* Soft orange shadow */
    border-top: 5px solid var(--primary-orange); /* Orange top border */
    transition: var(--transition-smooth);
    z-index: 1;
}

.bansuri-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-color); /* Soft border */
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 2;
}

.bansuri-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(var(--shadow-rgb), 0.3); /* Enhanced orange shadow */
}

.bansuri-card:hover::after {
    border-color: var(--primary-orange); /* Orange border on hover */
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 15px; /* Rounded image */
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    border-radius: 15px; /* Rounded image */
}

.bansuri-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(var(--primary-orange-rgb), 0.2) 0%, rgba(var(--primary-orange-rgb), 0) 60%); /* Subtle orange overlay */
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 1;
}

.bansuri-card:hover .card-overlay {
    opacity: 1;
}

/* Why Choose Us Cards */
.wcu-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    background: var(--card-background); /* White background */
    box-shadow: 0 10px 30px var(--shadow); /* Soft orange shadow */
    transition: var(--transition-smooth); /* Keep smooth transition */
    border: 1px solid var(--border-color); /* Soft border */
}

.wcu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(var(--shadow-rgb), 0.2); /* Enhanced orange shadow */
    border-color: var(--primary-orange); /* Orange border on hover */
}

.wcu-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(var(--primary-orange-rgb), 0.08); /* Light orange background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    color: var(--primary-orange); /* Primary orange icon */
    transition: var(--transition-smooth);
}

.wcu-card:hover .wcu-icon-wrapper {
    background: var(--gradient-orange); /* Orange gradient on hover */
    color: var(--warm-white); /* White icon on hover */
    transform: rotateY(360deg);
}

/* Dish Price Cards */
.dish-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-background); /* White background */
    box-shadow: 0 10px 30px var(--shadow); /* Soft orange shadow */
    transition: var(--transition-smooth);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(var(--shadow-rgb), 0.2); /* Enhanced orange shadow */
}

.badge-veg {
    border: 1.5px solid #2e7d32;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.badge-veg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2e7d32;
}

.dish-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.dish-badge-bestseller {
    background: var(--gradient-orange); /* Orange gradient */
    color: var(--warm-white); /* White text */
}

.dish-badge-special {
    background: var(--golden-orange); /* Golden orange */
    color: var(--warm-white); /* White text */
}

.dish-content {
    padding: 25px;
}

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

.dish-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color); /* Heading color */
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.dish-rating {
    color: var(--golden-orange); /* Golden orange stars */
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* Reviews Slider */
.review-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--card-background); /* White background */
    box-shadow: 0 10px 30px var(--shadow); /* Soft orange shadow */
    position: relative;
    border: 1px solid var(--border-color); /* Soft border */
}

.review-quote {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: rgba(var(--golden-orange-rgb), 0.15); /* Golden orange quote */
    line-height: 1;
    font-family: var(--font-serif);
}

.review-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--paragraph-color); /* Paragraph color */
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-orange); /* Orange border */
}

.review-author-name {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.review-author-role {
    font-size: 0.85rem;
    color: var(--paragraph-color); /* Paragraph color */
}

/* Premium Footer */
.bansuri-footer {
    background-color: var(--footer-bg); /* Dark brown */
    color: var(--footer-text); /* Cream text */
    padding-top: 40px;
    border-top: 3px solid var(--primary-orange); /* Orange border */
    position: relative;
}

.footer-logo {
    height: 70px;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--primary-orange); /* Orange title */
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-orange); /* Orange gradient */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--footer-text); /* Cream text */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '🪶';
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--primary-orange); /* Orange feather */
}

.footer-links a:hover {
    color: var(--primary-orange); /* Orange on hover */
    padding-left: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-orange); /* Orange icon */
    font-size: 1.1rem;
}

.social-icons-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--primary-orange-rgb), 0.05); /* Light orange background */
    border: 1px solid rgba(var(--primary-orange-rgb), 0.2); /* Soft orange border */
    color: var(--footer-text); /* Cream text */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background: var(--gradient-orange); /* Orange gradient */
    color: var(--footer-bg); /* Dark brown text */
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(var(--shadow-rgb), 0.3); /* Soft orange shadow */
}

.footer-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.footer-insta-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(var(--footer-text-rgb), 0.1); /* Light border */
    transition: var(--transition-smooth);
    cursor: pointer;
}

.footer-insta-img:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange); /* Orange border on hover */
    filter: brightness(1.1);
}

.footer-bottom {
    background-color: rgba(var(--footer-bg-rgb), 0.2); /* Slightly transparent dark brown */
    padding: 10px 0;
    margin-top: 25px;
    border-top: 1px solid rgba(var(--footer-text-rgb), 0.05); /* Light border */
    font-size: 0.9rem;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-button); /* Primary orange */
    color: var(--warm-white); /* White icon */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(var(--shadow-rgb), 0.3); /* Soft orange shadow */
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(var(--shadow-rgb), 0.5); /* Enhanced orange shadow */
    color: var(--warm-white); /* White icon */
    background: var(--button-hover); /* Darker orange */
}

/* Page Headers (Subpages) */
.bansuri-page-header {
    background-repeat: no-repeat;
    background-position: center center; /* Center the image for better responsiveness */
    background-size: cover; /* Ensure the image covers the area without distortion */
    background-attachment: fixed; /* Adds premium parallax effect */
    height: 380px; /* Reduced height for a sleeker look */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color); /* Dark text */
    text-align: center;
    /* padding-top is now handled by .main-inner, height is default for image backgrounds */
}

.page-header-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.5); /* Adds a subtle glow for readability */
}

.page-header-title span {
    background: var(--warm-white); /* Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bansuri-breadcrumb {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--paragraph-color); /* Paragraph color */
}

.bansuri-breadcrumb a {
    color: var(--warm-white); /* Orange link */
}

.bansuri-breadcrumb span {
    color: var(--warm-white); /* Lighter orange separator */
}

/* Timeline component (About) */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 30px auto 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--gradient-orange); /* Orange gradient line */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '🪶';
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background-color: var(--ivory);
    border: 2px solid var(--gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -15px;
}

.timeline-content {
    padding: 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid rgba(212,175,55,0.15);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Lightbox component */
.bansuri-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 9, 8, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bansuri-lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 3px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 15px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lightbox-nav:hover {
    color: var(--gold);
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Floating custom decoration shapes */
.peacock-swirl-bg {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* Custom Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-orange-gold);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-flute-container {
        opacity: 0.2;
        right: -50px;
    }
    .hero-feature-cards-container {
        position: relative;
        bottom: auto;
        padding: 40px 0;
    }
}

@media (max-width: 767.98px) {
    .bansuri-hero {
        padding-top: 120px;
        padding-bottom: 60px;
        align-items: flex-start;
    }
    .hero-flute-container { display: none; }
    .page-header-title {
    font-size: 2.5rem !important;
    }
    .bansuri-page-header.bansuri-page-header-colored {
        min-height: 130px !important;
    }
}

/* ================================================== */
/* Premium Hero Slider Section */
/* ================================================== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    /* This was the fix for the original hero, but the slider is different.
       A full-page slider should start at the top.
       If the user wants it below the nav, we can add padding-top.
       Let's assume the navbar height is around 95px initially. */
    padding-top: 75px; 
}

#premiumHeroSlider .carousel-item {
    height: 85vh; /* Reduced height */
    position: relative;
    background-color: var(--soft-beige); /* Background for border effect */
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 20px; /* Added left border */
    right: 20px; /* Added right border */
    height: 100%;
    background-size: cover; /* Fill the new, smaller container */
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.20);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: var(--warm-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-slide-buttons .btn {
    padding: 14px 40px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(var(--shadow-rgb), 0.25);
    transition: all 0.3s ease;
}

.hero-slide-buttons .btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 30px rgba(var(--shadow-rgb), 0.4);
}

.hero-slide-buttons .btn-bansuri-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--warm-white);
}

.hero-slide-buttons .btn-bansuri-secondary:hover {
    background: var(--gradient-orange);
    border-color: transparent;
}

/* Carousel Navigation & Indicators */
#premiumHeroSlider .carousel-indicators {
    bottom: 30px;
}

#premiumHeroSlider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

#premiumHeroSlider .carousel-indicators .active {
    background-color: var(--primary-orange);
}

.hero-slider-nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--warm-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#premiumHeroSlider .carousel-control-prev,
#premiumHeroSlider .carousel-control-next {
    opacity: 0.8;
    width: 8%;
}

#premiumHeroSlider .carousel-control-prev:hover,
#premiumHeroSlider .carousel-control-next:hover {
    opacity: 1;
}

#premiumHeroSlider .carousel-control-prev:hover .hero-slider-nav-arrow,
#premiumHeroSlider .carousel-control-next:hover .hero-slider-nav-arrow {
    background: var(--button-hover);
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #premiumHeroSlider .carousel-item {
        height: 70vh; /* Reduced height */
    }
    .hero-slide-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    #premiumHeroSlider .carousel-item {
        height: 55vh; /* Reduced height */
    }
    .hero-slide-title {
        font-size: 2.2rem;
    }
    .hero-slide-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .hero-slide-buttons .btn {
        width: 100%;
        max-width: 150px;
        margin: auto;
        padding: 6px 10px;
    }
    #premiumHeroSlider .carousel-control-prev,
    #premiumHeroSlider .carousel-control-next {
        display: none; /* Hide arrows on mobile for better touch experience */
    }
}

@media (max-width: 991.98px) {
    #premiumHeroSlider .carousel-item {
        height: 70vh; /* Reduced height */
    }
    .hero-slide-title {
        font-size: 1.8rem;
    }
    .hero-slide-image {
        left: 20px; /* Reduced border for tablets */
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide-image {
        left: 10px; /* Further reduced border for mobile */
        right: 10px;
    }
}

/* ================================================== */
/* Chinese Starters Showcase Section */
/* ================================================== */
.chinese-starters-section {
    background-color: #FFF8E1;
    background-image: 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='%23FB8C00' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.chinese-starters-slider {
    padding-top: 20px;
    padding-bottom: 60px;
}

.chinese-starters-slider .swiper-slide {
    width: 320px; /* Set specific width */
}

/* Card Overrides */
.starter-card {
    width: 320px;
    min-width: 300px;
    max-width: 340px;
    margin: 0 auto; /* Center card in the slide if needed */
    border: none;
    background: linear-gradient(135deg, #FB8C00, #F57C00);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(245, 124, 0, .18);
    overflow: hidden;
    color: #FFFFFF;
}

.starter-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.starter-card .card-body {
    text-align: center;
    padding: 24px;
}

.starter-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.starter-card .starter-card-category {
    color: rgba(255, 255, 255, .85);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.starter-card .starter-card-price {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Swiper Navigation & Pagination */
.chinese-starters-slider .swiper-pagination-bullet {
    background-color: rgba(var(--primary-orange-rgb), 0.4);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.chinese-starters-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-orange);
}

.chinese-starters-slider .swiper-button-next,
.chinese-starters-slider .swiper-button-prev {
    color: var(--primary-orange);
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.chinese-starters-slider .swiper-button-next:hover,
.chinese-starters-slider .swiper-button-prev:hover {
    background-color: var(--primary-orange);
    color: #fff;
}

.chinese-starters-slider .swiper-button-next::after,
.chinese-starters-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Fix for inner page header overlapping navbar */
.main-inner {
    padding-top: 70px; /* Adjust this value to match the navbar's height (50px logo + 2*10px padding) */
}

/* Specific styles for Contact Page Header (colored background) */
.bansuri-page-header.bansuri-page-header-colored {
    background: var(--gradient-orange); /* Attractive orange gradient */
    min-height: 300px; /* Reduced height */
    height: auto; /* Override fixed height for image backgrounds */
    color: var(--warm-white); /* White text for contrast */
    background-attachment: scroll; /* No parallax for solid color background */
}

.bansuri-page-header.bansuri-page-header-colored .page-header-title {
    color: var(--warm-white); /* Ensure main title is white */
}

.bansuri-page-header.bansuri-page-header-colored .page-header-title span {
    -webkit-text-fill-color: var(--warm-white); /* Make the gradient span white too */
    background: none; /* Remove gradient background for span */
}

.bansuri-page-header.bansuri-page-header-colored .bansuri-breadcrumb a,
.bansuri-page-header.bansuri-page-header-colored .bansuri-breadcrumb span {
    color: var(--warm-white); /* Ensure breadcrumbs are white */
}

/* ================================================== */
/* The Art Behind Every Plate Section (About Page) */
/* ================================================== */
.art-section {
    background-color: var(--warm-white);
    overflow: hidden;
}
.nav-pills li{
 padding: 0px 10px;
}
.art-content .art-eyebrow {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 20px;
    display: block;
}

.art-content .art-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--heading-color);
}

.art-content .art-description {
    font-size: 1.1rem;
    color: var(--paragraph-color);
    max-width: 500px;
    margin-bottom: 50px;
}

.art-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.art-highlight {
    cursor: default;
    position: relative;
    padding-bottom: 10px;
}

.art-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    transform: scaleX(1);
    transform-origin: left;
}

.art-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--transition-smooth);
    z-index: 1;
}

.art-highlight:hover::before {
    transform: scaleX(1);
}

.art-highlight-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.art-highlight-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(var(--primary-orange-rgb), 0.5);
    transition: color 0.4s ease;
}

.art-highlight:hover .art-highlight-number {
    color: var(--primary-orange);
}

.art-highlight-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.art-highlight-body {
    overflow: hidden;
}

.art-highlight-description {
    font-size: 0.9rem;
    color: var(--paragraph-color);
    margin: 8px 0 0 0;
    padding-left: 45px; /* Align with title */
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out 0.1s;
}

.art-highlight:hover .art-highlight-description {
    max-height: 100px; /* Adjust if text is longer */
    opacity: 1;
}

.art-highlight-arrow {
    position: absolute;
    right: 0;
    bottom: 10px;
    font-size: 1.5rem;
    color: var(--primary-orange);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.art-highlight:hover .art-highlight-arrow {
    opacity: 1;
    transform: translateX(0);
}

.art-image-wrapper {
    position: relative;
    padding-left: 40px;
}

.art-image-parallax {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(var(--shadow-rgb), 0.2);
    height: 550px;
}

.art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.art-image-wrapper:hover .art-image {
    transform: scale(1.03);
}

.art-steam-effect {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 100px;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0;
    animation: art-steam-flow 10s infinite ease-in-out 1s;
    pointer-events: none;
}

@keyframes art-steam-flow {
    0% { transform: translateY(20px) scale(1); opacity: 0; }
    50% { transform: translateY(-60px) scale(1.2) translateX(-10px); opacity: 0.6; }
    100% { transform: translateY(-140px) scale(1.5) translateX(10px); opacity: 0; }
}

.art-decorative-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: left top;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: rgba(var(--paragraph-color-rgb, 109, 76, 65), 0.4);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .art-image-wrapper { margin-top: 60px; padding-left: 0; }
    .art-decorative-text { display: none; }
    .art-image-parallax { height: 450px; }
}

@media (max-width: 767.98px) {
    .art-title { font-size: 2.5rem; }
    .art-highlights-grid { grid-template-columns: 1fr; }
    .art-highlight-description { padding-left: 42px; }
}

/* ================================================== */
/* From Wok to Table - Story Section */
/* ================================================== */
.wok-story-section {
    position: relative;
    padding: 40px 0; /* Reduced padding */
    background-color: var(--light-yellow-background); /* Changed to light yellow */
    overflow: hidden;
    color: var(--paragraph-color); /* Dark text color */
}

.wok-story-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 550px; /* Further Reduced size */
    height: 550px; /* Further Reduced size */
    background: radial-gradient(circle, rgba(var(--primary-orange-rgb), 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.wok-story-heading {
    color: var(--heading-color); /* Dark heading color */
}
.wok-story-heading::after, .wok-story-heading::before {
    display: none; /* Hide default separator for this section */
}

.wok-story-description {
    max-width: 550px;
    color: var(--paragraph-color); /* Dark paragraph color */
    margin-top: 15px;
}

.wok-story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    height: 350px; /* Further reduced height */
    position: relative;
    margin-top: 40px;
}

.wok-story-image-wrapper {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    position: relative;
    z-index: 10;
    width: 280px; /* Further smaller */
    height: 280px; /* Further smaller */
}

.wok-story-animated-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(var(--shadow-rgb), 0.2);
    border: 3px solid rgba(var(--golden-orange-rgb), 0.2);
    transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}

.wok-story-steam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px; /* Slightly smaller steam */
    background: linear-gradient(to top, rgba(var(--paragraph-color-rgb), 0.04) 0%, transparent 70%); /* Subtle steam for light background */
    opacity: 0;
    animation: wok-steam-flow 12s infinite ease-in-out;
    pointer-events: none;
    z-index: 11;
}

.wok-story-section.reveal-in-view .wok-story-steam {
    animation-play-state: running;
}

@keyframes wok-steam-flow {
    0% { transform: translateY(5px) scale(1) translateX(-50%); opacity: 0; }
    25% { transform: translateY(-30px) scale(1.1) translateX(-60%); opacity: 0.8; }
    50% { transform: translateY(-60px) scale(0.9) translateX(-45%); opacity: 0.8; }
    100% { transform: translateY(-120px) scale(1.3) translateX(-55%); opacity: 0; }
}

.wok-story-lines-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px; /* Further Reduced size */
    height: 420px; /* Further Reduced size */
    z-index: 5;
    overflow: visible;
}

.wok-story-line {
    stroke: rgba(var(--golden-orange-rgb), 0.2);
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke 0.4s ease, stroke-dashoffset 1s ease-out;
}

.wok-story-section.reveal-in-view .wok-story-line { transition-delay: 0.8s; stroke-dashoffset: 0; }

.wok-story-stage {
    z-index: 15;
    cursor: default;
    padding: 20px;
}

.wok-story-stage-content {
    transition: transform 0.4s var(--transition-smooth);
}
.wok-story-stage:hover .wok-story-stage-content {
    transform: translateY(-5px);
}

.wok-story-stage.stage-1 { grid-column: 1; grid-row: 1; justify-self: start; align-self: start; text-align: right;}
.wok-story-stage.stage-2 { grid-column: 1; grid-row: 2; justify-self: start; align-self: end; text-align: right;}
.wok-story-stage.stage-3 { grid-column: 4; grid-row: 1; justify-self: end; align-self: start; text-align: left;}
.wok-story-stage.stage-4 { grid-column: 4; grid-row: 2; justify-self: end; align-self: end; text-align: left;}

.wok-story-stage-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(var(--primary-orange-rgb), 0.4);
    line-height: 1;
    transition: color 0.4s ease;
}

.wok-story-stage-title {
    font-family: var(--font-heading);
    font-size: 1.2rem; /* Slightly smaller */
    color: var(--heading-color);
    margin: 5px 0;
    transition: color 0.4s ease;
}

.wok-story-stage-desc {
    font-size: 0.9rem;
    color: var(--paragraph-color);
    max-width: 180px;
    margin: 0;
}

.wok-story-stage:hover .wok-story-stage-number { color: var(--primary-orange); }
.wok-story-stage:hover .wok-story-stage-title { color: var(--primary-orange); }
.wok-story-stage:hover ~ .wok-story-image-wrapper .wok-story-image { transform: scale(1.02); box-shadow: 0 25px 50px rgba(var(--shadow-rgb), 0.3); }

.wok-story-stage.stage-1:hover ~ .wok-story-lines-svg #wok-line-1 { stroke: var(--primary-orange); }
.wok-story-stage.stage-2:hover ~ .wok-story-lines-svg #wok-line-2 { stroke: var(--primary-orange); }
.wok-story-stage.stage-3:hover ~ .wok-story-lines-svg #wok-line-3 { stroke: var(--primary-orange); }
.wok-story-stage.stage-4:hover ~ .wok-story-lines-svg #wok-line-4 { stroke: var(--primary-orange); }

.wok-story-deco {
    position: absolute;
    pointer-events: none;
    font-size: 2rem;
    opacity: 0.2;
    color: var(--golden-orange);
    transition: transform 0.2s ease-out;
}
.wok-story-ingredient-1 { top: 20%; left: 15%; }
.wok-story-ingredient-2 { bottom: 15%; left: 25%; font-size: 4rem; opacity: 0.1; }
.wok-story-ingredient-3 { top: 30%; right: 10%; }

.wok-story-signature {
    text-align: center;
    margin-top: 60px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(var(--paragraph-color-rgb), 0.4);
}

.wok-story-mobile-layout {
    display: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    .wok-story-grid { display: none; }
    .wok-story-mobile-layout {
        display: block;
        margin-top: 40px;
    }
    .wok-story-mobile-layout .wok-story-image-wrapper {
        width: 80%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto 40px auto;
    }
    .wok-story-mobile-stages {
        position: relative;
        padding-left: 30px;
    }
    .wok-story-mobile-stages::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 12px;
        bottom: 12px;
        width: 2px;
        background: rgba(var(--primary-orange-rgb), 0.2);
    }
    .wok-story-stage-mobile {
        position: relative;
        margin-bottom: 30px;
    }
    .wok-story-stage-mobile .num {
        position: absolute;
        left: -30px;
        top: 0;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background-color: var(--primary-orange);
        color: var(--footer-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-weight: 700;
        border: 3px solid var(--light-yellow-background); /* Match new light yellow background */
    }
    .wok-story-stage-mobile h3 {
        font-family: var(--font-heading);
        font-size: 1.3rem;
        color: var(--heading-color); /* Dark text */
        margin-bottom: 5px;
    }
    .wok-story-stage-mobile p {
        font-size: 0.9rem;
        color: var(--paragraph-color); /* Dark text */
        margin: 0;
    }
}

@media (max-width: 575.98px) {
    .wok-story-section { padding: 80px 0; }
    .wok-story-description { font-size: 0.95rem; }
    .wok-story-signature { font-size: 0.7rem; letter-spacing: 3px; }
}

@media (prefers-reduced-motion: reduce) {
    .wok-story-line, .wok-story-stage-content, .wok-story-image, .wok-story-steam, .wok-story-deco {
        animation: none !important;
        transition: none !important;
    }
}

/* ================================================== */
/* Authentic Dining & Family Ambience Section */
/* ================================================== */
.authentic-dining-section {
    background-color: var(--cream-background);
    position: relative;
}

.section-heading-custom {
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.25;
}

.lead-custom {
    font-size: 1.05rem;
    line-height: 1.75;
}

.cuisine-pill-card {
    background: var(--warm-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 14px 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(var(--shadow-rgb), 0.06);
}

.cuisine-pill-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(var(--shadow-rgb), 0.15);
    background: #FFF8E1;
}

.cuisine-emoji {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 6px;
}

.authentic-dining-img-wrapper {
    position: relative;
    padding: 10px;
}

.main-img-box {
    border: 2px solid var(--border-color);
    background: var(--warm-white);
    padding: 8px;
    border-radius: 24px !important;
    box-shadow: 0 15px 35px rgba(var(--shadow-rgb), 0.12) !important;
}

.dining-main-img {
    border-radius: 18px;
    transition: var(--transition-smooth);
    object-fit: cover;
    height: 380px;
    width: 100%;
}

.main-img-box:hover .dining-main-img {
    transform: scale(1.02);
}

.floating-dining-badge,
.floating-ambience-badge {
    border: 1px solid var(--border-color);
    z-index: 3;
    border-radius: 18px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.floating-dining-badge {
    bottom: -15px;
    right: 25px;
    border-left: 4px solid var(--primary-orange) !important;
    animation: floatBadge 3.5s ease-in-out infinite alternate;
}

.floating-ambience-badge {
    bottom: -15px;
    left: 25px;
    border-left: 4px solid #E65100 !important;
    animation: floatBadge 3.5s ease-in-out infinite alternate 1.5s;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.highlight-check-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(var(--primary-orange-rgb), 0.12);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.family-highlights-list .highlight-item {
    padding: 10px 14px;
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.family-highlights-list .highlight-item:hover {
    background: rgba(var(--primary-orange-rgb), 0.05);
}

.family-highlights-list .highlight-item:hover .highlight-check-icon {
    background: var(--primary-orange);
    color: var(--warm-white);
    transform: scale(1.08);
}
