/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --accent-red: #dc2626;
    --text-dark: #000000;
    --text-light: #4a4a4a;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-black: #000000;
    --border-color: #e5e5e5;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

body.menu-page {
    background: #faf8f5;
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.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(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

body.menu-page .navbar {
    background: rgba(255, 250, 245, 0.98);
    border-bottom: 2px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

/* Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

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

.logo-nav {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-nav:hover {
    opacity: 0.9;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-nav-icon {
    height: 45px;
    width: auto;
    max-width: 45px;
    object-fit: contain;
}

.nav-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--accent-red);
}

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

.nav-order-link {
    background: var(--accent-red);
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 25px;
    font-weight: 600;
}

.nav-order-link::after {
    display: none;
}

.nav-order-link:hover {
    background: #b91c1c;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

body.menu-page .nav-menu a {
    color: #333333;
}

body.menu-page .nav-menu a:hover {
    color: var(--accent-red);
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-black);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroSlideshow 30s infinite;
    z-index: 0;
}

.hero-bg-1 {
    background-image: url('images/image.png');
    animation-delay: 0s;
}

.hero-bg-2 {
    background-image: url('images/image copy.png');
    animation-delay: -5s;
}

.hero-bg-3 {
    background-image: url('images/image copy 9.png');
    animation-delay: -10s;
}

.hero-bg-4 {
    background-image: url('images/image copy 10.png');
    animation-delay: -15s;
}

.hero-bg-5 {
    background-image: url('images/image copy 11.png');
    animation-delay: -20s;
}

.hero-bg-6 {
    background-image: url('images/image copy 12.png');
    animation-delay: -25s;
}

/* Background slideshow animation with fade effect */
@keyframes heroSlideshow {
    0% {
        opacity: 0;
    }
    3% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

/* Hero Logo */
.logo-hero {
    max-width: 600px;
    width: auto;
    height: auto;
    max-height: 300px;
    margin: 0 auto 1rem;
    display: block;
    object-fit: contain;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--bg-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-red);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-order-online {
    background: var(--accent-red);
    color: white;
}

.btn-order-online:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #b91c1c;
    color: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.menu-header {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(220, 38, 38, 0.15);
}

.menu-header h1 {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.menu .section-header h2 {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--text-dark);
    position: relative;
}

.menu .section-header h2::before {
    display: none;
}

.menu .section-header h2::after {
    display: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    font-weight: 400;
}

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

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

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

.about-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h4 {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
}

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

.menu-preview-button {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: -1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Quick Info Bar */
.quick-info {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.quick-info-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.quick-info-content h4 {
    font-size: 1.1rem;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quick-info-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.quick-info-content a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.quick-info-content a:hover {
    opacity: 0.8;
}

/* Featured Menu Preview */
.menu-preview {
    background: var(--bg-white);
}

.featured-dishes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-dish {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.featured-dish:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

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

.dish-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%);
}

.dish-content {
    padding: 1.5rem;
}

.dish-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.dish-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.dish-price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-red);
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 6px;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 3px solid var(--accent-red);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Menu Section */
.menu {
    background: transparent;
    position: relative;
}

.menu::before {
    display: none;
}

.menu-navigation {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: rgba(255, 250, 245, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(220, 38, 38, 0.1);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}

.category-nav-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) var(--bg-light);
}

.category-nav-container::-webkit-scrollbar {
    height: 6px;
}

.category-nav-container::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.category-nav-container::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 3px;
}

.category-nav-container::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

.category-nav-title {
    display: none;
}

.category-nav-list {
    display: flex;
    gap: 0.75rem;
    padding: 0 20px;
    min-width: max-content;
}

.category-nav-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    color: #666666;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.category-nav-link::after {
    display: none;
}

.category-nav-link:hover {
    color: white;
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.category-nav-link:active {
    transform: none;
}

.menu-categories {
    display: grid;
    gap: 3.5rem;
    position: relative;
    padding-top: 1rem;
}

.menu-category {
    position: relative;
    padding: 0;
}

.menu-category::before {
    display: none;
}

.menu-category h3 {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(220, 38, 38, 0.2);
    position: relative;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.menu-category h3::before {
    display: none;
}

.menu-category h3::after {
    display: none;
}

.category-note {
    font-size: 0.875rem;
    color: #666666;
    font-style: italic;
    margin-bottom: 1.25rem;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 250, 245, 0.6);
    border-left: 3px solid rgba(220, 38, 38, 0.3);
    border-radius: 4px;
    position: relative;
}

.pricing-info {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--accent-red);
}

.menu-items {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem 2rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(220, 38, 38, 0.08);
    overflow: visible;
}

.menu-item:nth-child(even) {
    background: rgba(255, 250, 245, 0.8);
}

.menu-item:last-child {
    border-bottom: none;
}

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

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-red);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px 0 0 8px;
}

.menu-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

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

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu-item h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    flex: 1;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -0.01em;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.menu-badges {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: none;
    transition: none;
    border: 1px solid;
}

.badge:hover {
    transform: none;
}

.badge-vegetarian {
    background: transparent;
    color: #16a34a;
    border-color: #16a34a;
}

.badge-vegan {
    background: transparent;
    color: #15803d;
    border-color: #15803d;
}

.badge-gf {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.menu-item p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.875rem;
    font-weight: 400;
}

.protein-options {
    font-size: 0.75rem;
    color: #666666;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: block;
    border: none;
    font-style: italic;
}

.menu-item .price {
    font-size: 1.125rem;
    font-weight: 700;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--accent-red);
    white-space: nowrap;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    letter-spacing: 0;
}

.menu-item-header,
.menu-item p,
.protein-options {
    grid-column: 1;
}

.menu-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 250, 245, 0.8);
    border-radius: 8px;
    color: #666666;
    border: 1px solid rgba(220, 38, 38, 0.1);
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.08);
    position: relative;
    overflow: visible;
    font-size: 0.875rem;
}

.menu-note::before {
    display: none;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-item h3 {
    font-size: 1.4rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item a {
    color: var(--accent-red);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.info-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.info-item p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer Logo */
.logo-footer {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
    font-size: 0.95rem;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-hero {
        max-width: 400px;
        max-height: 200px;
        width: auto;
    }

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

    .nav-brand-name {
        font-size: 1.3rem;
    }

    .logo-nav-icon {
        height: 35px;
        max-width: 35px;
    }



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

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        height: 350px;
        order: -1;
    }

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

    .gallery-item {
        height: 250px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-dishes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item .price {
        grid-column: 1;
        grid-row: auto;
        align-self: flex-end;
        margin-top: 0.5rem;
    }

    .menu-item-header,
    .menu-item p,
    .protein-options {
        grid-column: 1;
    }

    .menu-badges {
        margin-top: 0.5rem;
    }

    .menu-navigation {
        top: 60px;
        padding: 0.75rem 0;
    }

    .category-nav-list {
        gap: 0.5rem;
        padding: 0 15px;
    }

    .category-nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .menu-category::before {
        display: none;
    }

    .menu-category {
        padding: 1.25rem 0;
    }

    .menu-category h3 {
        font-size: 1.5rem;
    }

    .menu-category h3::before,
    .menu-category h3::after {
        font-size: 1rem;
    }

    .menu .section-header h2 {
        font-size: 1.75rem;
    }

    .menu .section-header h2::before,
    .menu .section-header h2::after {
        font-size: 1.5rem;
    }

    .menu-items {
        gap: 0.875rem;
    }

    .menu-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-hero {
        max-width: 280px;
        max-height: 150px;
        width: auto;
    }

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

    .logo-nav {
        height: 40px;
        max-width: 150px;
    }

    .logo-nav-icon {
        height: 30px;
        max-width: 30px;
    }

    .nav-brand-name {
        font-size: 1.1rem;
    }



    .about-image-wrapper {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

