/* ==========================================
   MANVAR RASOI - Restaurant Website Styles
   Color Palette based on Logo:
   Primary: #E5A832 (Golden Yellow)
   Secondary: #8B1A1A (Deep Maroon)
   Accent: #D4A84B (Light Gold)
   Dark: #1A1A1A
   Light: #FFF9F0 (Cream).footer-about p
========================================== */
.menu-item{
	    transition: 0.3s;
}
.menu-item-header span{
	color: black;
}
.nav-menu li:nth-child(5) {
    display: none;
}
.btn-slide {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 500;
    color: #ff7a18; /* theme color */
    border: 2px solid #ff7a18;
    border-radius: 30px 10px 30px 10px; /* elegant curve */
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

/* sliding fill */
.btn-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #ff7a18, #ffb347);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

/* hover */
.btn-slide:hover::before {
    transform: translateX(0);
}

.btn-slide:hover {
    color: #111; /* clean readable text */
    transform: translateY(-3px);
    border-color: #ffb347;
}

/* click */
.btn-slide:active {
    transform: scale(0.96);
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2F1B12;
    --primary-dark: #C4911E;
    --secondary: #8B1A1A;
    --secondary-light: #A82828;
    --accent: #D4A84B;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --light: #FFF9F0;
    --white: #FFFFFF;
    --gray: #666666;
    --gray-light: #F5F5F5;
    --border: #E0E0E0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader img {
    width: 150px;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 168, 50, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-small:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    color: #2F1B12;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: #2B2B2B;
    font-size: 16px;
}

/* ==========================================
   HEADER STYLES
========================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

#header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

#header.scrolled .top-bar {
    display: none;
}

#header.scrolled .main-nav {
    padding: 10px 0;
}

#header.scrolled .nav-menu > li > a {
    color: var(--dark);
}

.top-bar {
           background: #2f1b12;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
    color: var(--white);
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
  color: #ffffff;
}

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

.social-icons a {
    color: var(--white);
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--primary);
}

.main-nav {
    padding: 15px 0;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 75px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu > li > a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
   background: #ff7a18;
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mega Menu */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.has-mega-menu:hover > a i {
    transform: rotate(180deg);
}

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

.mega-menu-column h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-menu-column h4 i {
    color: var(--primary);
}

.mega-menu-column ul li {
    margin-bottom: 10px;
}

.mega-menu-column ul li a {
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-column ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.mega-menu-column ul li a:hover::before {
    opacity: 1;
}

.mega-menu-featured {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
}

.featured-dish {
    position: relative;
}

.featured-dish img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.featured-content {
    padding: 15px;
}

.featured-content .badge {
    display: inline-block;
    background: var(--primary);
    color:white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.featured-content h5 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

.featured-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

#header.scrolled .mobile-toggle span {
    background: var(--dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    transition: var(--transition);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.mobile-menu-header img {
    height: 40px;
}

.close-menu {
    background: var(--light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-weight: 500;
    color: var(--dark);
}

.mobile-dropdown.active > a i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    padding-bottom: 10px;
}

.mobile-submenu li {
    border: none;
}

.mobile-submenu li a {
    display: block;
    padding: 10px 0;
    color: var(--gray);
    font-size: 14px;
}

.mobile-cta {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    color: var(--white);
}

.slide-content .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.slide-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.slide-content h1 span {
    color: var(--primary);
}

.slide-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 35px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-btns {
	padding-bottom: 30px;
	    justify-content: center;
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-controls {
 
    bottom: 50px;
    left: 50%;
    
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.prev-slide,
.next-slide {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==========================================
   FEATURES SECTION
========================================== */
.features {
    padding: 80px 0;
    background: var(--white);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--dark);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ==========================================
   ABOUT SECTION
========================================== */
.about {
    padding: 100px 0;
 
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    color: var(--dark);
    text-align: center;
    font-weight: 500;
}

.about-content .section-subtitle {
    display: block;
}

.about-text {
    color: white;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

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

.about-feature i {
    color: var(--primary);
    font-size: 18px;
}

.about-feature span {
	color: white;
    font-weight: 500;
    font-size: 14px;
}

/* ==========================================
   MENU SECTION
========================================== */
.menu-section {
    padding: 100px 0;

}

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

.menu-tab {
    padding: 12px 30px;
    background: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary);
    color:white;
}

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

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item.hidden {
    display: none;
}

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

.menu-item-img {
    position: relative;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.bestseller {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.menu-item-content {
    padding: 25px;
}

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

.menu-item-header h4 {
    font-size: 20px;
    color: var(--dark);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.menu-item-content > p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
}

.tag.veg {
    background: #E8F5E9;
    color: #2E7D32;
}

.tag.non-veg {
    background: #FFEBEE;
    color: #C62828;
}

.rating {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.rating i {
    margin-right: 3px;
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================
   BOOK TABLE SECTION
========================================== */
.book-table {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.book-table-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover;
}

.book-table-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(32 32 32 / 74%) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.book-table .container {
    position: relative;
    z-index: 2;
	margin-top:50px;
}

.book-table-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.book-table-content {
    color: var(--white);
}
#book-table .section-title{
	    color: #ff7a18 !important;
}

.book-table-content .section-subtitle {
   color: #ff7a18;
}

.book-table-content .section-title {
    color: var(--white);
}

.book-table-content > p {
    opacity: 0.9;
    margin-bottom: 40px;
}

.book-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.book-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-info-item i {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
        color: #ff7a18;
}

.book-info-item h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-info-item p {
    opacity: 0.8;
    font-size: 15px;
}

.book-table-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.book-table-form h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.book-table-form .btn-primary {
    margin-top: 10px;
}

/* ==========================================
   GALLERY SECTION
========================================== */
.gallery {
    padding: 100px 0;
   
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(229, 168, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 32px;
    color: var(--dark);
}
body{
 background: #E8DCC0;
}
/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonials {
    padding: 100px 0;

}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
/*     background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow); */
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary);
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-author h5 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 16px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ==========================================
   CTA SECTION
========================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=80') center/cover fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
max-width: 623px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==========================================
   CONTACT SECTION
========================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title {
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--primary);
}

.contact-item h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: #E8DCC0;
    color: #2f1b12;
}

.footer-top {
    padding: 80px 0 50px;
}

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

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

.footer-about p {
    color: #2f1b12;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgb(0 0 0 / 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #2f1b12;
    transition: var(--transition);
}

.footer-social a:hover {
    background: #ffbf47;
    color:white;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffa10a;
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
        color: #2f1b12;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ffa10a;
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #2f1b12;
    font-size: 14px;
}

.footer-contact li i {
    color: #ffbf47;
    margin-top: 4px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
        background: rgb(0 0 0 / 80%);
    color: #2f1b12;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #ffbf47;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent);
}

.payment-methods {
    margin-top: 25px;
}

.payment-methods span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    padding: 25px 0;
      border-top: 1px solid var(--primary);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #2f1b12;
}

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

.footer-links li a {
    font-size: 14px;
   color: var(--primary);
}

.footer-links li a:hover {
    color: var(--primary);
}

/* ==========================================
   BACK TO TOP
========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==========================================
   LIGHTBOX
========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
}

/* ==========================================
   MODAL
========================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.modal-icon i {
    font-size: 40px;
    color: #2E7D32;
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* ==========================================
   RESPONSIVE STYLES
========================================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .mega-menu {
        width: 800px;
    }
    
    .mega-menu-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mega-menu-featured {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-about {
        grid-column: span 3;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    .nav-menu,
    .nav-actions .btn-primary {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .slide-content h1 {
        font-size: 48px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .book-table-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
	.gallery-column {
    height: 600px;
}
	.dsk{ display: none;}
    .top-bar {
        display: none;
    }
    
    .slide-content {
        padding: 0 5%;
        text-align: center;
        align-items: center;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .slider-controls {
        bottom: 30px;
    }
    
    .features {
        margin-top: -40px;
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        left: 20px;
    }
    
    .experience-badge .years {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .menu-section {
        padding: 80px 0;
    }
    
    .menu-tabs {
        gap: 10px;
    }
    
    .menu-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .book-table {
        padding: 80px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .book-table-form {
        padding: 30px;
    }
    
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item,
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-btns {
        flex-direction: column;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content .subtitle {
        font-size: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .about-img-main img {
        height: 350px;
    }
    
    .book-table-form h3 {
        font-size: 24px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .modal-content {
        padding: 30px;
        margin: 20px;
    }
}


/* ==========================================
   ABOUT PAGE STYLES
========================================== */

/* Header Inner Page */
.header-inner {
    background: var(--dark);
}

.header-inner .nav-menu > li > a {
    color: var(--white);
}

.header-inner.scrolled .nav-menu > li > a {
    color: var(--dark);
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
 
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background: linear-gradient(135deg, rgb(68 61 61 / 42%) 0%, rgba(26, 26, 26, 0.85) 100%);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-content {
    text-align: center;
    color: var(--white);
}

.page-banner-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
}

.breadcrumb a {
    color: #ff7a18;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.7);
}

/* About Story Section */
.about-story {
    padding: 100px 0;

}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-images {
    position: relative;
}

.story-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow);
}

.story-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 140px;
    height: 140px;
     background: #000000d4;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.story-badge .years {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.story-badge .text {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
}

.about-story-content .section-subtitle {
    display: block;
}

.about-story-content p {
    color: #2F1B12;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.story-signature img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.story-signature h5 {
    font-size: 18px;
    color: #2F1B12;
    margin-bottom: 5px;
}

.story-signature span {
    font-size: 14px;
    color: var(--primary);
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0;
 
}

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

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 40px;
    color: var(--dark);
}

.mv-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
  
}

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

.why-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.why-icon i {
    font-size: 32px;
    color: var(--primary);
}

.why-card h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Our Team Section */
.our-team {
    padding: 100px 0;
    
}

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

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 16px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--white);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-info span {
    display: block;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 10px;
}

.team-info p {
    color: var(--gray);
    font-size: 13px;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 100px 0;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(135deg, rgb(0 0 0 / 12%) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: var(--primary);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
 
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding: 30px 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 50px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 50px);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
    z-index: 2;
}

.timeline-content {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 14px;
}

.timeline-content h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 991px) {
    .page-banner {
        height: 350px;
        margin-top: 80px;
    }
    
    .page-banner-content h1 {
        font-size: 42px;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-story-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 300px;
        margin-top: 70px;
    }
    
    .page-banner-content h1 {
        font-size: 36px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
    
    .about-story {
        padding: 70px 0;
    }
    
    .story-img-main img {
        height: 350px;
    }
    
    .story-img-secondary {
        width: 180px;
        right: -20px;
        bottom: -30px;
    }
    
    .story-img-secondary img {
        height: 150px;
    }
    
    .story-badge {
        width: 110px;
        height: 110px;
        left: -15px;
        top: 20px;
    }
    
    .story-badge .years {
        font-size: 32px;
    }
    
    .mission-vision,
    .why-choose,
    .our-team,
    .timeline-section {
        padding: 70px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .page-banner-content h1 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-signature {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   MENU PAGE STYLES - 3D Animations & Effects
========================================== */

/* Menu Banner Enhancements */
.menu-banner .banner-tagline {
    font-size: 20px;
        color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
}

.floating-spice {
    position: absolute;
    font-size: 30px;
    color: var(--primary);
    opacity: 0.6;
    animation: floatSpice 4s ease-in-out infinite;
}

.spice-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spice-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.spice-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes floatSpice {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}
.dish-row{
margin-top: 40px;	
}
/* Menu Actions Bar */
.menu-actions {
    padding: 20px 0;
/*     position: sticky; */
    top: 100px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.actions-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.search-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-dropdown select {
    padding: 12px 40px 12px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: var(--transition);
}

.filter-dropdown select:focus {
    outline: none;
    border-color: var(--primary);
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-download {
       display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 !important;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 26, 26, 0.3);
}

.btn-download i {
    font-size: 18px;
}

.btn-view-toggle {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
}

.btn-view-toggle:hover,
.btn-view-toggle.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* Menu Categories Navigation */
.menu-nav-section {
    padding: 30px 0;
}

.menu-categories-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-btn i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.category-btn span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.category-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: var(--primary);
}

.category-btn.active i,
.category-btn.active span {
    color: var(--dark);
}

/* Menu Grid Section */
.menu-grid-section {
    padding: 60px 0;
}

.menu-category-section {
    margin-bottom: 80px;
}

.menu-category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 32px;
    color: #2F1B12;
}

.category-title h2 {
    font-size: 42px;
    color: #2F1B12;
}

.category-title p {
    color: #2F1B12;
    font-size: 16px;
}

.category-decoration {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.category-decoration span {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.category-decoration span:nth-child(2) {
    width: 40px;
    border-radius: 10px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.menu-grid.list-view {
    grid-template-columns: 1fr;
}

.menu-grid.list-view .dish-card-3d {
    height: auto;
}

.menu-grid.list-view .dish-card-inner {
    flex-direction: row;
}

/* 3D Dish Card */
.dish-card-3d {
    height: 480px;
    perspective: 1000px;
}

.dish-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.dish-card-3d:hover .dish-card-inner {
    transform: rotateY(180deg);
}

.dish-card-front,
.dish-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.dish-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.dish-card-back h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

.dish-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.detail-item i {
    color: var(--primary);
    width: 20px;
}

.dish-card-back .ingredients {
    margin-bottom: 15px;
}

.dish-card-back .ingredients h5,
.dish-card-back .allergens h5 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.dish-card-back .ingredients p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.allergens {
    margin-bottom: 20px;
}

.allergen-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(229, 168, 50, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
}

.btn-add-cart {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 10px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(229, 168, 50, 0.4);
}

/* Dish Image Container */
.dish-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.dish-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card-front:hover .dish-image-container img {
    transform: scale(1.1);
}

.dish-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50px;
    background: radial-gradient(ellipse, rgba(229, 168, 50, 0.4) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0;
    transition: var(--transition);
}

.dish-card-3d:hover .dish-glow {
    opacity: 1;
}

/* Dish Badges */
.dish-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dish-badges span {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-veg {
    background: #22C55E;
    color: var(--white);
}

.badge-nonveg {
    background: #EF4444;
    color: var(--white);
}

.badge-bestseller {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: var(--white);
}

.badge-spicy {
    background: #DC2626;
    color: var(--white);
}

.badge-chefs {
    background: linear-gradient(135deg, var(--secondary) 0%, #A82828 100%);
    color: var(--white);
}

.badge-signature {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--dark);
}

.badge-healthy {
    background: #10B981;
    color: var(--white);
}

/* Quick Actions */
.dish-quick-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.dish-card-3d:hover .dish-quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

/* Dish Info */
.dish-info {
    padding: 20px;
}

.dish-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dish-rating .stars {
    color: var(--primary);
    font-size: 12px;
}

.dish-rating span {
    font-size: 12px;
    color: var(--gray);
}

.dish-name {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
    transition: var(--transition);
}

.dish-card-3d:hover .dish-name {
    color: var(--secondary);
}

.dish-description {
    font-size: 13px;
    color: #2B2B2B;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.dish-serves {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Special Offer Banner */
.menu-offer-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: #000000c7;
}

.offer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E5A832' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.menu-offer-banner .container {
    position: relative;
    z-index: 2;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.offer-text {
    flex: 1;
    color: var(--white);
}

.offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(229, 168, 50, 0.2);
        color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.offer-text h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.offer-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.original-price {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}
.fas.fa-th-large{
	color: #ff7a18;
}

.current-price {
    font-size: 48px;
    font-weight: 700;
        color: #ff7a18;
    font-family: 'Playfair Display', serif;
}

.discount-badge {
    padding: 8px 20px;
    background: #22C55E;
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.offer-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-plate {
    position: relative;
    animation: floatPlate 4s ease-in-out infinite;
}

.floating-plate img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(229, 168, 50, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

/* Dish Detail Modal */
.dish-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dish-modal.active {
    display: flex;
}

.dish-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.dish-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 30px;
    overflow-y: scroll;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 20px;
}

.modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image-section {
    padding: 40px;
    background: var(--light);
}

.modal-image-360 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: grab;
}

.modal-image-360 img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-image-360:active {
    cursor: grabbing;
}

.rotate-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border-radius: 30px;
    font-size: 12px;
}

.rotate-hint i {
    animation: rotateIcon 2s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.modal-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

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

.thumb:hover,
.thumb.active {
    border-color: var(--primary);
}

.modal-info-section {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.modal-info-section h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.modal-rating .stars {
    color: var(--primary);
    font-size: 16px;
}

.modal-rating span {
    color: var(--gray);
    font-size: 14px;
}

.modal-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.detail-box {
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    text-align: center;
}

.detail-box i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.detail-box span {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
}

.detail-box strong {
    font-size: 16px;
    color: var(--dark);
}

.modal-ingredients,
.modal-allergens {
    margin-bottom: 25px;
}

.modal-ingredients h4,
.modal-allergens h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.modal-ingredients h4 i,
.modal-allergens h4 i {
    color: var(--primary);
}

.ingredient-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ingredient-tags span {
    padding: 8px 16px;
    background: var(--light);
    border-radius: 30px;
    font-size: 13px;
    color: var(--dark);
}

.allergen-list {
    display: flex;
    gap: 15px;
}

.allergen-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FEF2F2;
    color: #DC2626;
    border-radius: 30px;
    font-size: 13px;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: var(--light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
}

.qty-input {
    width: 60px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.modal-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 12px;
    color: var(--gray);
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.btn-add-to-cart {
    flex: 1;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 50px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 168, 50, 0.4);
}

/* PDF Download Modal */
.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pdf-modal.active {
    display: flex;
}

.pdf-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.pdf-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    animation: modalSlideIn 0.5s ease;
}

.pdf-modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, #A82828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pdf-modal-icon i {
    font-size: 48px;
    color: var(--white);
}

.pdf-modal-content h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
}

.pdf-modal-content p {
    color: var(--gray);
    margin-bottom: 30px;
}

.pdf-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.pdf-option {
    flex: 1;
    padding: 20px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pdf-option i {
    font-size: 24px;
    color: var(--primary);
}

.pdf-option span {
    font-size: 13px;
    color: var(--dark);
}

.pdf-option:hover,
.pdf-option.active {
    border-color: var(--primary);
    background: var(--white);
}

.pdf-format {
    margin-bottom: 30px;
}

.pdf-format label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.format-options {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.format-btn {
    padding: 12px 30px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.format-btn:hover,
.format-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--dark);
}

.btn-download-pdf {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary) 0%, #A82828 100%);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-download-pdf:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 26, 26, 0.4);
}

.download-progress {
    display: none;
    margin-top: 20px;
}

.download-progress.active {
    display: block;
}

.progress-bar {
    height: 6px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    animation: progressAnim 2s ease forwards;
}

@keyframes progressAnim {
    to {
        width: 100%;
    }
}

.download-progress span {
    font-size: 13px;
    color: var(--gray);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .menu-actions {
        top: 80px;
    }
    
    .actions-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-filter {
        width: 100%;
    }
    
    .search-box {
        flex: 1;
    }
    
    .action-buttons {
        justify-content: flex-end;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dish-card-3d {
        height: 450px;
    }
    
    .offer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .offer-text p {
        max-width: 100%;
    }
    
    .floating-plate img {
        width: 300px;
        height: 300px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image-section {
        padding: 30px;
    }
    
    .modal-image-360 img {
        height: 250px;
    }
    
    .modal-info-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .menu-actions {
        top: 70px;
        padding: 15px 0;
    }
    
    .search-filter {
        flex-direction: column;
    }
    
    .search-box {
        width: 100%;
    }
    
    .filter-dropdown {
        width: 100%;
    }
    
    .filter-dropdown select {
        width: 100%;
    }
    
    .btn-download span {
/*         display: none; */
    }
    
    .category-btn {
        padding: 15px 20px;
    }
    
    .category-btn i {
        font-size: 22px;
    }
    
    .category-btn span {
        font-size: 12px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dish-card-3d {
        height: 420px;
    }
    
    .category-title h2 {
        font-size: 32px;
    }
    
    .offer-text h2 {
        font-size: 36px;
    }
    
    .current-price {
        font-size: 36px;
    }
    
    .floating-plate img {
        width: 250px;
        height: 250px;
    }
    
    .modal-actions {
        flex-wrap: wrap;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
    
    .modal-price {
        text-align: center;
    }
    
    .btn-add-to-cart {
        width: 100%;
    }
    
    .pdf-options {
        flex-direction: column;
    }
    
    .format-options {
        flex-direction: column;
    }
    
    .format-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .menu-categories-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .category-btn {
        flex-shrink: 0;
    }
    
    .dish-card-3d {
        height: 400px;
    }
    
    .dish-image-container {
        height: 180px;
    }
    
    .dish-name {
        font-size: 18px;
    }
    
    .modal-details-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-info-section h2 {
        font-size: 28px;
    }
    
    .pdf-modal-content {
        padding: 30px;
    }
}

/* Hidden for filtering */
.dish-card-3d.hidden {
    display: none;
}

.menu-category-section.hidden {
    display: none;
}


/* ==========================================
   DISH DETAIL PAGE STYLES
========================================== */

/* Breadcrumb Bar */
.breadcrumb-bar {
    
    padding: 20px 0;
    margin-top: 0px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--gray);
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav i.fa-chevron-right {
    font-size: 10px;
    color: #ccc;
}

.breadcrumb-nav .current {
    color: #2F1B12;
    font-weight: 500;
}

/* Main Dish Detail Section */
.dish-detail-main {
    padding: 60px 0;
 
}

.dish-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Dish Image Section */
.dish-image-section {
    position: sticky;
    top: 120px;
}

.dish-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.dish-badges .badge {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dish-badges .bestseller {
    background: linear-gradient(135deg, #ff6b35, #f7931a);
    color: var(--white);
}

.dish-badges .veg {
    background: #e8f5e9;
    color: #2e7d32;
}

/* 3D Container */
.dish-3d-container {
    position: relative;
    background: linear-gradient(145deg, var(--light) 0%, #fff 100%);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 20px;
    overflow: hidden;
}

.dish-3d-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 168, 50, 0.1) 0%, transparent 60%);
    animation: rotate3dBg 20s linear infinite;
}

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

.dish-3d-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    perspective: 1000px;
    cursor: grab;
}

.dish-3d-wrapper:active {
    cursor: grabbing;
}

.dish-plate {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 80%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.main-dish-img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.plate-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
    filter: blur(10px);
}

/* Steam Effect */
.steam-effect {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100px;
    pointer-events: none;
}

.steam-effect span {
    position: absolute;
    width: 8px;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    animation: steam 3s ease-out infinite;
    opacity: 0;
}

.steam-effect span:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.steam-effect span:nth-child(2) {
    left: 50%;
    animation-delay: 0.5s;
}

.steam-effect span:nth-child(3) {
    left: 80%;
    animation-delay: 1s;
}

@keyframes steam {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50px) scaleX(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scaleX(2);
        opacity: 0;
    }
}

/* Floating Ingredients */
.floating-ingredients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ingredient {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    animation: floatIngredient 4s ease-in-out infinite;
}

.ingredient i {
    font-size: 20px;
    color: var(--primary);
}

.ing-1 { top: 10%; left: 5%; animation-delay: 0s; }
.ing-2 { top: 20%; right: 5%; animation-delay: 0.5s; }
.ing-3 { bottom: 25%; left: 0; animation-delay: 1s; }
.ing-4 { bottom: 15%; right: 0; animation-delay: 1.5s; }

@keyframes floatIngredient {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.rotation-hint {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    margin-top: 10px;
}

.rotation-hint i {
    margin-right: 5px;
    animation: rotateHint 2s ease-in-out infinite;
}

@keyframes rotateHint {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Thumbnails */
.dish-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.thumb:hover,
.thumb.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

/* Image Actions */
.image-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.action-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn i {
    font-size: 18px;
    color: var(--gray);
    transition: var(--transition);
}

.action-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.action-btn:hover i {
    color: var(--dark);
}

.action-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
}

.action-btn.active i {
    color: var(--white);
}

/* Dish Info Section */
.dish-info-section {
    padding-top: 20px;
}

.dish-category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.dish-category .divider {
    color: var(--border);
}

.dish-title {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color: #2F1B12;
    margin-bottom: 15px;
    line-height: 1.2;
}

.dish-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dish-rating .stars {
    color: var(--primary);
    font-size: 16px;
}

.dish-rating .rating-text {
    font-size: 14px;
    color: var(--gray);
}

.dish-rating .orders-count {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
}

.dish-description {
    font-size: 16px;

    line-height: 1.8;
    margin-bottom: 25px;
}

/* Price Box */
.dish-price-box {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.price-main .currency {
    font-size: 24px;
    color: var(--dark);
    font-weight: 600;
}

.price-main .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.price-main .original-price {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
}

.price-main .discount-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 8px;
}

/* Quick Info Grid */
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.info-card {
    background: var(--light);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition);
}

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

.info-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card .label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
}

.info-card .value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/* Spice Indicator */
.spice-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--light);
    border-radius: 15px;
}

.spice-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.spice-levels {
    display: flex;
    gap: 8px;
}

.spice-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e0e0e0;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.spice-dot::before {
    content: '\f816';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: var(--white);
    opacity: 0;
}

.spice-dot.active {
    background: linear-gradient(135deg, #ff6b35, #e53935);
}

.spice-dot.active::before {
    opacity: 1;
}

.spice-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

/* Customization Section */
.customization-section {
    margin-bottom: 30px;
}

.customization-section h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
}

.custom-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.custom-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--light);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.custom-option:hover {
    background: #fff;
    box-shadow: var(--shadow);
}

.custom-option input {
    display: none;
}

.custom-option .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    margin-right: 12px;
    position: relative;
    transition: var(--transition);
}

.custom-option input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-option input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: var(--dark);
}

.custom-option .option-text {
    flex: 1;
    font-size: 14px;
    color: var(--dark);
}

.custom-option .option-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

/* Order Section */
.order-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.qty-btn:hover i {
    color: var(--dark);
}

.qty-btn i {
    font-size: 14px;
    color: var(--gray);
}

.qty-input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

.total-price {
    text-align: right;
}

.total-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.total-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

/* Order Buttons */
.order-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.order-buttons .btn {
    padding: 18px 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #6d1515;
    transform: translateY(-3px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.trust-badge i {
    color: #2e7d32;
    font-size: 16px;
}

/* ==========================================
   TABS SECTION
========================================== */
.dish-tabs-section {
    padding: 60px 0;
}

.tabs-wrapper {
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background: var(--dark);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 20px 30px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.tab-btn.active {
    background: #ffa462;
    color: var(--dark);
}

.tabs-content {
    padding: 40px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ingredients Tab */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.ingredients-col h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredients-col h4 i {
    color: var(--primary);
}

.ingredients-list {
    list-style: none;
}

.ingredients-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray);
}

.ingredients-list .ing-icon i {
    font-size: 6px;
    color: var(--primary);
}

.allergen-info {
    background: #fff3e0;
    border-radius: 15px;
    padding: 25px;
}

.allergen-info h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.allergen-info h5 i {
    color: #ff9800;
}

.allergen-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.allergen-tag {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.allergen-tag.contains {
    background: #ffebee;
    color: #c62828;
}

.allergen-tag.free {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Nutrition Tab */
.nutrition-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.nutrition-chart {
    text-align: center;
}

.donut-chart {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-ring {
    fill: none;
    stroke: #eee;
    stroke-width: 15;
}

.donut-segment {
    fill: none;
    stroke-width: 15;
    stroke-linecap: round;
}

.donut-segment.carbs { stroke: var(--primary); }
.donut-segment.protein { stroke: var(--secondary); }
.donut-segment.fat { stroke: #ff9800; }
.donut-segment.fiber { stroke: #4caf50; }

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-center .cal-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.donut-center .cal-text {
    font-size: 14px;
    color: var(--gray);
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.legend-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-item .dot.carbs { background: var(--primary); }
.legend-item .dot.protein { background: var(--secondary); }
.legend-item .dot.fat { background: #ff9800; }
.legend-item .dot.fiber { background: #4caf50; }

.nutrition-details h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 20px;
}

.nutrition-details h4 span {
    font-size: 14px;
    color: var(--gray);
    font-weight: normal;
}

.nutrition-table {
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
}

.nutrition-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

.nutrition-row:last-child {
    border-bottom: none;
}

.nutrition-row.header {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
}

.nutrition-row.sub {
    background: var(--light);
    padding-left: 40px;
}

.nutrition-row.sub span:first-child {
    font-size: 13px;
}

.nutrition-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 15px;
}

/* Preparation Tab */
.preparation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

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

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.play-btn i {
    font-size: 28px;
    color: var(--dark);
    margin-left: 5px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    text-align: center;
}

.preparation-steps h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 25px;
}

.steps-timeline {
    position: relative;
    padding-left: 40px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
}

.step {
    position: relative;
    margin-bottom: 30px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -40px;
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
    z-index: 2;
}

.step-content {
    background: var(--light);
    padding: 20px;
    border-radius: 15px;
}

.step-content h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-time {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.chef-note {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, var(--secondary), #6d1515);
    border-radius: 20px;
    color: var(--white);
}

.chef-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    object-fit: cover;
}

.note-content h5 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.note-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    font-style: italic;
}

.chef-name {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Reviews Tab */
.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.rating-overview {
    display: flex;
    gap: 30px;
}

.big-rating {
    text-align: center;
}

.big-rating .number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.big-rating .stars {
    color: var(--primary);
    margin: 10px 0;
}

.big-rating .total {
    font-size: 14px;
    color: var(--gray);
}

.rating-bars {
    flex: 1;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.bar-row span:first-child {
    width: 40px;
    color: var(--gray);
}

.bar-row span:last-child {
    width: 30px;
    text-align: right;
    color: var(--gray);
}

.bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
}

.review-highlights h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 15px;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-tags .tag {
    padding: 10px 16px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Review Cards */
.reviews-list {
    margin-bottom: 30px;
}

.review-card {
    padding: 25px;
    background: var(--light);
    border-radius: 20px;
    margin-bottom: 20px;
}

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

.reviewer {
    display: flex;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h6 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 3px;
}

.reviewer-info .date {
    font-size: 10px;
    color: var(--gray);
}

.review-rating {
    color: var(--primary);
}

.review-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.review-images img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.review-images img:hover {
    transform: scale(1.1);
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-helpful button {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.review-helpful button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.review-helpful .verified {
    font-size: 13px;
    color: #2e7d32;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.load-more-reviews {
    display: block;
    width: fit-content;
    margin: 0 auto 40px;
}

/* Write Review Form */
.write-review {
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
}

.write-review h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 25px;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.rating-input {
    display: flex;
    gap: 8px;
}

.rating-input i {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-input i:hover,
.rating-input i.active {
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.photo-upload {
    display: flex;
    align-items: center;
    gap: 15px;
}

.photo-upload input {
    display: none;
}

.upload-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border: 2px dashed var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.upload-btn:hover {
    border-color: var(--primary);
}

/* ==========================================
   RELATED DISHES
========================================== */
.related-dishes {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    color: #8b1a1a;
    font-family: 'Playfair Display', serif;
}

.related-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.related-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.related-card .card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.related-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
}

.related-card .quick-view {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.related-card:hover .quick-view {
    opacity: 1;
    transform: translateY(0);
}

.related-card .card-content {
    padding: 20px;
}

.related-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.related-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.related-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.related-card .add-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.related-card .add-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

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

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
}

/* Download CTA */
.download-cta {
    padding: 60px 0;
       background: linear-gradient(135deg, #000000, #e1bdbd);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Zoom Modal */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.zoom-modal.active {
    display: flex;
}

.close-zoom {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.zoom-content img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 20px;
}

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.share-modal.active {
    display: flex;
}

.share-content {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 450px;
    position: relative;
}

.close-share {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--gray);
}

.share-content h4 {
    text-align: center;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 25px;
}

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

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.pinterest { background: #e60023; }
.share-btn.email { background: var(--gray); }

.share-btn:hover {
    transform: translateY(-5px);
}

.copy-link {
    display: flex;
    gap: 10px;
}

.copy-link input {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
}

.copy-btn {
    padding: 0 20px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* ==========================================
   RESPONSIVE STYLES
========================================== */
@media (max-width: 1199px) {
    .dish-detail-grid {
        gap: 40px;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .breadcrumb-bar {
        margin-top: 80px;
    }
    
    .dish-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dish-image-section {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .dish-title {
        font-size: 36px;
    }
    
    .tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .nutrition-grid {
        grid-template-columns: 1fr;
    }
    
    .preparation-content {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .breadcrumb-bar {
        margin-top: 70px;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
    }
    
    .dish-detail-main {
        padding: 40px 0;
    }
    
    .dish-3d-container {
        padding: 30px 20px;
    }
    
    .dish-thumbnails {
        gap: 10px;
    }
    
    .thumb {
        width: 60px;
        height: 60px;
    }
    
    .dish-title {
        font-size: 28px;
    }
    
    .price-main .amount {
        font-size: 36px;
    }
    
    .custom-options {
        grid-template-columns: 1fr;
    }
    
    .order-buttons {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .tabs-content {
        padding: 25px;
    }
    
    .rating-overview {
        flex-direction: column;
        gap: 25px;
    }
    
    .chef-note {
        flex-direction: column;
        text-align: center;
    }
    
    .related-slider {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-text h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dish-badges .badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .ingredient {
        width: 40px;
        height: 40px;
    }
    
    .ingredient i {
        font-size: 16px;
    }
    
    .image-actions {
        flex-wrap: wrap;
    }
    
    .action-btn {
        width: 45px;
        height: 45px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .info-card {
        padding: 15px 10px;
    }
    
    .info-card i {
        font-size: 20px;
    }
    
    .order-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .total-price {
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .share-content {
        padding: 25px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

.wpcf7-form-control-wrap {
    display: contents;
}
.book-table-form br{
	display: none;
}
.book-table-form p{
	margin-bottom: 0 !important;
}
.map-header p{
	color: #2B2B2B;
}
/* MAP SECTION */
.map-section {
    padding: 80px 0 0;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-wrapper iframe {
    display: block;
}

/* Base Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

/* Content */
.hero-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 900px;
}

/* Typography */
.subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #e67e22;
}

.hero-content p {
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Buttons */
.hero-btns {
    margin-top: 25px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 25px;
    margin: 5px;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.btn-primary {
    background: #e67e22;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

/* -------------------- */
/* 📱 MOBILE RESPONSIVE */
/* -------------------- */
@media (max-width: 768px) {
    .hero {
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* -------------------- */
/* 📱 SMALL MOBILE */
/* -------------------- */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 12px;
    }

    .hero-content p {
        font-size: 0.85rem;
    }
}

/* -------------------- */
/* 💻 LARGE SCREENS */
/* -------------------- */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 3.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}



/* Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
}

.section-title p {
    color: white;
    margin-top: 10px;
}

.cuisine-hero {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* BLOCK */
.cuisine-block {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease;
}

/* BACKGROUND IMAGE */
.cuisine-block .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
}

/* IMAGES */
.cuisine-block.north .bg {
    background-image: url('/wp-content/uploads/2026/04/North-indian-food.webp');
}

.cuisine-block.south .bg {
    background-image: url('/wp-content/uploads/2026/04/south-indian-food-platter.webp');
}

/* DARK OVERLAY */
.cuisine-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

/* CONTENT */
.cuisine-block .inner {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 40px;
    max-width: 400px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

/* TEXT */
.label {
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--accent);
}

.cuisine-block h2 {
    font-size: 3rem;
    margin: 15px 0;
}

.cuisine-block p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* 🔥 HOVER EFFECT */
.cuisine-block:hover {
    flex: 1.4;
}

.cuisine-block:hover .bg {
    transform: scale(1.1);
}

.cuisine-block:hover .inner {
    transform: translateY(0);
    opacity: 1;
}

/* DEFAULT ACTIVE (optional) */
.cuisine-block:first-child .inner {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- */
/* 📱 MOBILE */
/* ---------------- */
@media (max-width: 768px) {
    .cuisine-hero {
        flex-direction: column;
        height: auto;
    }

    .cuisine-block {
        height: 60vh;
    }

    .cuisine-block .inner {
        opacity: 1;
        transform: none;
    }
}



/* Section */
.cuisine-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f3b36, #0c2e2a);
    color: var(--white);
    overflow: hidden;
}

/* Layout */
.cuisine-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT IMAGE */
.cuisine-image {
    position: relative;
}

.cuisine-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Floating Image */
.floating-img {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    animation: float 4s ease-in-out infinite;
}

.floating-img img {
    width: 100%;
}

/* RIGHT CONTENT */
.cuisine-content {
    animation: fadeUp 1s ease forwards;
}

.tag {
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
}

.cuisine-content h2 {
    font-size: 2.8rem;
    margin: 15px 0;
}

.cuisine-content h2 span {
    color: var(--primary);
}

.cuisine-content p {
    color: #ddd;
    margin-bottom: 20px;
}

.cuisine-points div {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------- */
/* 📱 Responsive */
/* -------------------- */
@media (max-width: 992px) {
    .cuisine-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-img {
        display: none;
    }

    .cuisine-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .cuisine-section {
        padding: 70px 15px;
    }

    .cuisine-content h2 {
        font-size: 1.8rem;
    }

    .cuisine-content p {
        font-size: 0.9rem;
    }
}

/* Section */
.chef-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Layout */
.chef-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Images */
.chef-img img {
	height: 500px;
	object-fit: cover;
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

/* Rounded style like reference */
.chef-img.left img {
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.chef-img.right img {
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
}

/* Hover Zoom */
.chef-img img:hover {
    transform: scale(1.05);
}

/* Center Content */
.chef-content {
    text-align: center;
    color: #2F1B12;
    animation: fadeUp 1s ease forwards;
}

.chef-content .tag {
    font-size: 25px;
    letter-spacing: 3px;
    color:#2F1B12;
    text-transform: uppercase;
	font-weight:600;
}

/* Headings */
.chef-content h3 {
    margin-top: 20px;
    font-size: 1.3rem;
    color: var(--primary);
}

/* Menu List */
.chef-content ul {
    margin-top: 10px;
}

.chef-content ul li {
    font-size: 0.9rem;
    color:#2B2B2B;
    margin-bottom: 5px;
}

/* Button */
.chef-content .btn-primary {
    margin-top: 20px;
    display: inline-block;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------- */
/* 📱 Tablet */
/* -------------------- */
@media (max-width: 992px) {
    .chef-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chef-img {
        max-width: 500px;
        margin: auto;
    }
}

/* -------------------- */
/* 📱 Mobile */
/* -------------------- */
@media (max-width: 480px) {
    .chef-section {
        padding: 70px 15px;
    }

    .chef-content h3 {
        font-size: 1.1rem;
    }

    .chef-content ul li {
        font-size: 0.85rem;
    }
}


.flags-section {
    background: #0f3b36;
    padding: 15px 0;
    overflow: hidden;
}

/* TRACK */
.flags-track {
	justify-content: center;
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollFlags 12s linear infinite;
}

/* FLAGS */
.flag img {
    width: 40px;
    border-radius: 4px;
}

/* 🔥 PERFECT LOOP */
@keyframes scrollFlags {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* SECTION */
.events-section {
    padding: 100px 20px;
    color: #fff;
}
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.video-box {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.video-box video {
    width: 100%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
/* LAYOUT */
.events-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT IMAGE */
.events-media {
    position: relative;
}

.events-media img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* RIGHT CONTENT */
.events-content h2 {
    font-size: 2.8rem;
}

.events-content p {
    margin: 15px 0 30px;
    color: #ddd;
}

/* EVENT ITEM */
.event-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    transition: var(--transition);
}

/* DATE BOX */
.date {
    min-width: 70px;
    border: 1px solid var(--primary);
    text-align: center;
    padding: 4px;
}

.date span {
    font-size: 1.5rem;
    font-weight: bold;
}

.date small {
    font-size: 10px;
    display: block;
}

/* TEXT */
.info h4 {
    margin-bottom: 5px;
}

.info p {
    font-size: 0.9rem;
    color: #ccc;
}

/* HOVER EFFECT */
.event-item:hover {
    transform: translateX(10px);
}

/* -------------------- */
/* 📱 RESPONSIVE */
/* -------------------- */
@media (max-width: 768px) {
    .events-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-item {
        flex-direction: column;
        align-items: center;
    }

    .events-content h2 {
        font-size: 2rem;
    }
}

.menu-clean {
    padding: 100px 20px;

}

/* GRID */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

/* SIDE IMAGES */
.menu-side img {
	    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* VIEW BUTTON */
.view-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
}
.menu-section .menu-item{
	display: unset !important;
    /* justify-content: space-between; */
    /* align-items: center; */
    padding: 0 !important;
    border-bottom: 0;
   
}
/* CENTER ITEMS */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ROW */
.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

/* TEXT */
.menu-row h4 {
    color: #fff;
}

.menu-row p {
    font-size: 0.85rem;
    color: #ccc;
}

/* PRICE */
.menu-row span {
    color: var(--primary);
    font-weight: bold;
}

/* HOVER 🔥 */
.menu-row:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

/* TIMING */
.timing-box {
    margin-top: 15px;
    color: var(--accent);
}

/* ---------------- */
/* MOBILE */
/* ---------------- */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu-side {
        max-width: 400px;
        margin: auto;
    }
}

.about-pro {
    padding: 100px 20px;
    
    color: #fff;
}

/* LAYOUT */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* BADGE */
.rating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
}

/* FLOATING DISH */
.floating-dish {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    animation: float 4s ease-in-out infinite;
}

.floating-dish img {
    width: 100%;
}

/* CONTENT */
.about-content .tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent);
}

.about-content h2 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: #ccc;
    margin-bottom: 25px;
}

/* FEATURES */
.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    gap: 10px;
}

.feature i {
    font-size: 20px;
    color: var(--primary);
}

/* ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
    }
	
	

    .floating-dish {
        display: none;
    }
}

.faq-pro {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f3b36, #0c2e2a);
    color: #fff;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.faq-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* FAQ ITEM */
.faq-item {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

/* QUESTION */
.faq-question {
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    font-size: 0.9rem;
    color: #ccc;
    transition: 0.4s ease;
}

/* ACTIVE */
.faq-item.active {
    background: rgba(255,255,255,0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 18px;
}

/* RIGHT IMAGE */
.faq-right {
    position: relative;
}

.faq-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* FLOAT CARD */
.overlay-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #fff;
}

.overlay-card img {
    width: 100%;
}

/* ---------------- */
/* MOBILE */
/* ---------------- */
@media (max-width: 768px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .overlay-card {
        display: none;
    }
}



/* SECTION */
.reserve-section {
    padding: 80px 20px;
    overflow: hidden;
}

/* CONTAINER */
.reserve-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.reserve-content {
    flex: 1;
    position: relative;
    color: #fff;
}

.reserve-content h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.reserve-content p {
    color: #cfcfcf;
    margin-bottom: 25px;
}

/* BACK TEXT */
.bg-text {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 90px;
    color: rgba(255,255,255,0.07);
    font-family: 'Playfair Display', serif;
    letter-spacing: 6px;
    pointer-events: none;
}

/* BUTTON */
.btn-primary-custom {
    display: inline-block;
    padding: 12px 30px;
    background: #c89b5e;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* sliding hover */
.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.4s ease;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom span {
    position: relative;
    z-index: 1;
}

.btn-primary-custom:hover {
    color: #000;
}

/* RIGHT IMAGE */
.reserve-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* IMAGE WRAPPER */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* CURVED IMAGE */
.image-wrapper img {
    width: 100%;
    height: auto;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    object-fit: cover;
}

/* GOLD BORDER */
.border-overlay {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid #c89b5e;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .reserve-container {
        flex-direction: column;
        text-align: center;
    }

    .reserve-content {
        order: 2;
    }

    .reserve-image {
        order: 1;
    }

    .bg-text {
        font-size: 60px;
        left: 50%;
        transform: translateX(-50%);
    }

    .image-wrapper img,
    .border-overlay {
        border-radius: 20px;
    }
	.gallery-wrapper{
	  height: auto !important;
	}
}


.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    height: 520px;
    overflow: hidden;
}

.gallery-column {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Image */
.gallery-track img {
	    overflow: hidden;
    border-radius: 0 200px 200px 0;
    position: relative;
    width: 100%;
    height: 220px;
    object-fit: cover;
   
    transition: var(--transition);
}

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

/* Alternating animation */
.gallery-column.up .gallery-track {
    animation: scrollUp 18s linear infinite;
}

.gallery-column.down .gallery-track {
    animation: scrollDown 18s linear infinite;
}

/* Keyframes */
@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* Premium fade */
.gallery-column::before,
.gallery-column::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    z-index: 2;
    left: 0;
}

.gallery-column::before {
    top: 0;
    background: linear-gradient(to bottom, var(--light), transparent);
}

.gallery-column::after {
    bottom: 0;
    background: linear-gradient(to top, var(--light), transparent);
}
@media (max-width: 992px) {
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
}

.gallery-section {
	margin-bottom: 60px;
}

/* SECTION */
.region-section {
    padding: 70px 0;
    overflow: hidden;
}

/* ROW WRAPPER (CENTER FIX) */
.scroll-row {
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: 30px 0;
}

/* TRACK */
.scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    align-items: center;
    padding: 10px 0;
}

/* CARD */
.region-card {
    width: 300px;
    background: var(--white);
    border-radius: 20px;
    padding: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    transition: var(--transition);
}

/* IMAGE */
.region-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* TITLE */
.region-card p {
    margin-top: 10px;
    font-weight: 500;
    color: var(--dark);
    font-size: 20px;
}

/* HOVER EFFECT */
.region-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* SCROLL ANIMATION */
.scroll-row.left .scroll-track {
    animation: scrollLeft 22s linear infinite;
}

.scroll-row.right .scroll-track {
    animation: scrollRight 22s linear infinite;
}

/* KEYFRAMES (IMPORTANT FIX) */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px)); 
        /* 👆 GAP ka half adjust */
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-50% - 10px));
    }
    100% {
        transform: translateX(0);
    }
}

/* OPTIONAL: FADE EDGES (PREMIUM LOOK) */
.scroll-row::before,
.scroll-row::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 100%;
    top: 0;
    z-index: 2;
    pointer-events: none;
}

.scroll-row {
    position: relative;
}

.scroll-row::before {
    left: 0;
    background: linear-gradient(to right, var(--light), transparent);
}

.scroll-row::after {
    right: 0;
    background: linear-gradient(to left, var(--light), transparent);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .region-card {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .region-card {
        width: 250px;
    }
}
.video-only {
    position: relative;
    cursor: pointer;
}

.video-only video {
    width: 100%;
    border-radius: 12px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 10px 14px;
}



.chef-pro {
    padding: 100px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* LAYOUT */
.chef-pro .chef-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.chef-pro .chef-content {
    position: relative;
}

/* BIG BG TEXT */
.bg-text {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 120px;
    color: rgba(255,255,255,0.05);
    font-family: 'Playfair Display', serif;
    pointer-events: none;
}

/* NAME */
.chef-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* TEXT */
.chef-content p {
    color:#2B2B2B;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTON */
.btn-outline {
    border: 1px solid var(--primary);
    padding: 10px 25px;
    color: #fff;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
}

/* RIGHT IMAGE */
.chef-image {
    position: relative;
}

.chef-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* FLOATING IMAGE */
.chef-floating {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    animation: float 4s ease-in-out infinite;
}

.chef-floating img {
    width: 100%;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------------- */
/* MOBILE */
/* ---------------- */
@media (max-width: 768px) {
	.chef-pro .chef-wrapper {
		display: unset;}
    .chef-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bg-text {
        font-size: 60px;
        top: -20px;
    }

    .chef-floating {
        display: none;
    }
}


.menu-elegant {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f3b36, #0c2e2a);
    color: #fff;
}

/* TITLE */
.menu-title {
    text-align: center;
    margin-bottom: 60px;
}

.menu-title span {
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--accent);
}

.menu-title h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

/* MENU LIST */


/* ITEM */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

/* LEFT */
.menu-left h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.menu-left p {
    font-size: 0.85rem;
}

/* PRICE */
.menu-price {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: bold;
}

/* HOVER EFFECT 🔥 */
.menu-item:hover {
    transform: translateX(10px);
}

.menu-item:hover .menu-price {
    color: #fff;
}

/* ---------------- */
/* MOBILE */
/* ---------------- */
@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.menu-classic {
    padding: 100px 20px;
   
    color: #2F1B12;
}

/* TITLE */
.menu-head {
    text-align: center;
    margin-bottom: 60px;
}

.menu-head span {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent);
}

.menu-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-top: 10px;
    font-style: italic;
}

/* GRID */
.menu-classic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* COLUMN */
.menu-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* LINE STRUCTURE */
.menu-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* TITLE */
.menu-line .title {
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 1px;
}

/* LINE */
.menu-line .line {
    flex: 1;
    height: 1px;
    background: #2B2B2B;
    position: relative;
}

/* GOLD EFFECT */
.menu-line .line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: 0.4s;
}

/* PRICE */
.menu-line .price {
    white-space: nowrap;
    color: var(--primary);
    font-weight: bold;
}

/* DESCRIPTION */
.desc {
    font-size: 0.85rem;
    color: #2B2B2B;
    margin-top: -15px;
    margin-bottom: 10px;
}

/* HOVER EFFECT 🔥 */
.menu-col:hover .line::after {
    width: 100%;
}

/* ---------------- */
/* MOBILE */
/* ---------------- */
@media (max-width: 768px) {
    .menu-classic-grid {
        grid-template-columns: 1fr;
    }
}


.event-gallery {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.event-head {
    text-align: center;
    margin-bottom: 40px;
}

.event-head span {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent);
}

/* GRID */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
}

/* CARD */
.event-card {
    overflow: hidden;
    position: relative;
}

/* IMAGE */
.event-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* HOVER EFFECT 🔥 */
.event-card:hover img {
    transform: scale(1.1);
}

/* VERTICAL LINES */
.event-grid::before,
.event-grid::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

.event-grid::before {
    left: 33.33%;
}

.event-grid::after {
    left: 66.66%;
}

/* ---------------- */
/* MOBILE */
/* ---------------- */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-card img {
        height: 350px;
    }

    .event-grid::before,
    .event-grid::after {
        display: none;
    }
}
.event-card {
    position: relative;
    overflow: hidden;
}

/* VERTICAL TEXT */
.vertical-text {
    position: absolute;
    left: 11px;
    top: 97%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: left top;
    
    font-size: 12px;
    letter-spacing: 3px;
    color: white;
    font-weight: 500;
    pointer-events: none;
    transition: 0.3s;
}

/* HOVER EFFECT 🔥 */
.event-card:hover .vertical-text {
    color: var(--primary);
    letter-spacing: 5px;
}
.vertical-text::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--primary);
    margin-right: 10px;
    vertical-align: middle;
}





.menu-section {

    padding: 60px 0;
  
}



.menu-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    width: 100%;;
}
.menu-wrapper .left_col{
	width: 50%;
}
.menu-wrapper .col-right{
	width: 50%;
}
/* LEFT SIDE */
.menu-left {
    flex: 2;
}

.menu-title {
    font-size: 42px;
    color: #2F1B12;
    display: inline-block;
    padding: 6px 20px;
    color: #000;
    margin-bottom: 25px;
}

.menu-item-new {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
 border-bottom: 1px dashed rgb(0 0 0);
    padding-bottom: 10px;
	align-items: center;
}
.menu-item-new .price{
	width: 20%;
    display: flex;
    align-items: center;
}
.price b{
	font-size: 37px;
    display: inline-block;
    position: relative;
    top: 5px;
}
.m-content{
	text-align: left;
	width: 60%;
}
.menu-item h4 {
/*     font-size: 18px;
    color: #ffb347; */
}

.menu-item p {
    font-size: 13px;
  color: #000000;
    margin-top: 4px;
}

.price {
    color: #ffb347;
    font-weight: 600;
}

/* RIGHT SIDE */
.menu-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item-new img {
	height: 100px;
    width: 100px;
    width: 100%;
    border: 2px solid #ffb347;
    border-radius: 6px;
    object-fit: cover;
    transition: 0.3s;
}

.menu-right img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-wrapper {
        flex-direction: column;
    }

    .menu-right {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .menu-right img {
        width: 48%;
    }
}
.drink-block .price{
	line-height: 25px;
}

.drink-section-unique {
    padding: 60px 0px;
}

/* container */
.drink-container {
    max-width: 1100px;
    margin: auto;
}

/* MAIN TITLE */
.drink-main-title {
    background: #d8cbb0; /* second screenshot beige */
    color: #000;
    display: inline-block;
    padding: 8px 30px;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* GRID */
.drink-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

/* BLOCK */
.drink-block {
    display: flex;
    gap: 15px;
}

/* VERTICAL LABEL */
.drink-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #ffb347;
    color: #000;
    font-weight: 600;
    padding: 10px 6px;
    font-size: 20px;
}

/* LIST */
.drink-block ul {
    width: 100%;
}

.drink-block li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

/* PRICE STYLE */
.price {
    color: #fff;
    font-weight: 500;
}

.price b {
    color: #ffb347;
    margin-right: 3px;
}
.hero-video.mobile{
	display: none;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .drink-grid {
        grid-template-columns: 1fr;
    }
	.hero-video.mobile{
	display: block;
}
	.hero-video.desktop{
		display: none;
	}
}


.team-img img {
	    object-position: 61% 35%;
}


/* Privacy Page */
.privacy-section {
    padding: 80px 20px;
    background: var(--light);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.privacy-header p {
    color: var(--gray);
    max-width: 700px;
    margin: auto;
}

.privacy-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.privacy-block {
    margin-bottom: 30px;
}

.privacy-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary);
}

.privacy-block p {
    color: var(--gray);
}

.privacy-block ul {
    margin-top: 10px;
    padding-left: 20px;
}

.privacy-block ul li {
    margin-bottom: 8px;
    color: var(--dark);
}

.privacy-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-contact a {
    color: var(--primary);
    font-weight: 500;
}

.privacy-footer {
    text-align: center;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 30px;
    }

    .privacy-card {
        padding: 25px;
    }
}