* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-primary: #7A8A68;
    --sage-light: #9BAE87;
    --sage-dark: #5F6E4E;
    --sage-muted: #B8C8A4;
    --sage-accent: #8FA176;
    --cream: #F9F7F4;
    --warm-white: #FEFCF9;
    --charcoal: #2A2826;
    --charcoal-light: #3A3734;
    --gray-light: #F4F2EF;
    --gray-medium: #8A8680;
    --gray-dark: #5A5854;
    --accent-gold: #D4AF7A;
    --border-sage: rgba(122, 138, 104, 0.2);
    --shadow-sage: rgba(122, 138, 104, 0.15);
    --shadow-soft: rgba(42, 40, 38, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--warm-white);
    overflow-x: hidden;
    font-weight: 300;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(249, 247, 244, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-sage);
    padding: 0px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 18px 0;
    background: rgba(249, 247, 244, 0.98);
    box-shadow: 0 8px 30px var(--shadow-sage);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

a:hover {
    text-decoration: none;
}

button:focus {
    outline: unset;
}

.nav-logo {
    margin-right: 10%;
    font-size: 40px;
    text-transform: uppercase;
}

.nav-logo img{
    max-width: 150px ;
}

.nav-logo h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--sage-primary);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-logo:hover h2 {
    color: var(--sage-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    padding: 10px 0;
    display: inline-block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sage-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sage-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 25px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--sage-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border: 2px solid var(--sage-primary);
    color: var(--sage-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sage-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-sage);
}

.btn:hover::before {
    left: 0;
}

.btn-light {
    border-color: var(--warm-white);
    color: var(--warm-white);
}

.btn-light::before {
    background: var(--warm-white);
}

.btn-light:hover {
    color: var(--sage-primary);
}

/* Elegant Pulsing Lines */
.pulsing-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99;
    overflow: hidden;
}

.pulse-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(122, 138, 104, 0.3) 20%, 
        rgba(122, 138, 104, 0.6) 50%, 
        rgba(122, 138, 104, 0.3) 80%, 
        transparent 100%);
    animation: pulseLine 4s ease-in-out infinite;
}

.pulse-line:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.pulse-line:nth-child(2) {
    left: 35%;
    animation-delay: 1.5s;
    animation-duration: 6s;
}

.pulse-line:nth-child(3) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 4.5s;
}

.pulse-line:nth-child(4) {
    left: 85%;
    animation-delay: 4.5s;
    animation-duration: 5.5s;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0;
        transform: scaleY(0.3);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Hero Section */
.hero-hold {
    position: relative;
}

.hero-hold .hslide {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 9;
}

/*.hero-hold .hslide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #89a67ec9;
    z-index: -1;
}*/

.hero-hold .hslide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #89a67e99;
    z-index: -1;
}

.hero-hold .hslide .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
/*    max-width: 700px;*/
}

.hero-hold .hslide .overlay .sub {
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-hold .hslide .overlay .main {
    text-transform: uppercase;
    color: white;
    letter-spacing: 8px;
}

.hero-hold .hslide .overlay .main h1 {
    font-size: 75px;
    line-height: 80px;
}

.hero-hold .sidebar {
    position: absolute;
    height: 100%;
    z-index: 99;
    left: 0;
    display: flex;
    align-items: center;
    background: #7a8a6894;
}

.hero-hold .sidebar .call-block {
    writing-mode: vertical-lr;
    display: flex;
    transform: rotate(180deg);
    padding: 20px;
    margin-left: 20px;
    color: white;
}

.hero-hold .sidebar .call-block .text {

}

.hero-hold .sidebar .call-block .topline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
}

.hero-hold .sidebar .call-block span {
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: bold;
}

.hero-hold .sidebar .call-block .icon-hold {
    margin-bottom: 20px;
    font-size: 25px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid white;
}



.hero-hold .booking-hold {
    position: absolute;
    bottom: 10%;
    left: 0;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1100px;
    width: 100%;
}

.hero-hold .booking-hold .booking-block {
    background: white;
    text-align: center;
    padding: 20px 30px;
    border-radius: 10px;
}

.hero-hold .booking-hold .booking-block button {
    padding: 10px 20px;
    border-radius: 5px;
    background: #accaa1;
    border: 0;
    color: white;
    font-style: italic;
    height: 50px;
    box-sizing: border-box;
    margin-left: 2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sage-muted) 0%, var(--sage-primary) 50%, var(--sage-dark) 100%);
    background-size: 400% 400%;
    /*animation: float 8s ease-in-out infinite;*/
    opacity: 0.8;
}

/* Parallax decorative elements */
.hero-decoration {
    position: absolute;
    opacity: 0.1;
    animation: slowFloat 20s ease-in-out infinite;
}

.hero-decoration:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-decoration:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.hero-decoration:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes slowFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-content {
    max-width: 800px;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease 0.5s forwards;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(48px, 8vw, 84px);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2); }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.5s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1.5s ease 1.1s both;
}

.hero-buttons .btn {
    color: white;
}

/* Scroll-triggered animations - Fixed */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Welcome Section */
.welcome {
    padding: 140px 0;
    background: var(--warm-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-primary), transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Menu items with staggered animations */
.menu-item {
    padding: 35px 0;
    border-bottom: 1px solid var(--border-sage);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gallery items with wave animation */
.gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: waveIn 0.8s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes waveIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats counter animation */
.stat {
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.stat:nth-child(1) { animation-delay: 0.2s; }
.stat:nth-child(2) { animation-delay: 0.4s; }
.stat:nth-child(3) { animation-delay: 0.6s; }

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Testimonials with fade animation */
.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    margin: 0 10px;
}

.testimonial:nth-child(1) { animation-delay: 0.3s; }
.testimonial:nth-child(2) { animation-delay: 0.5s; }

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Enhanced image placeholder animations */
.image-placeholder {
    /*background: linear-gradient(135deg, var(--sage-light), var(--sage-primary));*/
    height: 450px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background-position: center;
    background-size: cover;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-sage);
}

.image-placeholder:hover::before {
    left: 100%;
}

/* Contact items with slide animation */
.contact-item {
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    background: var(--sage-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.contact-item:hover {
    transform: translateX(5px);
}

/* Enhanced section decorations */
.philosophy {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Footer enhancements */
.footer {
    background: var(--charcoal);
    color: var(--gray-light);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-primary), var(--accent-gold));
    background-size: 200% 100%;
    animation: gradientFlow 4s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(122, 138, 104, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Button enhancement */
.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border: 2px solid var(--sage-primary);
    color: var(--sage-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sage-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-sage);
}

.btn:hover::before {
    left: 0;
}

/* Menu categories enhanced */
.menu-tab {
    background: transparent;
    border: none;
    color: var(--gray-medium);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    transform: translateY(0);
}

.menu-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sage-light), var(--sage-primary));
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: -1;
    transform: scale(0.8);
}

.menu-tab.active,
.menu-tab:hover {
    color: var(--sage-primary);
    transform: translateY(-2px);
}

.menu-tab.active::before,
.menu-tab:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sage-primary);
    transition: width 0.3s ease;
}

.menu-tab.active::after,
.menu-tab:hover::after {
    width: 30px;
}

/* Welcome Section */
.welcome {
    padding: 140px 0;
    background: var(--warm-white);
    text-align: center;
    position: relative;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-primary), transparent);
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--sage-primary);
    font-weight: 300;
    position: relative;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-primary), var(--accent-gold));
}

.welcome-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 50px;
    font-weight: 300;
}

/* Philosophy Section */
.philosophy {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    position: relative;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
    position: relative;
    padding-left: 25px;
}

.philosophy-description::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: var(--sage-primary);
    opacity: 0.3;
    font-family: 'Cormorant Garamond', serif;
}

.chef-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-sage);
}

.chef-name {
    font-size: 18px;
    color: var(--sage-primary);
    font-weight: 500;
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
}

.chef-title {
    font-size: 13px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.image-placeholder {
    /*background: linear-gradient(135deg, var(--sage-light), var(--sage-primary));*/
    height: 600px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-sage);
}

.image-placeholder:hover::before {
    left: 100%;
}

/* About Section */
.about {
    padding: 140px 0;
    background: var(--warm-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding: 50px 0;
    border-top: 1px solid var(--border-sage);
    border-bottom: 1px solid var(--border-sage);
}

.stat {
    text-align: center;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
}

.stat h3 {
    font-size: 42px;
    color: var(--sage-primary);
    margin-bottom: 10px;
    font-weight: 300;
}

.stat p {
    color: var(--gray-medium);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.about-image .image-placeholder {
    height: 550px;
}

/* Menu Section */
.menu {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
}

.menu .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.menu-tab {
    background: transparent;
    border: none;
    color: var(--gray-medium);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
}

.menu-tab.active,
.menu-tab:hover {
    color: var(--sage-primary);
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sage-primary);
    transition: width 0.3s ease;
}

.menu-tab.active::after,
.menu-tab:hover::after {
    width: 30px;
}

.menu-category {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-item {
    padding: 35px 0;
    border-bottom: 1px solid var(--border-sage);
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 50%;
    background: var(--sage-primary);
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-item:hover {
    padding-left: 25px;
}

.menu-item:hover::before {
    width: 3px;
    opacity: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    gap: 25px;
}

.menu-item h3 {
    font-size: 24px;
    color: var(--sage-primary);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.price {
    font-size: 20px;
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    flex-shrink: 0;
}

.menu-item-description {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 15px;
    max-width: 600px;
    font-weight: 300;
    font-style: italic;
}

/* Signature Section */
.signature {
    padding: 140px 0;
    background: var(--warm-white);
}

.signature .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.signature-dish {
    text-align: center;
    transition: all 0.4s ease;
}

.signature-dish:hover {
    transform: translateY(-5px);
}

.signature-image {
    aspect-ratio: 4/3;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.signature-image .image-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.signature-dish:hover .image-placeholder {
    transform: scale(1.05);
}

.signature-name {
    font-size: 26px;
    color: var(--sage-primary);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.signature-description {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 300;
}

/* Gallery Section */
.gallery {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    margin-bottom: 0 !important;
}

.gallery .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 138, 104, 0.2), rgba(95, 110, 78, 0.2));
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px var(--shadow-sage);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--sage-primary), var(--sage-dark));
    color: var(--warm-white);
    text-align: center;
    position: relative;
}

.testimonials .section-title {
    color: var(--warm-white);
    margin-bottom: 80px;
}

.testimonials .section-title::after {
    background: linear-gradient(90deg, var(--warm-white), var(--sage-light));
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.testimonial-author {
    font-size: 15px;
    color: var(--sage-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 140px 0;
    background: var(--warm-white);
}

.contact .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    background: var(--sage-primary);
    border-radius: 50%;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item h3 {
    font-size: 14px;
    color: var(--sage-primary);
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

.contact-item p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 300;
}

.contact-form {
    background: var(--gray-light);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-sage);
}

.form-group {
    margin-bottom: 30px;
}

.form-group p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 0;
    margin-top: 10px;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px 0;
    border: none;
    border-bottom: 2px solid var(--border-sage);
    background: transparent;
    font-size: 15px;
    color: var(--charcoal);
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--sage-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-medium);
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group .btn {
    margin-top: 60px;
    background: var(--sage-primary);
    color: white;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--gray-light);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-primary), var(--accent-gold));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: var(--sage-light);
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 400;
}

.footer-section h4 {
    color: var(--warm-white);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

.footer-section p {
    line-height: 1.7;
    color: var(--gray-medium);
    font-size: 15px;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--sage-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    padding: 12px 18px;
    border: 1px solid var(--sage-primary);
    transition: all 0.3s ease;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.social-link:hover {
    background: var(--sage-primary);
    color: var(--warm-white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--charcoal-light);
    color: var(--gray-medium);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero-hold .sidebar {
        display: none;
    }

    .nav-container {
        padding: 0 25px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--warm-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 30px;
        box-shadow: 0 10px 30px var(--shadow-sage);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .philosophy-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .signature-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .menu-categories {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-form {
        padding: 35px;
    }

    .welcome,
    .philosophy,
    .about,
    .menu,
    .signature,
    .gallery,
    .testimonials,
    .contact {
        padding: 100px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 30px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--sage-primary);
    color: var(--warm-white);
}