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

/* Performance Optimizations */
img,
.menu-item-image,
.gallery-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Prevent Layout Shift */
.menu-item-image,
.gallery-image {
    aspect-ratio: 16 / 9;
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --gold: #fbbf24;
    --gold-light: #fef3c7;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray: #6b6b6b;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* Already defined above */

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Prevent text selection on buttons and interactive elements */
button,
.btn,
.tab-btn,
.add-to-cart-btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

/* Better focus states for accessibility */
button:focus,
.btn:focus,
.tab-btn:focus,
.add-to-cart-btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    flex-shrink: 0;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.logo:hover .logo-icon {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.4));
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    transition: var(--transition);
    margin: 0;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
    transition: var(--transition);
}

.logo:hover .logo-text {
    color: var(--primary-color);
}

.logo:hover .logo-subtitle {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
    padding: 5px 0;
}

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

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

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

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

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-phone-btn:hover {
    background: rgba(196, 30, 58, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-phone-btn svg {
    width: 16px;
    height: 16px;
}

.nav-order-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.nav-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: visible;
    padding: 100px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: calc(100vh - 180px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 600;
    animation: fadeInDown 0.8s ease 0.2s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 0.4rem;
}

.title-line {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    margin-top: 0.3rem;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-quick-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.quick-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.quick-info-item svg {
    color: #ffd700;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.quick-info-item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.quick-info-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-info-value {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
}


.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-tertiary {
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    color: #ffd700;
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-weight: 600;
}

.btn-tertiary:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.75rem;
    z-index: 3;
    animation: fadeIn 0.8s ease 0.8s both;
    letter-spacing: 1px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 2px;
    height: 35px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    position: relative;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Styles */
section {
    padding: 60px 0;
}

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

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark);
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--white);
}

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

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

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

.about-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Menu Section */
.menu {
    background: var(--light-gray);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.tab-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.tab-btn:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.tab-btn.active {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    animation: fadeInUp 0.6s ease;
}

.menu-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: menuItemFadeIn 0.6s ease forwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.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; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }
.menu-item:nth-child(7) { animation-delay: 0.7s; }
.menu-item:nth-child(8) { animation-delay: 0.8s; }

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

.menu-item-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-item-badge.best-seller {
    background: #ffd700;
    color: #000;
}

.menu-item-badge.spicy {
    background: #dc3545;
    color: var(--white);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.menu-item:hover .menu-item-image {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    position: relative;
}

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

.menu-item-header h3 {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    margin: 0;
}

.price {
    color: #28a745;
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.menu-item-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 18px 0;
    flex: 1;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--white);
    border: 2px solid var(--light-gray);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.add-to-cart-btn svg {
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover svg {
    transform: scale(1.1);
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    backdrop-filter: blur(2px);
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
    filter: brightness(0.7);
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    font-family: 'Playfair Display', serif;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Gallery item variations for better visual interest */
.gallery-item:nth-child(1) {
    grid-row: span 1;
}

.gallery-item:nth-child(2) {
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-row: span 1;
}

.gallery-item:nth-child(6) {
    grid-row: span 1;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Special Offers Section */
.offers {
    background: var(--white);
    padding: 60px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.offer-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.offer-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.offer-content {
    padding: 30px;
}

.offer-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.offer-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.offer-validity {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-btn {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.offer-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Events & Catering Section */
.events {
    background: var(--light-gray);
    padding: 60px 0;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.events-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.events-text > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.events-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

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

.event-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.event-feature h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.event-feature p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.events-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.events-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Meet the Chef Section */
.chef {
    background: var(--white);
    padding: 60px 0;
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.chef-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.chef-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.chef-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.chef-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: block;
}

.chef-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.chef-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
}

.achievement {
    text-align: center;
}

.achievement-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.achievement-label {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* FAQ Section */
.faq {
    background: var(--light-gray);
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition);
    min-width: 30px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* Location & Map Section */
.location {
    background: var(--white);
    padding: 60px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.location-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.location-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.location-icon {
    font-size: 2rem;
    min-width: 50px;
}

.location-item h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.location-item p {
    color: var(--gray);
    line-height: 1.8;
}

.map-container {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Online Ordering Section */
.ordering {
    background: var(--light-gray);
    padding: 60px 0;
}

.ordering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ordering-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.ordering-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.ordering-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.ordering-text > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.ordering-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

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

.ordering-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.ordering-feature h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.ordering-feature p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Awards & Recognition Section */
.awards {
    background: var(--white);
    padding: 60px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.award-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.award-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.award-card p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.award-year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Gift Cards Section */
.giftcards {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 60px 0;
    color: var(--white);
}

.giftcards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.giftcards-text .section-tag {
    color: var(--gold);
}

.giftcards-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 15px 0 20px;
    color: var(--white);
}

.giftcards-text > p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.giftcards-features {
    margin-bottom: 30px;
}

.giftcard-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.giftcard-feature span {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 30px;
}

.giftcard-feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.giftcards-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.giftcard-preview {
    perspective: 1000px;
}

.giftcard-front {
    width: 350px;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.giftcard-preview:hover .giftcard-front {
    transform: rotateY(0deg) rotateX(0deg);
}

.giftcard-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.giftcard-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.giftcard-code {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-align: center;
    font-family: 'Courier New', monospace;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.info-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.info-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-text p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: var(--dark);
    padding: 70px 0 25px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.social-link {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    padding: 10px 18px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gray);
    transition: var(--transition);
}

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

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

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

/* Responsive Design */

/* Large Desktops */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        padding: 90px 0 60px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 968px) {
    .nav-actions {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-content,
    .contact-content,
    .events-content,
    .chef-content,
    .location-content,
    .ordering-content,
    .giftcards-content {
        grid-template-columns: 1fr;
    }

    .about-features,
    .events-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .testimonials-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .chef-achievements {
        grid-template-columns: 1fr;
    }
}

/* Mobile and Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 70px 0 50px;
    }

    .hero-content {
        padding: 20px 15px;
        gap: 1.2rem;
        min-height: calc(100vh - 140px);
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
        margin-bottom: 0.6rem;
    }

    .title-line {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        margin-top: 0.2rem;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2.2vw, 1rem);
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-quick-info {
        gap: 10px;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }

    .quick-info-item {
        padding: 8px 14px;
        gap: 8px;
    }

    .quick-info-item svg {
        width: 16px;
        height: 16px;
    }

    .quick-info-label {
        font-size: 0.65rem;
    }

    .quick-info-value {
        font-size: 0.75rem;
    }

    /* Navigation */
    .logo {
        gap: 8px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }

    /* Menu Section */
    .menu-tabs {
        gap: 0.5rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item-image {
        height: 200px;
    }

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

    .menu-item-header h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .menu-item-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .add-to-cart-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-overlay span {
        font-size: 1.1rem;
        padding: 15px;
    }

    /* About Section */
    .about-content {
        gap: 40px;
    }

    .about-image {
        height: 350px;
    }

    .about-features {
        gap: 20px;
        margin-top: 30px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    /* Offers */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card {
        margin-bottom: 0;
    }

    /* Events */
    .events-content {
        gap: 40px;
    }

    .events-text h3 {
        font-size: 2rem;
    }

    .events-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .events-image {
        height: 350px;
    }

    /* Chef Section */
    .chef-content {
        gap: 40px;
    }

    .chef-text h3 {
        font-size: 2rem;
    }

    .chef-image {
        height: 350px;
    }

    .chef-achievements {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    /* Newsletter */
    .newsletter {
        padding: 60px 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    /* FAQ */
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    /* Location */
    .location-content {
        gap: 40px;
    }

    .map-container {
        height: 350px;
    }

    /* Ordering */
    .ordering-content {
        gap: 40px;
    }

    .ordering-image {
        height: 350px;
    }

    .ordering-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ordering-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ordering-buttons .btn {
        width: 100%;
    }

    /* Awards */
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .award-card {
        padding: 30px 20px;
    }

    /* Gift Cards */
    .giftcards-content {
        gap: 40px;
    }

    .giftcard-front {
        width: 100%;
        max-width: 100%;
        height: 200px;
    }

    /* Contact */
    .contact-content {
        gap: 40px;
    }

    .contact-form {
        padding: 25px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-hours {
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 15px 10px;
        gap: 1rem;
        min-height: calc(100vh - 120px);
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 15px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Menu */
    .menu-tabs {
        gap: 0.4rem;
        padding: 0 10px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .menu-item-image {
        height: 180px;
    }

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

    .menu-item-header h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .menu-item-content p {
        font-size: 0.85rem;
    }

    /* Gallery */
    .gallery-item {
        height: 250px;
    }

    /* Cards */
    .testimonial-card,
    .offer-card,
    .award-card {
        padding: 20px;
    }

    /* Forms */
    .contact-form,
    .newsletter-form {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-content {
        gap: 25px;
    }

    .footer-section h3 {
        font-size: 1.5rem;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .menu-item-header h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .hero-quick-info {
        gap: 8px;
    }

    .quick-info-item {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* Very Small Devices */
@media (max-width: 320px) {
    .hero {
        min-height: 100vh;
        padding: 55px 0 35px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }
    
    .hero-content {
        min-height: calc(100vh - 120px);
        gap: 1rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .btn {
        flex: 1;
        min-width: 150px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .tab-btn,
    .add-to-cart-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-link {
        padding: 12px 0;
    }

    .menu-item {
        cursor: default;
    }

    .menu-item:hover {
        transform: none;
    }

    .menu-item:active {
        transform: scale(0.98);
    }
}

