:root {
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-tertiary: #808080;
    --accent: #d4af37;
    --accent-dark: #b8941f;
    --border: #404040;
    --shadow: rgba(0, 0, 0, 0.5);
    --card-bg: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(0, 0, 0, 0.95);
    --gradient: linear-gradient(135deg, #d4af37 0%, #f5e7c1 100%);
    --dark-gradient: linear-gradient(135deg, #000000 0%, #873d3e 50%, #000000 100%);
    --bg-gradient-primary: rgb(0 0 0 / 53%);
    --bg-gradient-secondary: rgb(0 0 0 / 53%);
    --celebration-bg: #f5e6d3;
    --whatsapp-bg: #25D366;
    --whatsapp-hover: #128C7E;
}

body[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f0f0f0;
    --bg-tertiary: #e0e0e0;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-tertiary: #999999;
    --accent: #b8941f;
    --accent-dark: #8c7314;
    --border: #d0d0d0;
    --shadow: rgba(0, 0, 0, 0.1);
    --card-bg: rgba(0, 0, 0, 0.05);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --gradient: linear-gradient(135deg, #f5e7c1 0%, #d4af37 100%);
    --dark-gradient: var(--bg-primary);
    --bg-gradient-primary: var(--bg-primary);
    --bg-gradient-secondary: var(--bg-secondary);
    --celebration-bg: #f5e6d3;
}

body[data-theme="light"] .hero,
body[data-theme="light"] header {
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-tertiary: #808080;
    --accent: #d4af37;
    --accent-dark: #b8941f;
    --border: #404040;
    --shadow: rgba(0, 0, 0, 0.5);
    --card-bg: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(0, 0, 0, 0.95);
    --gradient: linear-gradient(135deg, #d4af37 0%, #f5e7c1 100%);
    --dark-gradient: linear-gradient(135deg, #000000 0%, #873d3e 50%, #000000 100%);
    --bg-gradient-primary: rgb(0 0 0 / 53%);
    --bg-gradient-secondary: rgb(0 0 0 / 53%);
    --celebration-bg: #f5e6d3;
    --whatsapp-bg: #25D366;
    --whatsapp-hover: #128C7E;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-gradient);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 1001;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.theme-toggle i {
    font-size: 1.5rem;
    color: var(--accent);
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-message {
    background: white;
    color: #333;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 250px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-message.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: var(--whatsapp-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #00000096;
    backdrop-filter: blur(25px);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px 10px 230px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 2rem;
}

.header-logo img {
    width: 160px;
}

.mobile-logo {
    display: none;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-logo i {
    font-size: 2.5rem;
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reserve-btn {
    background: var(--gradient);
    color: var(--bg-primary);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--accent);
    background: none;
    border: none;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.mobile-nav .nav-links a {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 5%;
    font-size: 2.5rem;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero .slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 1s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-slide.active .hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-badge,
.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-buttons {
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.hero-slide.active h1 {
    animation-delay: 0.2s;
}

.hero-slide.active p {
    animation-delay: 0.4s;
}

.hero-slide.active .hero-buttons {
    animation-delay: 0.6s;
}

.hero-badge {
    display: inline-block;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--bg-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 0rem;
    z-index: 3;
}

.slider-navigation button {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-navigation button:hover {
    background: var(--gradient);
    color: var(--bg-primary);
    border-color: transparent;
    transform: scale(1.1);
}

.slider-indicators-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-gradient-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    backdrop-filter: blur(10px);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: -1;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover video {
    transform: scale(1.05);
}

/* Food Showcase Section */
.food-showcase {
    padding: 4rem 5%;
    background: var(--bg-gradient-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.food-showcase .slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

.food-showcase .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.food-showcase .slide {
    flex: 0 0 20%;
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.food-showcase .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-showcase .slide:hover img {
    transform: scale(1.05);
}

.food-showcase .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.food-showcase .slide:hover .slide-content {
    transform: translateY(0);
}

.food-showcase .slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.food-showcase .slide-content p {
    font-size: 0.9rem;
    max-width: 100%;
    line-height: 1.4;
    margin: 0 auto;
}

/* Specials Slider Section */
.specials-slider {
    position: relative;
    background-image: url('../images/auxiliam-6.webp');
    background-size: cover;
    background-position: center;
    padding: 8rem 0%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.specials-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 0;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding-bottom: 40px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.specials-slider .slide {
    height: 400px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

body[data-theme="light"] .slide img {
    filter: brightness(0.9);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto;
}

/* Celebration Occasions Section */
.celebration-occasions {
    padding: 8rem 5%;
    background: var(--celebration-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.celebration-occasions .section-title {
    color: #8B4513; /* Dark brown color for title */
    margin-bottom: 1rem;
}
.celebration-occasions .section-subtitle {
    color: #A0522D; /* Saddle brown color for subtitle */
    max-width: 800px;
    margin: 0 auto 4rem;
}
.celebration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.celebration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.celebration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}
.celebration-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bg-primary);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.celebration-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B4513; /* Dark brown color for text */
}

/* Chef Section */
.chef {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-gradient-primary);
}

.chef-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;
}

.chef-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.chef-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.chef-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.chef-image video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.chef-image:hover video {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.chef-info {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.chef-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: -1;
}

.chef-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.chef-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chef-title {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.chef-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.chef-signature {
    font-style: italic;
    color: var(--accent);
}

/* Gallery Section */
.gallery {
    padding: 4rem 5%;
    background: var(--bg-gradient-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    color: white;
    font-size: 0.9rem;
}

body[data-theme="light"] .gallery-item img {
    filter: brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Image Modal CSS */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.image-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-modal.active img {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    transform: rotate(90deg);
    background: var(--accent);
    color: var(--bg-primary);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 5%;
    background: var(--bg-gradient-primary);
}

.testimonials .slider-container {
    max-width: 1300px;
}

.testimonials .slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 20px 4rem;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
    margin-top: 0.5rem;
}

.rating i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--bg-primary);
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: var(--bg-tertiary);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Footer */
footer {
    background: var(--bg-gradient-secondary);
    padding: 2rem 4% 2rem;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 400px;
    flex: 1;
    margin: 2rem 0;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-card,
.hours-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover,
.hours-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.contact-card i,
.hours-card i {
    color: var(--accent);
    font-size: 1.5rem;
}

.contact-card-text p,
.hours-card p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-card-text .contact-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-card-text a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-text a:hover {
    color: var(--accent);
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.footer-center-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.footer-center-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-center p {
    color: var(--text-secondary);
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.footer-address i {
    color: var(--accent);
    font-size: 1.5rem;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hours-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

.hours-text h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.hours-text p {
    margin: 0;
    color: var(--text-secondary);
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #893e3c;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.google-review-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.google-review-btn i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ff6b6b;
    margin: 0 0.2rem;
}

.footer-logo {
    width: 300px;
}

.mobile-logo img {
    width: 120px;
}

.specials-scroller {
    padding: 60px 20px;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.scroller-track {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.scroller-wrapper {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.scroller-slide {
    width: 300px;
    height: 370px;
    margin-right: 30px;
}

.scroller-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
}

.scroller-content {
    padding: 16px;
}

.scroller-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #fff !important;
}

.scroller-content p {
    font-size: 14px;
    color: #bbb;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Animations */
[class*="animate-"] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in {
    transform: translateY(30px);
}

.animate-fade-in-up {
    transform: translateY(50px);
}

.animate-fade-in-left {
    transform: translateX(-50px);
}

.animate-fade-in-right {
    transform: translateX(50px);
}

.animate-zoom-in {
    transform: scale(0.9);
}

.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    position: relative;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: clamp(1.5px, 0.5vw, 3px) solid var(--border);
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    will-change: transform;
}

.loader-logo {
    width: 65%;
    height: 65%;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    z-index: 1;
    position: relative;
    left: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fa-google {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.map-container {
    width: 100%;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.contact-details {
    width: 100%;
}

.footer-logo-title.blinking {
    font-weight: 600;
    font-size: 39px;
    color: #c1a162 !important;
    font-family: auto;
    animation: slow-blink 3s infinite;
}

@keyframes slow-blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    nav {
        padding: 10px 20px 10px 50px;
    }

    .header-logo img {
        width: 140px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    .theme-toggle {
        top: 22px;
        right: 60px;
    }
    .reserve-btn{
        display: none;
    }

    nav {
        padding: 10px 20px;
        justify-content: space-between;
    }

    .nav-links.nav-links-lg {
        display: none;
    }

    .mobile-logo,
    .mobile-menu-toggle {
        display: flex;
    }

    .header-logo {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
    }

    .about-content,
    .chef-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image,
    .chef-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-main-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        max-width: 500px;
    }

    .food-showcase .slide {
        flex: 0 0 25%;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .testimonials .slide {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .celebration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-showcase .slide {
        flex: 0 0 33.333%;
    }

    .specials-scroller {
        padding: 50px 15px;
    }

    .scroller-slide {
        width: 260px;
        height: 320px;
        margin-right: 25px;
    }

    .scroller-wrapper {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about,
    .specials-slider,
    .celebration-occasions,
    .chef,
    .gallery,
    .testimonials,
    .contact {
        padding: 5rem 4%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specials-slider .slide {
        height: 250px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .chef-name {
        font-size: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-bottom: 1rem;
    }

    .footer-logo {
        width: 200px;
    }

    .celebration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .celebration-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .celebration-name {
        font-size: 1.1rem;
    }

    .food-showcase .slide {
        flex: 0 0 50%;
    }

    .food-showcase .slide-content h3 {
        font-size: 1.2rem;
    }

    .food-showcase .slide-content p {
        font-size: 0.8rem;
    }

    .whatsapp-popup {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .specials-scroller {
        padding: 40px 15px;
    }

    .scroller-slide {
        width: 220px;
        height: 280px;
        margin-right: 20px;
    }

    .scroller-wrapper {
        gap: 25px;
    }

    .scroller-content h3 {
        font-size: 18px;
    }

    .scroller-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .nav-actions a.reserve-btn {
        display: none;
    }

    .hero h1 {
        font-size: 26px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-card,
    .chef-info,
    .contact-form {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.8rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-bottom: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-address {
        flex-direction: column;
        text-align: center;
    }

    .footer-address i {
        margin-bottom: 0.5rem;
    }

    .contact-card,
    .hours-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-card i,
    .hours-card i {
        margin-bottom: 0.5rem;
    }

    .celebration-grid {
        grid-template-columns: 1fr;
    }

    .food-showcase .slide {
        flex: 0 0 100%;
    }

    .specials-scroller {
        padding: 30px 15px;
    }

    .scroller-slide {
        width: 180px;
        height: 240px;
        margin-right: 15px;
    }

    .scroller-wrapper {
        gap: 20px;
    }

    .scroller-content h3 {
        font-size: 16px;
    }

    .scroller-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    .social-links-footer{
        justify-content: center;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .slider-navigation button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .indicator-dot {
        width: 10px;
        height: 10px;
    }

    .theme-toggle {
        width: 45px;
        height: 45px;
        top: 25px;
        right: 60px;
    }

    .theme-toggle i {
        font-size: 1.3rem;
    }

    .celebration-item {
        padding: 1.5rem 1rem;
    }

    .celebration-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .whatsapp-popup {
        bottom: 50px;
        left: 15px;
    }

    .whatsapp-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .whatsapp-message {
        max-width: 200px;
        font-size: 13px;
    }

    .specials-scroller {
        padding: 20px 10px;
    }

    .scroller-slide {
        width: 160px;
        height: 220px;
        margin-right: 15px;
    }

    .scroller-wrapper {
        gap: 15px;
    }

    .scroller-content {
        padding: 12px;
    }

    .scroller-content h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .scroller-content p {
        font-size: 11px;
    }
}

.ascribedesign{
    color: #008600;
}