/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors */
    --primary: #c9a962;
    --primary-light: #dfc88a;
    --primary-dark: #a88b45;
    --secondary: #1a1a1a;
    --accent: #d4a853;
    --dark: #0f0f0f;
    --dark-light: #1c1c1c;
    --gray: #888888;
    --gray-light: #b8b8b8;
    --light: #f5f5f5;
    --white: #ffffff;
    --red: #c41e3a;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-accent: 'Dancing Script', cursive;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 5px 30px rgba(201, 169, 98, 0.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    overflow-x: hidden;
    /* Improve text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-light);
    background-color: var(--dark);
    overflow-x: hidden;
    padding-top: 110px; /* Space for fixed top-bar + header */
    width: 100%;
    max-width: 100vw;
}

body.loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Skeleton Loading Animation */
@keyframes skeleton-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.img-skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

/* Smooth image load transition */
img[data-loaded="false"] {
    opacity: 0;
}

img[data-loaded="true"] {
    opacity: 1;
    transition: opacity 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
    border: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow-x: hidden;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader .circle {
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loader .circle:nth-child(1) { animation-delay: -0.32s; }
.loader .circle:nth-child(2) { animation-delay: -0.16s; }
.loader .circle:nth-child(3) { animation-delay: 0s; }

.loader-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.loader-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.loader-text {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 3px;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* ===== TOP BAR ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: transparent;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.top-bar.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-info span {
    font-size: 13px;
    color: var(--gray-light);
}

.top-info i {
    color: var(--primary);
    margin-right: 8px;
}

.top-info a:hover {
    color: var(--primary);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    color: var(--primary);
    font-size: 12px;
}

.top-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
    will-change: transform, background-color;
    contain: layout style;
}

.header.top-hidden {
    top: 0;
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 40px;
    color: var(--primary);
    font-weight: 700;
}

.logo-name {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--white);
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-reserve {
    background: var(--primary);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-reserve:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Nav Overlay - Hidden on desktop */
.nav-overlay {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: -110px; /* Compensate for body padding */
    padding-top: 110px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 8s ease-out;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.92) 0%,
        rgba(15, 15, 15, 0.75) 50%,
        rgba(15, 15, 15, 0.65) 100%
    );
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-img {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}



.floating-shape {
    position: absolute;
    border: 1px solid var(--primary);
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.shape-2 {
    bottom: 30%;
    right: 15%;
    width: 150px;
    height: 150px;
    animation-direction: reverse;
}

.shape-3 {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation-duration: 30s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge .badge-icon {
    font-size: 20px;
}

.hero-badge span:last-child {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 70px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    color: var(--primary);
    font-style: italic;
}

.typed-text {
    border-right: none;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-medium);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ===== HERO SCROLL ===== */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-accent);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle .line {
    width: 50px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--dark-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-medium);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
}

.about-img-secondary {
    position: absolute;
    top: 40%;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid var(--dark-light);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.about-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

.about-text .lead {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-light);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(201, 169, 98, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition-fast);
}

.feature:hover {
    background: rgba(201, 169, 98, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 13px;
    margin-bottom: 0;
}

.about-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--primary);
    border-radius: 5px;
    transition: var(--transition-fast);
}

.btn-call:hover {
    background: var(--primary);
}

.btn-call:hover,
.btn-call:hover span,
.btn-call:hover strong {
    color: var(--dark);
}

.btn-call i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition-fast);
}

.btn-call:hover i {
    color: var(--dark);
}

.btn-call span {
    font-size: 12px;
    color: var(--gray-light);
    display: block;
}

.btn-call strong {
    font-size: 18px;
    color: var(--white);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    contain: layout style;
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 98, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(73%) sepia(50%) saturate(398%) hue-rotate(8deg) brightness(92%) contrast(88%);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== SPECIAL DISH SECTION ===== */
.special-dish {
    position: relative;
    overflow: hidden;
}

.special-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1553621042-f6e147245754?w=1920&h=1080&fit=crop') center/cover no-repeat fixed;
}

.special-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.9);
}

.special-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.special-image {
    position: relative;
}

.special-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.badge-special {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.special-info .section-subtitle {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.special-title {
    font-family: var(--font-primary);
    font-size: 56px;
    color: var(--white);
    margin-bottom: 25px;
}

.special-desc {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.special-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.old-price {
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
}

.new-price {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary);
    font-weight: 700;
}

/* ===== MENU SECTION ===== */
.menu {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.menu-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 50%;
}

.deco-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid rgba(201, 169, 98, 0.3);
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.menu-tab-content {
    display: none;
}

.menu-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    contain: layout style;
}

.menu-item {
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition-medium);
    contain: layout style;
    will-change: transform;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 98, 0.3);
}

.menu-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-badge.new {
    background: var(--red);
    color: var(--white);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-header h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--white);
}

.menu-price {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.menu-item-info p {
    font-size: 14px;
    color: var(--gray);
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    padding: 50px;
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 15px;
    text-align: center;
    contain: layout style;
    flex-shrink: 0;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.author-info h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.stars {
    color: var(--primary);
    font-size: 14px;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===== SPECIALTIES SECTION ===== */
.specialties {
    background: var(--dark);
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.specialty-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    contain: layout style;
}

.specialty-card.large {
    grid-row: span 2;
}

.specialty-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.specialty-card.large .specialty-image {
    min-height: 630px;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1);
}

.specialty-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-medium);
}

.specialty-card:hover .specialty-overlay {
    opacity: 1;
}

.specialty-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
}

.specialty-overlay h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.specialty-overlay p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.btn-view {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view i {
    transition: var(--transition-fast);
}

.btn-view:hover i {
    transform: translateX(5px);
}

/* ===== RESERVATION SECTION ===== */
.reservation {
    position: relative;
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?w=1920&h=1080&fit=crop') center/cover no-repeat fixed;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.85) 100%);
}

.reservation-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reservation-info .section-subtitle.light {
    color: var(--primary);
    justify-content: flex-start;
    margin-bottom: 20px;
}

.reservation-title {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.reservation-info > p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.reservation-info > p a {
    color: var(--primary);
    font-weight: 600;
}

.reservation-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    font-size: 16px;
    color: var(--white);
}

.contact-item a:hover {
    color: var(--primary);
}

.reservation-form-wrapper {
    background: rgba(28, 28, 28, 0.9);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    backdrop-filter: blur(10px);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px 18px 50px;
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(201, 169, 98, 0.1);
}

.form-group label {
    position: absolute;
    left: 50px;
    top: 18px;
    color: var(--gray);
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: var(--primary);
    background: var(--dark-light);
    padding: 0 10px;
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 16px;
}

.form-group textarea ~ i {
    top: 25px;
    transform: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    justify-content: center;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--dark);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition-medium);
    contain: layout style;
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    margin-bottom: 25px;
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--dark);
    font-size: 30px;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-light);
}

/* ===== RESERVATION SECTION ===== */
.reservation {
    position: relative;
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=1080&fit=crop') center/cover no-repeat fixed;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.9);
}

.reservation-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reservation-image {
    position: relative;
}

.reservation-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.badge-reservation {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.reservation-info .section-subtitle {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.reservation-title {
    font-family: var(--font-primary);
    font-size: 56px;
    color: var(--white);
    margin-bottom: 25px;
}

.reservation-desc {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.reservation-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.reservation-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.reservation-feature i {
    color: var(--primary);
    font-size: 20px;
    width: 24px;
}

.reservation-feature span {
    font-size: 15px;
    font-family: var(--font-secondary);
}

.btn-reserve-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 98, 0.3);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.2);
    flex-grow: 1;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    filter: grayscale(100%) invert(92%) contrast(90%);
}

.contact-cta {
    display: flex;
    gap: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
}

.footer-top {
    padding: 80px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 50px;
}

.footer-logo .logo-name {
    font-size: 28px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-light);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.footer-links a:hover::before {
    width: 15px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-contact span,
.footer-contact a {
    font-size: 14px;
    color: var(--gray-light);
}

.footer-contact a:hover {
    color: var(--primary);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    font-size: 14px;
}

.hours-list li span:first-child {
    color: var(--gray-light);
}

.hours-list li span:last-child {
    color: var(--primary);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-gold);
    will-change: opacity, transform;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-content,
    .special-content,
    .reservation-wrapper,
    .contact-content {
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 90px;
    }
    
    .hero {
        margin-top: -90px;
        padding-top: 90px;
    }
    
    .top-bar {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .top-bar-info {
        gap: 15px;
    }
    
    .top-bar-info span:nth-child(2) {
        display: none;
    }
    
    /* Mobile Nav Overlay */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-fast);
        z-index: 997;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 100px;
        gap: 0;
        transition: var(--transition-medium);
        z-index: 998;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    }
    
    .nav-link {
        padding: 18px 30px;
        font-size: 15px;
        display: block;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(201, 169, 98, 0.1);
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .btn-reserve {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .about-content,
    .special-content,
    .reservation-wrapper,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid,
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-card.large {
        grid-row: span 1;
    }
    
    .specialty-card.large .specialty-image {
        min-height: 350px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    body {
        padding-top: 70px;
    }
    
    .top-bar {
        display: none;
    }
    
    .header {
        position: fixed;
        top: 0 !important;
        left: 0;
        right: 0;
        padding: 12px 0;
        z-index: 1000;
    }
    
    .header.scrolled,
    .header.top-hidden {
        top: 0 !important;
        padding: 10px 0;
    }
    
    .logo-img {
        width: 38px;
        height: 38px;
    }
    
    .logo-name {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 16px;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .btn-reserve {
        display: none;
    }
    
    /* Mobile Nav Overlay */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 999;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        padding-top: 60px;
        min-height: 100vh;
        margin-top: -70px;
        padding-top: 70px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .hero-scroll {
        bottom: 20px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        right: 10px;
        bottom: 10px;
    }
    
    .experience-badge .number {
        font-size: 26px;
    }
    
    .services-grid,
    .menu-grid,
    .contact-info-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .menu-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 8px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .menu-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        flex-shrink: 0;
        padding: 12px 18px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 180px;
    }
    
    .menu-item-info {
        padding: 15px;
    }
    
    .menu-item-header h3 {
        font-size: 16px;
    }
    
    .menu-price {
        font-size: 16px;
    }
    
    .specialty-card .specialty-image {
        min-height: 250px;
    }
    
    .specialty-card.large .specialty-image {
        min-height: 300px;
    }
    
    .specialty-content {
        padding: 20px;
    }
    
    .specialty-content h3 {
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full {
        grid-column: span 1;
    }
    
    .special-title {
        font-size: 40px;
    }
    
    .reservation-form-wrapper {
        padding: 30px 20px;
    }
    
    /* Reservation Section Responsive */
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .reservation-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .reservation-image img {
        max-width: 100%;
    }
    
    .badge-reservation {
        width: 80px;
        height: 80px;
        font-size: 10px;
        padding: 15px;
        right: 10px;
        top: 10px;
    }
    
    .reservation-info .section-subtitle {
        justify-content: center;
    }
    
    .reservation-title {
        font-size: 36px;
    }
    
    .reservation-desc {
        font-size: 15px;
    }
    
    .reservation-features {
        align-items: center;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .contact-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo-name {
        font-size: 15px;
        letter-spacing: 1px;
    }
    
    .hamburger span {
        width: 20px;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        padding: 0 15px;
    }
    
    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .section-subtitle .line {
        width: 25px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-feature {
        padding: 15px;
    }
    
    .about-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .about-feature h4 {
        font-size: 15px;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .btn-call {
        width: 100%;
        justify-content: center;
    }
    
    .service-card,
    .menu-item,
    .feature-card {
        border-radius: 12px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-card h3,
    .feature-card h3 {
        font-size: 18px;
    }
    
    .tab-btn {
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .menu-item-image {
        height: 160px;
    }
    
    .menu-item-info {
        padding: 12px;
    }
    
    .menu-item-header h3 {
        font-size: 15px;
    }
    
    .menu-price {
        font-size: 15px;
    }
    
    .special-price {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        padding: 18px 25px;
        border-radius: 25px;
    }
    
    .old-price {
        font-size: 15px;
    }
    
    .new-price {
        font-size: 38px;
    }
    
    .special-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .reservation-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 14px;
    }
    
    .contact-item {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-item h4 {
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author-name {
        font-size: 16px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo-name {
        font-size: 20px;
    }
    
    .footer-title {
        font-size: 17px;
    }
    
    .footer-links a,
    .footer-hours li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .footer-bottom {
        padding: 20px 0;
        font-size: 12px;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .contact-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.bg-dark { background: var(--dark); }
.bg-dark-light { background: var(--dark-light); }

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--dark-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    contain: layout style;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/2;
    contain: layout style;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 98, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--dark);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    z-index: 10001;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}
