/* ==========================================================================
   Tambde Pandhre Restaurant - Stylesheet
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    --primary-color: #E05A1F;      /* Saffron Orange */
    --secondary-color: #580F18;    /* Dark Maroon */
    --accent-color: #D4AF37;       /* Golden */
    --bg-color: #FAF8F5;           /* Warm White */
    --text-color: #2C1E1A;         /* Dark Brown */
    --text-muted: #5A4E4A;
    --white: #FFFFFF;
    
    /* Gradients */
    --btn-gradient: linear-gradient(135deg, #E05A1F 0%, #F19E38 100%);
    --maroon-gradient: linear-gradient(135deg, #580F18 0%, #30060B 100%);
    --saffron-gradient: linear-gradient(135deg, #E05A1F 0%, #AE3606 100%);
    
    /* Layout Variables */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows & Glassmorphism */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(44, 30, 26, 0.08), 0 4px 6px -2px rgba(44, 30, 26, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(88, 15, 24, 0.12), 0 10px 10px -5px rgba(88, 15, 24, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(88, 15, 24, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Helper Utilities & Common Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.golden-text {
    color: var(--accent-color);
}

.red-text {
    color: #C0392B;
}

.green-text {
    color: #27AE60;
}

.color-gray {
    color: #BDC3C7;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 50px;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header .section-tag::before {
    display: none;
}
.section-header .section-tag {
    padding-left: 0;
}

/* SEO Hidden Elements */
.breadcrumb-nav-hidden {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3b060d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #c49f2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gradient {
    background: var(--btn-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(224, 90, 31, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 6px 20px rgba(224, 90, 31, 0.45);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* 3. Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
    background-color: rgba(88, 15, 24, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.header-container {
    max-width: 1250px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-accent {
    color: var(--accent-color);
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* 4. Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding-top: calc(var(--header-height) + 40px);
    position: relative;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 15, 24, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.highlight-text {
    background: linear-gradient(120deg, #F19E38, #E05A1F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero-actions-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bg-color);
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 1;
}

/* 5. Trust Badges Section */
.trust-section {
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.trust-card {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary-color);
    text-align: center;
    transition: var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 6. About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.badge-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--maroon-gradient);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.badge-years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.badge-desc {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-description {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.heritage-features {
    display: grid;
    gap: 20px;
    margin: 35px 0;
}

.h-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.h-feature i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.h-feature h4 {
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.h-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.chef-signature {
    display: flex;
    align-items: center;
}

.chef-info {
    display: flex;
    flex-direction: column;
}

.chef-info strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--secondary-color);
}

.chef-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* 7. Special Maharaja Thali Section */
.special-thali-section {
    background-color: #580f1807; /* Super light maroon */
}

.thali-highlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.thali-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(88, 15, 24, 0.05);
}

.thali-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(224, 90, 31, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.thali-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.thali-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.thali-price .original-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.discount-badge {
    background-color: #27AE60;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.thali-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.thali-includes-list h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 8px;
}

.thali-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.thali-item-include {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.bullet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: var(--accent-color);
    margin-top: 6px;
    flex-shrink: 0;
}

.thali-cta-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thali-image-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.thali-image-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.thali-image-card:hover img {
    transform: scale(1.04);
}

.card-features {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: var(--border-radius-md);
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-md);
}

.card-features span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 8. Menu Section with Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-btn {
    background-color: var(--white);
    color: var(--text-muted);
    border: 1px solid rgba(88, 15, 24, 0.1);
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-item-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.item-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.item-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.menu-item-card:hover .item-img-container img {
    transform: scale(1.08);
}

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.item-badge.bestseller {
    background-color: var(--primary-color);
}

.item-badge.premium {
    background-color: var(--secondary-color);
    border: 1px solid var(--accent-color);
}

.item-badge.new {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.item-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.item-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.item-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.spicy-rating {
    display: flex;
    gap: 3px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.btn-menu-order {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27AE60;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.btn-menu-order:hover {
    background-color: #27AE60;
    color: var(--white);
}

.menu-footer-cta {
    text-align: center;
    margin-top: 60px;
    background: var(--maroon-gradient);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--accent-color);
}

.menu-footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* 9. Chef's Recommendation Section (Parallax visual divider) */
.chef-recommend-section {
    background-image: linear-gradient(rgba(88, 15, 24, 0.8), rgba(48, 6, 11, 0.8)), url('assets/interior.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    padding: 120px 0;
}

.chef-recommend-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.recommend-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.chef-recommend-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.chef-recommend-wrapper p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* 10. Gallery Grid Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(88, 15, 24, 0.9) 0%, rgba(88, 15, 24, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

.gallery-overlay h4 {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 11. Testimonials Carousel Section */
.testimonials-section {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.google-badge-container {
    margin-top: 10px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-color);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
}

.google-icon {
    width: 24px;
    height: 24px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.8rem;
}

.badge-text strong {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.badge-text i {
    color: var(--accent-color);
}

.testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(88,15,24,0.05);
}

.testimonial-slide .stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid var(--accent-color);
}

.reviewer-info h4 {
    font-size: 1.05rem;
    color: var(--secondary-color);
    text-align: left;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    text-align: left;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    border: 1px solid rgba(88,15,24,0.1);
    background-color: var(--white);
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* 12. Reservation Form Section */
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.res-amenities {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

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

.amenity-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.amenity-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.amenity-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.glass-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(88,15,24,0.05);
}

.glass-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--bg-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 90, 31, 0.15);
}

/* 13. FAQ Section */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
}

.faq-trigger {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
    max-height: 1000px;
    padding-bottom: 25px;
    border-top-color: rgba(0,0,0,0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 14. Contact Section with Map */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: stretch;
}

.contact-details-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: rgba(88, 15, 24, 0.05);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.info-card p, .info-card a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-card a:hover {
    color: var(--primary-color);
}

.contact-map-side {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* 15. Footer */
.site-footer {
    background-color: #3b060d; /* Very dark maroon */
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-widget h4 {
    font-size: 1.15rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.widget-about p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.widget-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.widget-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.widget-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-hours li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.widget-hours span {
    font-weight: 600;
    color: var(--accent-color);
}

.widget-cta p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer-legal-links a:hover {
    color: var(--accent-color);
}

/* 16. Floating Elements */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: #27AE60;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    z-index: 999;
    animation: pulseWhatsApp 2s infinite;
    cursor: pointer;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #2c3e50;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 998;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(88, 15, 24, 0.1);
}

.sticky-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.sticky-action-btn.call-action {
    background-color: var(--secondary-color);
    color: var(--white);
}

.sticky-action-btn.whatsapp-action {
    background-color: #27AE60;
    color: var(--white);
}

/* 17. Popup Modals */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 30, 26, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 45px 35px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-top: 6px solid var(--primary-color);
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
}

.popup-close-btn:hover {
    color: var(--secondary-color);
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(224,90,31,0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.popup-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.popup-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-code {
    background-color: var(--bg-color);
    border: 2px dashed rgba(224, 90, 31, 0.4);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.promo-code strong {
    color: var(--primary-color);
    letter-spacing: 1px;
}

.popup-terms {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Success Card */
.popup-card.success-card {
    border-top-color: #27AE60;
}

.success-icon {
    font-size: 4rem;
    color: #27AE60;
    margin-bottom: 20px;
}

.success-instructions {
    margin-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.success-instructions p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Legal Cards */
.popup-card.legal-card {
    max-width: 700px;
    text-align: left;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.legal-content {
    overflow-y: auto;
    padding-right: 10px;
    margin-top: 20px;
}

.legal-content h4 {
    margin: 20px 0 10px 0;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 0.85rem;
}

/* 18. Animations and Scroll-linked Transitions */
.scroll-anim {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-anim.fade-in-up {
    transform: translateY(40px);
}

.scroll-anim.slide-in-left {
    transform: translateX(-40px);
}

.scroll-anim.slide-in-right {
    transform: translateX(40px);
}

.scroll-anim.scale-up {
    transform: scale(0.9);
}

.scroll-anim.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

@keyframes pulseWhatsApp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* 19. Responsive Media Queries */

/* Laptop / Tablets Large */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-grid, .thali-highlight-grid, .reservation-grid, .contact-grid {
        gap: 40px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Tablets Medium */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--secondary-color);
        transition: var(--transition-normal);
        padding: 40px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-cta-btn {
        display: none !important; /* Hide CTA button on mobile header to save space */
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-card {
        margin-bottom: 15px;
    }
    
    .about-grid, .thali-highlight-grid, .reservation-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-side {
        order: 2;
    }
    
    .about-text-side {
        order: 1;
    }
    
    .about-img {
        height: 380px;
    }
    
    .thali-content {
        padding: 30px;
    }
    
    .thali-items-grid {
        grid-template-columns: 1fr;
    }
    
    .thali-image-card img {
        height: 350px;
    }
    
    .menu-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .res-form-side {
        order: 1;
    }
    
    .res-text-side {
        order: 2;
    }
    
    .glass-form-card {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-map-side {
        height: 300px;
        min-height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    body {
        padding-bottom: 65px; /* Leave space for bottom sticky bar */
    }
    
    .mobile-sticky-bar {
        display: grid;
    }
    
    .floating-whatsapp-btn {
        bottom: 80px; /* Push floating button higher on mobile to clear the sticky bar */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-actions-container {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .thali-cta-box {
        flex-direction: column;
    }
}
