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

:root {
    --primary-red: #8b0000;
    --dark-red: #6b0000;
    --accent-red: #a00000;
    --black: #0a0a0a;
    --dark-gray: #171717;
    --gray: #404040;
    --light-gray: #737373;
    --white: #ffffff;
    --text-light: #f5f5f5;
    --glass-bg: rgba(139, 0, 0, 0.15);
    --glass-border: rgba(255, 255, 255, 0.18);
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated background particles */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(139, 0, 0, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(139, 0, 0, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 20%,
            rgba(139, 0, 0, 0.05) 0%,
            transparent 50%
        );
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(139, 0, 0, 0.5);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        #8b0000,
        #a00000,
        #ff4500,
        #a00000,
        #8b0000
    );
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition:
        opacity 0.4s ease,
        background-position 0.4s ease;
}

.logo:hover::before {
    opacity: 0.6;
    animation: flame-border 3s ease infinite;
}

@keyframes flame-border {
    0%,
    100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.logo h1 {
    background: linear-gradient(135deg, #8b0000, #a00000, #8b0000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 8px rgba(139, 0, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover h1 {
    -webkit-text-fill-color: #0a0a0a;
    color: #0a0a0a;
    background: none;
    animation: flame-text 4s ease infinite;
    text-shadow:
        0 0 15px rgba(255, 69, 0, 1),
        0 0 25px rgba(255, 69, 0, 0.8),
        0 0 35px rgba(255, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(255, 69, 0, 0.4);
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.9));
}

.logo h1::after {
    content: "Bomonti Sokak Lezzetleri";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ff4500, #ff6347, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.logo:hover h1::after {
    opacity: 0.6;
    animation: flame-glow 2s ease-in-out infinite alternate;
}

@keyframes flame-text {
    0%,
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.6)) brightness(1);
    }
    25% {
        background-position: 100% 0%;
        filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.8)) brightness(1.1);
    }
    50% {
        background-position: 100% 100%;
        filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.9)) brightness(1.2);
    }
    75% {
        background-position: 0% 100%;
        filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.8)) brightness(1.1);
    }
}

@keyframes flame-glow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.logo:hover {
    background: rgba(10, 10, 10, 0.6);
    border-color: rgba(255, 69, 0, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        0 0 50px rgba(255, 69, 0, 0.6),
        inset 0 0 30px rgba(255, 69, 0, 0.2);
    transform: scale(1.02);
}

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

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.7rem 2rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: rgba(139, 0, 0, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.nav a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 0, 0, 0.25),
        rgba(160, 0, 0, 0.15)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.nav a::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: left 0.8s ease;
    left: -100%;
    z-index: 0;
}

.nav a:hover::before {
    opacity: 1;
}

.nav a:hover::after {
    left: 100%;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
    background: rgba(139, 0, 0, 0.2);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow:
        0 8px 25px rgba(139, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 1px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(139, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.35), rgba(107, 0, 0, 0.3)),
        url("https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?w=1920&h=1080&fit=crop&auto=format")
            center/cover;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 auto;
    word-break: keep-all;
    text-wrap: balance;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 800;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-primary {
    display: inline-block;
    background: rgba(139, 0, 0, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    color: var(--white);
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 -1px 1px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 0, 0, 0.3),
        rgba(160, 0, 0, 0.2)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: left 0.8s ease;
    left: -100%;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background: rgba(139, 0, 0, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 50px rgba(139, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(139, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Featured Dishes Section */
.featured-dishes {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        rgba(23, 23, 23, 0.95) 0%,
        rgba(10, 10, 10, 0.98) 100%
    );
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8b0000, #a00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.5));
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
    border-radius: 2px;
    animation: expand 2s ease-in-out infinite;
}

@keyframes expand {
    0%,
    100% {
        width: 100px;
    }
    50% {
        width: 200px;
    }
}

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

.dish-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(139, 0, 0, 0.2);
    position: relative;
}

.dish-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.dish-card:hover::before {
    opacity: 1;
}

.dish-card:hover {
    transform: translateY(-15px) rotateY(5deg) scale(1.02);
    box-shadow:
        0 20px 60px rgba(139, 0, 0, 0.6),
        0 0 40px rgba(139, 0, 0, 0.4);
    border-color: rgba(139, 0, 0, 0.6);
}

.dish-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.dish-card:hover .dish-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.dish-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(139, 0, 0, 0.3),
        transparent
    );
    padding: 2rem;
    z-index: 2;
}

.dish-overlay h3 {
    background: linear-gradient(135deg, #fff, #a00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    filter: drop-shadow(0 2px 10px rgba(139, 0, 0, 0.8));
    transition: all 0.3s ease;
}

.dish-card:hover .dish-overlay h3 {
    transform: translateY(-5px);
    filter: drop-shadow(0 4px 15px rgba(139, 0, 0, 1));
}

.dish-card p {
    padding: 2rem;
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.98) 0%,
        rgba(23, 23, 23, 0.95) 100%
    );
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 4rem;
    border-radius: 30px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(139, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8b0000, #a00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.5));
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        rgba(23, 23, 23, 0.95) 0%,
        rgba(10, 10, 10, 0.98) 100%
    );
    position: relative;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-item {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(139, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(139, 0, 0, 0.2) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.contact-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(139, 0, 0, 0.6);
    box-shadow:
        0 20px 60px rgba(139, 0, 0, 0.5),
        0 0 40px rgba(139, 0, 0, 0.3);
}

.contact-item h3 {
    background: linear-gradient(135deg, #8b0000, #a00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 2;
    position: relative;
    z-index: 1;
}

/* Menu Page Styles */
.menu-hero {
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.35), rgba(107, 0, 0, 0.3)),
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=1080&fit=crop&auto=format")
            center/cover;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.menu-hero::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(139, 0, 0, 0.15) 0%,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
}

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

.menu-hero h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.menu-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.menu-section {
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.98) 0%,
        rgba(23, 23, 23, 0.95) 100%
    );
    position: relative;
}

.menu-category {
    margin-bottom: 4rem;
    background: rgba(23, 23, 23, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(139, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #8b0000, #a00000, #8b0000);
    background-size: 100% 200%;
    animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
    0%,
    100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
}

.menu-category:hover {
    transform: translateX(10px) scale(1.02);
    border-color: rgba(139, 0, 0, 0.6);
    box-shadow:
        0 20px 60px rgba(139, 0, 0, 0.4),
        inset 0 0 40px rgba(139, 0, 0, 0.15);
}

.category-title {
    background: linear-gradient(135deg, #8b0000, #a00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid rgba(139, 0, 0, 0.5);
    padding-bottom: 1rem;
    font-weight: 800;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
    position: relative;
}

.menu-items {
    list-style: none;
    padding-left: 0;
}

.menu-items li {
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu-items li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b0000, #a00000);
    transition: width 0.4s ease;
}

.menu-items li:hover {
    padding-left: 1.5rem;
    color: #a00000;
    transform: translateX(5px);
}

.menu-items li:hover::after {
    width: 100%;
}

.menu-items li::before {
    content: "◆";
    background: linear-gradient(135deg, #8b0000, #a00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(139, 0, 0, 0.8));
    transition: transform 0.3s ease;
}

.menu-items li:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.menu-variants {
    color: var(--light-gray);
    font-size: 1rem;
    font-style: italic;
    opacity: 0.8;
}

.menu-price {
    float: right;
    color: #ff4500;
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 1rem;
    background: linear-gradient(135deg, #ff4500, #ff6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.5));
}

.sub-category {
    margin-top: 2.5rem;
    margin-left: 2rem;
    padding: 1.5rem;
    padding-left: 2rem;
    border-left: 4px solid rgba(139, 0, 0, 0.5);
    background: rgba(139, 0, 0, 0.05);
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(10px);
}

.sub-category h4 {
    background: linear-gradient(135deg, #8b0000, #a00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 2px solid rgba(139, 0, 0, 0.5);
    padding: 2.5rem 0;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(139, 0, 0, 0.2);
}

.footer p {
    color: var(--text-light);
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 15px;
    }

    .logo {
        padding: 0.6rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
    }

    .nav a {
        padding: 0.5rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
        padding: 0 15px;
    }

    .hero h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        padding: 0 15px;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .dish-card {
        border-radius: 20px;
    }

    .menu-hero {
        height: 40vh;
        min-height: 300px;
        padding: 0 15px;
    }

    .menu-hero h2 {
        font-size: 2rem;
    }

    .menu-hero p {
        font-size: 1.1rem;
    }

    .category-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .menu-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }

    .menu-items li {
        font-size: 1rem;
        padding: 0.8rem 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .menu-price {
        float: none;
        margin-left: auto;
        font-size: 1rem;
    }

    .menu-variants {
        font-size: 0.85rem;
        width: 100%;
        margin-top: 0.3rem;
        display: block;
    }

    .sub-category {
        margin-left: 0;
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .contact-item {
        padding: 2rem 1.5rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .logo {
        padding: 0.5rem 1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .nav a {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

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

    .category-title {
        font-size: 1.3rem;
    }

    .menu-items li {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }

    .menu-price {
        font-size: 0.95rem;
    }

    .menu-category {
        padding: 1.2rem;
        border-radius: 15px;
    }

    .container {
        padding: 0 15px;
    }
}
