/*
Theme Name: Agrawals Restaurant
Theme URI: https://www.agrawalrestaurant.com/
Author: Do Digitalsa
Author URI: https://dodigitals.org/
Description: A high-performance, custom-coded WordPress theme specifically engineered for Agrawals Restaurant, fully optimized for Elementor.
Version: 1.0.0
Text Domain: agrawals
*/

:root {
    --primary-red: #A31B21;
    --accent-red: #DA251D;
    --premium-gold: #D4AF37;
    --text-dark: #221F1F;
    --bg-cream: #FDFBF7;
    --white: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif; /* Aap Elementor se global font set kar lena */
    background-color: var(--bg-cream);
    color: var(--text-dark);
}

/* --- Floating Glass Header --- */
.floating-glass-header { 
    position: fixed; 
    top: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 95%; 
    max-width: 1100px; 
    z-index: 9999; 
    transition: all 0.3s ease;
}

.glass-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background: rgba(255, 255, 255, 0.85); /* Halka white background */
    backdrop-filter: blur(15px); /* Kanch jaisa blur effect */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4); 
    border-radius: 50px; /* Pill Shape */
    padding: 10px 25px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
}

/* --- Logo --- */
.site-logo img { max-height: 50px; width: auto; display: block; }
.site-logo a { font-size: 24px; font-weight: 900; color: var(--primary-red); text-decoration: none; letter-spacing: -0.5px; }

/* --- Navigation --- */
.main-navigation ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.main-navigation a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 15px; transition: color 0.3s ease; }
.main-navigation a:hover { color: var(--accent-red); }

/* --- Buttons --- */
.btn-glass { 
    background: var(--primary-red); 
    color: var(--white); 
    padding: 10px 20px; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 14px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 10px rgba(163, 27, 33, 0.3);
}
.btn-glass:hover { background: var(--accent-red); transform: translateY(-2px); }

/* --- Mobile Menu Toggle --- */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 5px; }
.menu-toggle .bar { width: 25px; height: 3px; background-color: var(--text-dark); transition: 0.3s; border-radius: 2px; }

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .floating-glass-header { top: 10px; width: 92%; }
    .glass-container { padding: 10px 15px; border-radius: 20px; /* Mobile pe thoda square-ish */ }
    
    .main-navigation { display: none; } /* Elementor se baad me mobile menu set kar lenge ya custom js rakhenge */
    .btn-glass .text { display: none; } /* Mobile pe sirf call icon dikhega */
    .btn-glass { padding: 10px; border-radius: 50%; }
    
    .menu-toggle { display: flex; }
	.site-logo img {
    max-height: 40px;
}
	.header-action {
    display: flex;
    align-items: center;
}
}

/* --- Variables & Reset --- */
:root {
    --primary: #A31B21;
    --primary-dark: #7a1217;
    --gold: #D4AF37;
    --gold-light: #f5d76e;
    --dark: #1a1a1a;
    --light: #fdfdfd;
    --gray: #f4f4f4;
}
body { margin: 0; font-family: 'Inter', sans-serif; background: var(--light); color: var(--dark); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }

/* --- Scroll Animations (The Wow Factor) --- */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* Staggered Animations for multiple boxes in a row */
.stagger-parent.is-visible .stagger-box {
    animation: fadeUpStagger 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.stagger-box { opacity: 0; transform: translateY(30px); }
.stagger-parent.is-visible .stagger-box:nth-child(1) { animation-delay: 0.1s; }
.stagger-parent.is-visible .stagger-box:nth-child(2) { animation-delay: 0.3s; }
.stagger-parent.is-visible .stagger-box:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeUpStagger {
    to { opacity: 1; transform: translateY(0); }
}

/* --- Cinematic Background Image Hero --- */
.hero-cinematic-bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Mobile friendly. Parallax chahiye to 'fixed' kar dena */
}

/* Content Layout */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start; 
    width: 100%;
    padding: 0 20px;
}

/* The Frosted Glass Box */
.editorial-glass-box {
    max-width: 650px;
    color: var(--white);
}

.gold-badge {
    display: inline-block;
    border: 1px solid var(--premium-gold);
    color: var(--premium-gold);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    margin-top: 0;
}

.text-gold {
    color: var(--premium-gold);
}

/* Text Content */
.seo-content-scroll {
    margin-bottom: 35px;
}

.seo-content-scroll p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.seo-content-scroll p.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-premium-gold {
    background: var(--premium-gold);
    color: #000;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-premium-gold:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-transparent-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-transparent-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .editorial-glass-box {
        padding: 30px 20px;
        text-align: center;
        border-radius: 16px;
    }
    .hero-actions { justify-content: center; }
    .hero-content-wrapper {
    justify-content: center;
    margin-top: 90px;
    padding-bottom: 90px;
}
}

/* --- 2. Editorial Legacy Section (Sticky Layout) --- */
.editorial-legacy-section {
    padding: 60px 0;
    background-color: #FDFBF7; /* Extremely subtle warm cream for luxury feel */
    position: relative;
}

.sticky-wrapper {
    display: flex;
    align-items: flex-start; /* Important for sticky to work */
    gap: 80px;
}

/* --- Left: Sticky Area --- */
.sticky-left {
    flex: 0 0 40%; /* Takes 40% width */
    position: sticky;
    top: 150px; /* Header ke niche kaha rukkna hai */
}

.gold-line {
    width: 60px;
    height: 4px;
    background-color: var(--premium-gold);
    margin-bottom: 20px;
}

.est-text {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

.massive-title {
    font-size: clamp(3.5rem, 6vw, 6rem); /* Huge font */
    line-height: 0.9;
    font-weight: 900;
    margin: 0 0 20px 0;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.sticky-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 300px;
    line-height: 1.6;
}

/* --- Right: Scrolling Content --- */
.scrolling-right {
    flex: 0 0 60%; /* Takes 60% width */
    padding-top: 20px;
}

.editorial-heading {
    font-size: 2rem;
    color: var(--primary-red);
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 800;
}

/* The Magazine Drop Cap Effect */
.drop-cap-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.drop-cap {
    float: left;
    font-size: 5rem;
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 5px;
    color: var(--premium-gold);
    font-family: 'Times New Roman', serif; /* Classic serif for drop cap */
    font-weight: bold;
}

.editorial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
}

.spacer-30 { height: 30px; }

/* Image Break within text */
.editorial-image-break {
    margin: 50px 0;
    position: relative;
}

.parallax-img {
    width: auto;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(20%); /* Adds a subtle artistic touch */
    transition: filter 0.5s;
}

.parallax-img:hover {
    filter: grayscale(0%);
}

.image-caption {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    border-left: 2px solid var(--premium-gold);
    padding-left: 10px;
}

/* --- Responsive for Tablet/Mobile --- */
@media (max-width: 991px) {
    .sticky-wrapper {
        flex-direction: column; /* Mobile pe stack ho jayega */
        gap: 0px;
    }
	.editorial-legacy-section {
    padding: 60px 0 0;
}
	.menu-category-block {
    gap: 30px;
    padding: 15px;
}
    
    .sticky-left {
        position: relative; /* Mobile pe sticky hata denge */
        top: 0;
        flex: 1 1 100%;
        width: 100%;
    }
    
    .scrolling-right {
        flex: 1 1 100%;
        width: 100%;
        padding-top: 0;
    }
    
    .massive-title { font-size: 3.5rem; }
    .parallax-img { height: 35px; }
}

/* --- 6. FAQs --- */
.faq-section { padding: 20px 0 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.custom-check-list { list-style: none; padding: 0; }
.custom-check-list li { margin-bottom: 15px; padding-left: 30px; position: relative; font-size: 1.1rem; }
.custom-check-list li::before { content: '✓'; color: var(--gold); font-weight: bold; position: absolute; left: 0; font-size: 1.2rem; }

details { background: var(--gray); padding: 20px; border-radius: 10px; margin-bottom: 15px; cursor: pointer; transition: 0.3s; }
details[open] { background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-left: 4px solid var(--gold); }
summary { font-weight: bold; font-size: 1.1rem; outline: none; }

/* --- 7. Final CTA --- */
.final-cta { padding: 80px 0; background: var(--gold); color: #000; }

/* Mobile Fixes */
@media (max-width: 768px) {
    .legacy-grid, .faq-grid { grid-template-columns: 1fr; }
    .hero-parallax { background-attachment: scroll; /* Mobile pe fixed bg issue karta hai */ }
}

/* ==========================================================================
   Agrawals - The True Restaurant & Fine Dining Vibe
   ========================================================================== */

/* Import Google Fonts for Restaurant Feel */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Dancing+Script:wght@700&family=Jost:wght@400;500;600&display=swap');

:root {
    --resto-red: #A31B21;
    --resto-gold: #D4AF37;
    --resto-dark: #1A1A1A;
    --resto-cream: #FDFBF7;
}

.resto-vibe-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Jost', sans-serif;
    color: #333;
    padding: 40px 15px;
}

.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-gold { color: var(--resto-gold) !important; }

/* Restaurant Headings */
.resto-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--resto-red);
    margin: 5px 0 15px;
    line-height: 1.1;
}

.resto-script-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--resto-red);
    display: block;
}

.resto-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--resto-red);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

/* Chef Icon Divider */
.resto-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}
.resto-divider span {
    height: 1px;
    width: 80px;
    background-color: var(--resto-red);
}
.chef-icon {
    width: 35px;
    height: 35px;
    opacity: 0.8;
}

.resto-lead-text {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Grid (With Food Icons) */
.resto-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    margin: 60px 0;
    border-top: 5px solid var(--resto-red);
}

.resto-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resto-feature-box {
    text-align: center;
}
.resto-feature-box .icon-circle {
    width: 70px;
    height: 70px;
    background: var(--resto-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px dashed var(--resto-gold);
    transition: transform 0.3s;
}
.resto-feature-box:hover .icon-circle {
    transform: scale(1.1);
    background: var(--resto-red);
}
.resto-feature-box img {
    width: 35px;
    height: 35px;
    filter: sepia(1) hue-rotate(320deg) saturate(3) contrast(1.2); /* Tint icons red/gold */
}
.resto-feature-box:hover img {
    filter: brightness(0) invert(1); /* White on hover */
}
.resto-feature-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--resto-red);
    margin-bottom: 10px;
}

/* ==========================================
   THE DARK MENU BOARD (True Restaurant Feel)
   ========================================== */
.resto-dark-menu {
    background: var(--resto-dark);
    padding: 80px 50px;
    border-radius: 16px;
    margin: 60px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    background-image: radial-gradient(circle at center, #2a2a2a 0%, #1a1a1a 100%);
}

.menu-category-block {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.menu-category-block.reverse-layout {
    flex-direction: row-reverse;
}

/* Food Image Styling */
.menu-image {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid var(--resto-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.menu-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.menu-category-block:hover .menu-image img {
    transform: scale(1.08); /* Appetizing zoom effect */
}

/* The Physical Menu List Layout */
.menu-items-list {
    flex: 1;
}
.menu-cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--resto-gold);
    margin: 0 0 5px 0;
}
.menu-desc {
    color: #aaa;
    font-style: italic;
    margin-bottom: 25px;
}

/* The Dotted Line Magic */
.physical-menu-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    color: #fff;
}
.dish-name {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.menu-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(212, 175, 55, 0.4);
    margin: 0 15px;
    position: relative;
    top: -4px;
}
.dish-type {
    color: var(--resto-gold);
    font-size: 0.9rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    white-space: nowrap;
}

/* Split Text Grid */
.resto-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.resto-text-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.resto-tick-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.resto-tick-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.resto-tick-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--resto-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Legacy Banquet Banner */
.resto-legacy-banner {
    background: linear-gradient(rgba(163, 27, 33, 0.9), rgba(163, 27, 33, 0.9)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1200&q=80') center/cover;
    padding: 80px 40px;
    text-align: center;
    border-radius: 16px;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(163, 27, 33, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .menu-category-block, .menu-category-block.reverse-layout {
        flex-direction: column;
        text-align: center;
    }
    .resto-dark-menu { padding: 40px 20px; }
    .resto-split-grid { grid-template-columns: 1fr; }
    .menu-dots { display: none; }
    .physical-menu-item {
        flex-direction: column;
        align-items: center;
        border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
        padding-bottom: 10px;
    }
}

/* Your JS Animations */
.reveal-up { opacity: 0; transform: translateY(40px); transition: 0.8s ease-out; }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.stagger-parent .stagger-box { opacity: 0; transform: translateY(20px); }
.stagger-parent.is-visible .stagger-box { animation: fadeUpStagger 0.6s ease-out forwards; }
.stagger-parent.is-visible .stagger-box:nth-child(1) { animation-delay: 0.1s; }
.stagger-parent.is-visible .stagger-box:nth-child(2) { animation-delay: 0.2s; }
.stagger-parent.is-visible .stagger-box:nth-child(3) { animation-delay: 0.3s; }
.stagger-parent.is-visible .stagger-box:nth-child(4) { animation-delay: 0.4s; }
@keyframes fadeUpStagger { to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   Agrawals - Ultimate Glassmorphism Parallax CTA
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Great+Vibes&family=Outfit:wght@300;400;600&display=swap');

.ultimate-resto-cta {
    position: relative;
    width: 100%;
    margin: 80px 0 0;
    /* Parallax Background Image - Change URL to your restaurant's best photo */
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat fixed;
    border-radius: 0px; /* Agar full width chahiye toh isko 0 kar dena */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Dark overlay so the text is readable */
.cta-glass-overlay {
    background: rgba(0, 0, 0, 0.4); /* Halka dark tint */
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Frosted Glass Card */
.cta-glass-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(16px); /* Kanch jaisa blur */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cta-card-inner {
    padding: 60px 50px;
}

.cta-top-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(88%) sepia(21%) saturate(1048%) hue-rotate(345deg) brightness(91%) contrast(92%); /* Gold color generator */
    margin-bottom: 20px;
}

.cta-glass-title {
    font-family: 'Cinzel', serif; /* Premium luxury font */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.glass-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 30px auto;
}

.cta-glass-text {
    font-family: 'Outfit', sans-serif;
    color: #f0f0f0;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.highlight-gold {
    color: #D4AF37;
    font-weight: 600;
}

/* Glow Button */
.glass-btn-wrapper {
    margin: 45px 0 30px;
}

.btn-glass-glow {
    display: inline-block;
    padding: 16px 45px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #F9D423 0%, #FF4E50 100%);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(249, 212, 35, 0.4);
}

.btn-glass-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 212, 35, 0.6);
    color: #fff;
}

/* Bottom Signature */
.cta-bottom-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.signature-font {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #D4AF37;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-bottom-signature p {
    font-family: 'Outfit', sans-serif;
    color: #ccc;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .ultimate-resto-cta { margin: 40px 0; background-attachment: scroll; /* Mobile me parallax smooth nahi hota, toh scroll theek hai */ }
    .cta-card-inner { padding: 40px 20px; }
    .cta-glass-title { font-size: 2rem; }
    .signature-font { font-size: 2.5rem; }
}

/* ==========================================================================
   Agrawals - The "Mind-Blowing Interactive" Footer
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=Outfit:wght@300;400;600&family=Great+Vibes&display=swap');

.resto-magic-footer-wrap {
    position: relative;
    margin-top: 150px; /* Space for the overlap card */
}

/* ==========================================
   1. The Overlapping Glass Reservation Card
   ========================================== */
.footer-overlap-card {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(212, 175, 55, 0.1);
    z-index: 20;
}

.overlap-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.overlap-content p {
    font-family: 'Outfit', sans-serif;
    color: #ccc;
    font-size: 1.1rem;
    margin: 0;
}

.btn-glowing-gold {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #D4AF37 0%, #AA771C 100%);
    color: #111 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-glowing-gold:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.8);
    color: #000;
}

/* ==========================================
   2. Main Footer Body & Spinning Mandala
   ========================================== */
.magic-footer {
    background-color: #0d0d0d; /* Pitch Black for high contrast */
    position: relative;
    padding-top: 120px;
    overflow: hidden;
    color: #fff;
    border-top: 2px solid #333;
}

/* Slow Spinning Background Element */
.spinning-mandala-bg {
    position: absolute;
    bottom: -300px;
    left: 50%;
    margin-left: -400px;
    width: 800px;
    height: 800px;
    /* Use a premium mandala/thali vector here */
    background: url('https://www.transparenttextures.com/patterns/arabesque.png');
    background-color: rgba(212, 175, 55, 0.05); /* Very subtle gold tint */
    border-radius: 50%;
    border: 5px dashed rgba(212, 175, 55, 0.1);
    z-index: 1;
    animation: slowSpin 60s linear infinite;
    mask-image: radial-gradient(circle, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 70%);
}

@keyframes slowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   3. Golden Fireflies / Hot Food Sparks
   ========================================== */
.fireflies {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}
.firefly {
    position: absolute;
    bottom: -20px;
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 10px #D4AF37, 0 0 20px #D4AF37;
    opacity: 0;
    animation: floatUp 8s ease-in-infinite;
}
/* Randomizing fireflies */
.firefly:nth-child(1) { left: 15%; animation-duration: 7s; animation-delay: 1s; }
.firefly:nth-child(2) { left: 35%; animation-duration: 9s; animation-delay: 3s; }
.firefly:nth-child(3) { left: 55%; animation-duration: 6s; animation-delay: 0s; width: 4px; height: 4px; }
.firefly:nth-child(4) { left: 75%; animation-duration: 10s; animation-delay: 4s; }
.firefly:nth-child(5) { left: 85%; animation-duration: 8s; animation-delay: 2s; width: 8px; height: 8px; }
.firefly:nth-child(6) { left: 25%; animation-duration: 11s; animation-delay: 5s; }

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-400px) scale(0.5); opacity: 0; }
}

/* ==========================================
   4. Footer Content Grid
   ========================================== */
.magic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.magic-col { flex: 1; }
.text-left { text-align: left; }
.text-center { text-align: center; flex: 1.5; }
.text-right { text-align: right; }

.magic-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.magic-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 15px;
}

.magic-highlight {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 10px;
}

.magic-link-line {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 2px;
    transition: 0.3s;
}
.magic-link-line:hover { color: #D4AF37; letter-spacing: 1px; }

/* Massive Brand Center */
.footer-crown {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(35%) saturate(1067%) hue-rotate(345deg) brightness(87%) contrast(85%);
}

.magic-brand-text {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(4rem, 6vw, 6rem);
    color: #D4AF37;
    margin: 0;
    line-height: 0.9;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.magic-tagline {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #777;
    margin-top: 10px;
}

/* Floating Social Orbs */
.orb-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}
.social-orb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s ease;
}
.social-orb:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   5. Do Digitals Bottom Bar
   ========================================== */
.magic-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    padding: 20px 0;
    background: #050505;
    position: relative;
    z-index: 10;
}
.bottom-flex {
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    color: #666;
    font-size: 0.95rem;
}
.glow-text {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: 0.3s;
}
.glow-text:hover { color: #fff; text-shadow: 0 0 15px #fff; }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .footer-overlap-card { display:none }
    .magic-container { flex-direction: column; gap: 0px; text-align: center; }
    .text-left, .text-right { text-align: center; }
    .spinning-mandala-bg { width: 500px; height: 500px; margin-left: -250px; bottom: -150px; }
	.magic-footer {
    padding-top: 10px;
}
	.resto-magic-footer-wrap {
    margin-top: 40px;
}
}


/* ==========================================================================
   Mobile Menu Toggle & Glass Dropdown CSS
   ========================================================================== */

@media (max-width: 991px) {
    
    /* 1. Hide the menu by default and set up the Glass Dropdown style */
    .main-navigation {
        position: absolute;
        top: calc(100% + 15px); /* Header ke thoda neeche */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95); /* Glassmorphism background */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 20px;
        padding: 20px 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        
        /* Hidden state */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* 2. Show the menu when JS adds the 'active' class */
    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block; /* Agar pichli CSS me display: none tha, toh isse override ho jayega */
    }

    /* Mobile menu list styling */
    .main-navigation ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center; /* Center text on mobile */
    }

    .main-navigation a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }

    /* 3. Hamburger to 'X' Animation */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 100;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: var(--primary-red, #A31B21); /* Theme color */
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Jab toggle active ho jaye (X icon ban jaye) */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0; /* Beech wali line gayab */
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* ==========================================================================
   About Us Page - Premium Cinematic Layout (Do Digitals)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Great+Vibes&family=Jost:wght@300;400;500;600&display=swap');

.about-premium-wrapper {
    font-family: 'Jost', sans-serif;
    color: #333;
    background-color: #FDFBF7; /* Soft Heritage Cream */
}

.about-main-container {
    max-width: 1200px;
    margin: -80px auto 0; /* Pulls content up over the hero */
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

/* 1. HERO SECTION */
.about-hero-cinematic {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: #fff;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.about-hero-subtitle {
    font-size: 1.5rem;
    color: #D4AF37; /* Premium Gold */
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 10px;
}
.gold-divider-center {
    width: 80px;
    height: 2px;
    background: #D4AF37;
    margin: 10px auto;
}

/* 2. STORY SECTION */
.story-section {
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.heritage-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #A31B21; /* Rich Maroon/Red */
    margin-bottom: 20px;
    line-height: 1.2;
}
.lead-vintage-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #444;
    border-left: 4px solid #D4AF37;
    padding-left: 20px;
    margin-bottom: 20px;
}
.story-text-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}
.vintage-image-frame {
    position: relative;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.vintage-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.2); /* Vintage feel */
}
.est-badge-corner {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #A31B21;
    color: #D4AF37;
    padding: 15px 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(163, 27, 33, 0.4);
}

/* 3. VISION & MISSION CARDS */
.v-m-section { margin-bottom: 80px; }
.v-m-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.v-m-card {
    background: linear-gradient(135deg, #fff 0%, #fdfdfd 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 5px solid #A31B21;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s;
}
.v-m-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }
.v-m-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: #333; margin-bottom: 15px; }
.v-m-card p { font-size: 1.1rem; color: #666; line-height: 1.7; }

/* 4. SPECIAL FEATURES GRID */
.why-special-section { margin-bottom: 80px; }
.special-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.special-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #D4AF37;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}
.special-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #A31B21;
    margin: 0 0 10px 0;
}
.special-box p { margin: 0; color: #555; font-size: 1.05rem; }

/* 5. DARK PHILOSOPHY SECTION */
.dark-philosophy-section {
    background: #1a0609;
    background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
    color: #fff;
    padding: 80px 60px;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}
.dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.gold-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 15px;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.5);
    padding-bottom: 10px;
}
.dark-col p { font-size: 1.1rem; color: #ccc; line-height: 1.8; margin-bottom: 20px; }
.gold-bullet-list { list-style: none; padding: 0; }
.gold-bullet-list li {
    font-size: 1.1rem; color: #ddd; margin-bottom: 10px; padding-left: 25px; position: relative;
}
.gold-bullet-list li::before {
    content: '❖'; color: #D4AF37; position: absolute; left: 0;
}

/* 6. THANK YOU CONCLUSION */
.thank-you-section { margin-bottom: 100px; }
.thank-you-box {
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    border: 1px solid #eee;
}
.thank-you-box p { font-size: 1.15rem; color: #555; max-width: 800px; margin: 0 auto 15px; }
.signature-wrap { margin-top: 40px; }
.cursive-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #D4AF37;
    margin: 0;
    line-height: 1;
}
.signature-line {
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A31B21 !important;
    font-weight: 600;
    margin-top: 10px !important;
    font-size: 0.9rem !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .story-grid, .v-m-grid, .dark-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-main-container { margin-top: -40px; }
    .story-section { padding: 40px 20px; }
    .dark-philosophy-section { padding: 50px 30px; }
    .est-badge-corner { bottom: 10px; right: 10px; font-size: 1.2rem; }
}



/* --- Royal Heritage Blog Layout --- */
:root {
    --primary: #8B0000; /* Deep Maroon */
    --gold: #C5A059;    /* Heritage Gold */
    --cream: #FAF9F6;   /* Soft Cream */
    --text-dark: #2c2c2c;
    --text-light: #666;
    --font-serif: 'Playfair Display', serif;
}

.bg-cream-texture { background-color: var(--cream); }
.container-large { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero Adjustments */
.blog-hero { padding: 120px 0; border-bottom: 8px solid var(--primary); }
.gold-divider-top, .gold-divider-bottom { color: var(--gold); font-size: 24px; margin: 15px 0; }
.page-title { font-family: var(--font-serif); font-size: clamp(3rem, 5vw, 4.5rem); margin: 0; font-weight: 700; text-transform: capitalize; }
.page-subtitle { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; margin-top: 10px; }

/* 2-Column Editorial Grid */
.heritage-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Exactly 2 large columns for a premium look */
    gap: 25px;
    margin-top: 60px;
}

/* Card Styling */
.heritage-card {
    background: #fff;
    border: 1px solid #EBE5D9;
    padding: 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.heritage-card:hover {
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* Image & Date Badge */
.heritage-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid #eee;
}
.heritage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.heritage-card:hover .heritage-card-image img {
    transform: scale(1.05);
}

.royal-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--gold);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2;
    font-family: var(--font-serif);
}
.royal-date-badge .day { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.royal-date-badge .month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* Content Styling */
.heritage-card-content {
    padding: 30px 10px 10px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta { margin-bottom: 15px; }
.card-category {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.card-title a { color: var(--text-dark); text-decoration: none; transition: color 0.3s; }
.card-title a:hover { color: var(--primary); }

.card-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Read More Link */
.btn-read-royal {
    align-self: flex-start;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.btn-read-royal .arrow { margin-left: 10px; transition: transform 0.3s; }
.btn-read-royal:hover { color: var(--primary); }
.btn-read-royal:hover .arrow { transform: translateX(8px); }

/* Elegant Pagination */
.heritage-pagination { margin-top: 80px; text-align: center; border-top: 1px solid #EBE5D9; padding-top: 40px; }
.heritage-pagination .nav-links { display: inline-flex; gap: 10px; align-items: center; justify-content: center; }
.heritage-pagination .page-numbers {
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: bold;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.heritage-pagination .page-numbers:hover, 
.heritage-pagination .current {
    color: var(--primary);
    border: 1px solid var(--gold);
    background: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .heritage-blog-grid { grid-template-columns: 1fr; }
    .page-title { font-size: 2.5rem; }
    .card-title { font-size: 1.6rem; }
    .heritage-card { padding: 15px; }
}


/* --- Single Post Royal Design --- */
.container-reading {
    max-width: 850px; /* Narrow width is crucial for good reading typography */
    margin: 0 auto;
    padding: 0 20px;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
    border: 1px solid #EBE5D9;
    margin-top: -80px; /* Pulls the content slightly over the hero image */
    position: relative;
    z-index: 10;
}

/* Hero Header */
.single-hero-header {
    position: relative;
    padding: 180px 20px 140px 20px; /* Extra bottom padding for the pull-up effect */
}
.single-meta-category a {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}
.gold-star { color: #fff; margin: 0 8px; font-size: 0.8rem; }
.single-post-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin: 20px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.single-meta-details { font-size: 1.1rem; font-family: var(--font-serif); font-style: italic; }
.meta-divider { margin: 0 15px; opacity: 0.5; }

/* The Reading Content Styling */
.single-content-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
}
.single-content-body p { margin-bottom: 25px; }

/* Editorial Drop Cap - First paragraph only */
.single-content-body > p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    float: left;
    color: var(--primary);
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 5px;
    font-weight: bold;
}

/* Royal Headings inside content */
.single-content-body h2, .single-content-body h3 {
    font-family: var(--font-serif);
    color: var(--primary);
    margin: 40px 0 20px 0;
    line-height: 1.3;
}
.single-content-body h2 { font-size: 2.2rem; }

/* Stylish Blockquotes */
.single-content-body blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: var(--cream);
    border-left: 5px solid var(--gold);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary);
    border-radius: 0 8px 8px 0;
}

/* Images inside post */
.single-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Tags */
.single-tags { margin-top: 40px; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.tag-label { font-weight: bold; color: var(--text-dark); }
.tag-links a {
    background: #f4f4f4;
    color: #555;
    padding: 6px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}
.tag-links a:hover { background: var(--primary); color: #fff; }

/* Author Box */
.royal-author-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #EBE5D9;
    margin-bottom: 50px;
}
.author-avatar img { border-radius: 50%; border: 3px solid var(--gold); padding: 3px; background: #fff; }
.author-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin: 0 0 5px 0; }
.author-name { font-family: var(--font-serif); font-size: 1.8rem; margin: 0 0 10px 0; color: var(--primary); }
.author-bio { margin: 0; color: #555; line-height: 1.6; }

/* Bottom CTA */
.single-post-cta {
    background: #fff;
    border: 2px dashed var(--gold);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}
.cta-title { font-family: var(--font-serif); font-size: 2rem; color: var(--primary); margin-bottom: 10px; }
.single-post-cta p { color: #666; margin-bottom: 20px; }

/* Next/Prev Navigation */
.royal-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.nav-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #999; display: block; margin-bottom: 5px; }
.nav-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--primary); font-weight: bold; transition: color 0.3s; }
.royal-post-navigation a { text-decoration: none; }
.royal-post-navigation a:hover .nav-title { color: var(--gold); }
.text-right { text-align: right; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .container-reading { padding: 30px 20px; margin-top: -40px; }
    .royal-author-box { flex-direction: column; text-align: center; }
    .single-content-body > p:first-of-type::first-letter { font-size: 3.5rem; }
    .royal-post-navigation { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .text-right { text-align: center; }
}

/* --- Royal Share Buttons CSS --- */

.royal-share-section {
    margin: 40px 0;
    padding: 30px;
    background: #fdfdfd;
    border: 1px solid #EBE5D9;
    border-radius: 8px;
}

.share-title {
    font-family: var(--font-serif);
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 20px;
    font-style: italic;
}

.share-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.share-btn .icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Specific Brand Colors with Premium Look */
.share-wa { background-color: #25D366; }
.share-wa:hover { background-color: #128C7E; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3); }

.share-fb { background-color: #1877F2; }
.share-fb:hover { background-color: #145DBF; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3); }

.share-tw { background-color: #1DA1F2; } /* Note: Using classic Twitter Blue for better contrast */
.share-tw:hover { background-color: #0c85d0; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(29, 161, 242, 0.3); }

.share-in { background-color: #0A66C2; }
.share-in:hover { background-color: #074a8f; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(10, 102, 194, 0.3); }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .share-buttons {
        gap: 10px;
    }
    .share-btn {
        width: calc(50% - 5px); /* Two buttons per row on mobile */
        justify-content: center;
    }
}

/* --- Single Post Main & Sidebar Layout --- */

/* Wrapper and Container updates */
.container-large {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-layout-wrapper {
    display: flex;
    align-items: flex-start; /* Important for sticky sidebar */
    gap: 40px;
    margin-top: -80px; /* Hero image ke thoda upar aayega dono column */
    position: relative;
    z-index: 10;
}

/* Left Column - Main Content */
.main-content-area {
    flex: 1; /* Takes up remaining space (approx 70%) */
    min-width: 0; /* Prevents flex blowout on large content */
}

/* Redefining container-reading to fill the left column */
.container-reading {
    max-width: 100%;
    margin: 0;
    padding: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border: 1px solid #EBE5D9;
}

/* Right Column - Sidebar */
.sidebar-area {
    width: 350px; /* Fixed width for sidebar (approx 30%) */
    flex-shrink: 0;
}

.sticky-sidebar-inner {
    position: sticky;
    top: 100px; /* Header ke niche kitni jagah chodni hai jab scroll ho */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sidebar Widgets Design */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
    border: 1px solid #EBE5D9;
}

.widget-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary);
    border-bottom: 2px solid #EBE5D9;
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Share Buttons Vertical List */
.share-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    transition: 0.3s;
}
.share-wa { background-color: #25D366; }
.share-fb { background-color: #1877F2; }
.share-tw { background-color: #1DA1F2; }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* Booking CTA Widget */
.widget-cta {
    background: var(--cream);
    border: 2px solid var(--gold);
    position: relative;
    padding-top: 40px;
}
.cta-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
.widget-title-cta {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 0 10px 0;
}
.full-width { display: block; width: 100%; box-sizing: border-box; }
.btn-solid-primary {
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-solid-primary:hover { background: var(--gold); color: #000; }

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recent-posts-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ccc;
}
.recent-posts-list li:last-child { border-bottom: none; padding-bottom: 0; }
.recent-posts-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: 0.3s;
    display: block;
}
.recent-posts-list a:hover { color: var(--primary); padding-left: 5px; }

/* Mobile View Adjustments */
@media (max-width: 991px) {
    .single-layout-wrapper {
        flex-direction: column; /* Mobile par sidebar niche aa jayega */
        margin-top: -40px;
    }
    .sidebar-area {
        width: 100%; /* Full width on mobile */
    }
    .sticky-sidebar-inner {
        position: relative;
        top: 0;
    }
    .container-reading {
        padding: 30px 20px;
    }
}
/* --- Right Column - Sticky Sidebar Fix --- */
.sidebar-area {
    width: 350px; 
    flex-shrink: 0;
    /* THE FIX: Sticky directly applied to the column */
    position: sticky;
    top: 100px; /* Header ke kitna niche rukna hai */
    height: fit-content; /* Ye sticky ko batata hai ki uski height kitni hai */
}

/* Inner wrapper doesn't need sticky anymore, just gaps */
.sticky-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Make sure wrapper allows scrolling */
.single-layout-wrapper {
    display: flex;
    align-items: flex-start; /* Important for flex child sticky */
    gap: 40px;
    margin-top: -80px; 
    position: relative;
    z-index: 10;
}


/* --- Royal Heritage Menu Grid --- */
.royal-menu-page .bg-cream-texture { background-color: var(--cream); }
.menu-helper-text { font-family: var(--font-serif); font-size: 1.2rem; color: var(--primary); font-style: italic; }

.heritage-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.heritage-menu-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #EBE5D9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    cursor: pointer;
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.heritage-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.08);
    border-color: var(--gold);
}

.menu-card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.414; /* Standard menu page ratio */
    overflow: hidden;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.menu-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.heritage-menu-card:hover .menu-card-inner img {
    transform: scale(1.05);
}

.zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 0, 0, 0.7); /* Primary Maroon semi-transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.heritage-menu-card:hover .zoom-overlay {
    opacity: 1;
}

.zoom-text {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-serif);
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary);
    margin: 20px 0 10px 0;
}

.menu-card-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
    transition: width 0.3s ease;
}

.heritage-menu-card:hover .menu-card-divider {
    width: 80px;
}

/* Lightbox Styling */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    padding: 50px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--gold);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover { color: #fff; transform: scale(1.1); }
@keyframes zoomIn { from {transform: scale(0.8); opacity: 0;} to {transform: scale(1); opacity: 1;} }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .heritage-menu-grid { grid-template-columns: repeat(1, 1fr); gap: 30px; }
    .lightbox-close { top: 10px; right: 20px; font-size: 40px; }
}

/* --- Luxury Contact Us Page --- */

.container-large {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxury-contact-wrapper {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #EBE5D9;
    overflow: hidden; /* Keeps map inside rounded corners */
    margin-top: -60px; /* Pulls the box slightly over the hero section */
    position: relative;
    z-index: 10;
}

/* Left Side: Info Area */
.contact-info-side {
    flex: 1;
    padding: 60px 50px;
    background: #fff;
}

.welcome-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.welcome-heading span {
    color: var(--primary);
}

.welcome-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    font-family: var(--font-serif);
    margin-bottom: 25px;
}

.short-gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 40px;
}

/* Info List Style */
.info-list-group {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    font-size: 1.8rem;
    background: var(--cream);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #EBE5D9;
}

.text-box h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 0 8px 0;
}

.text-box a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    margin-bottom: 5px;
    transition: 0.3s;
}

.text-box a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.timing-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* Social Area */
.social-connect-area h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.social-circle-links {
    display: flex;
    gap: 15px;
}

.sc-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sc-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sc-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.sc-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.sc-ig:hover { background: #E1306C; color: #fff; border-color: #E1306C; }
.sc-yt:hover { background: #FF0000; color: #fff; border-color: #FF0000; }

/* Right Side: Map Area */
.contact-map-side {
    flex: 1;
    background: var(--cream);
    padding: 30px;
}

.map-golden-frame {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 3px solid var(--gold);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    font-family: var(--font-serif);
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--gold);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .luxury-contact-wrapper {
        flex-direction: column;
        margin-top: -30px;
    }
    .contact-info-side {
        padding: 40px 20px;
    }
    .contact-map-side {
        padding: 0; /* Full width map on mobile */
    }
    .map-golden-frame {
        border: none;
        border-top: 3px solid var(--gold);
        border-radius: 0;
        min-height: 400px;
    }
}

/* --- Modern We Serve Page --- */

.mb-60 { margin-bottom: 60px; }
.mt-50 { margin-top: 50px; }

.modern-sub { font-family: var(--font-serif); font-size: 1.2rem; color: var(--text-dark); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.modern-heading { font-family: var(--font-serif); font-size: 3rem; color: var(--primary); margin: 0; line-height: 1.2; }

/* 1. Staggered Categories */
.staggered-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px; /* Space for down-shifted items */
}

.staggered-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    background: #fff;
    border: 1px solid #EBE5D9;
}

.down-shift { transform: translateY(40px); } /* This creates the zigzag look */

.staggered-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 45px rgba(139,0,0,0.1); border-color: var(--gold); z-index: 2; }
.staggered-item.down-shift:hover { transform: translateY(30px) scale(1.02); }

.s-img-box { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.s-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.staggered-item:hover .s-img-box img { transform: scale(1.08); }

.s-title-box {
    background: #fff;
    padding: 20px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    position: relative;
    border-top: 3px solid var(--gold);
}

/* 2. App-Like Snap Slider */
.snap-slider-wrapper {
    width: 100%;
    overflow: hidden; /* Hide scrollbar completely */
}

.snap-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* The Magic property */
    scroll-behavior: smooth;
    padding: 20px 50px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.snap-track::-webkit-scrollbar { display: none; /* Chrome/Safari */ }

.snap-slide {
    flex: 0 0 auto;
    width: 80vw; /* Shows part of next slide */
    max-width: 600px;
    scroll-snap-align: center; /* Snaps to center */
}

.snap-image-container {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1.4;
    transition: 0.3s;
}

.snap-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ensures menu isn't cropped */
}

/* Phone Pill */
.modern-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--gold);
}
.modern-phone-pill span { color: #666; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.modern-phone-pill a { color: var(--primary); font-size: 1.4rem; font-weight: bold; text-decoration: none; }

/* 3. Overlapping Layout */
.overlap-layout-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.overlap-text-box {
    flex: 0 0 45%;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    z-index: 5;
    margin-right: -80px; /* Pulls text box over images */
    border-left: 5px solid var(--primary);
}

.modern-feature { display: flex; gap: 20px; margin-bottom: 30px; }
.mf-icon { font-size: 2rem; }
.mf-info h4 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-dark); margin: 0 0 5px 0; }
.mf-info p { margin: 0; color: #666; font-size: 0.95rem; }

.mf-divider { border: 0; height: 1px; background: #eee; margin: 30px 0; }
.mf-call { font-size: 1.4rem; font-weight: bold; margin: 0; }
.mf-call a { color: var(--primary); text-decoration: none; }

.overlap-image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 1;
}

.o-img img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.o-img:nth-child(even) { transform: translateY(30px); } /* Stagger the images too */

/* 4. Sleek Highlights (Pills) */
.sleek-highlights-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sleek-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fdfdfd;
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid #EBE5D9;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.sleek-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(139,0,0,0.15); }
.sp-icon { font-size: 1.3rem; }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .staggered-cat-grid { grid-template-columns: repeat(2, 1fr); padding-bottom: 20px; }
    .down-shift { transform: translateY(0); } /* Remove shift on mobile */
    .staggered-item:hover { transform: translateY(-5px); }
    
    .overlap-layout-container { flex-direction: column; }
    .overlap-text-box { margin-right: 0; margin-bottom: -40px; } /* Overlap bottom instead of right */
    .overlap-image-grid { padding: 0 20px; }
    .o-img:nth-child(even) { transform: translateY(0); }
    
    .snap-slide { width: 90vw; }
}


a.skip-link.screen-reader-text {
    display: none;
}