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

:root {
    --primary-color: #8B4513;
    --primary-dark: #5D2E0F;
    --secondary-color: #FFD700;
    --accent-color: #FFA500;
    --bg-dark: #1a0f0a;
    --bg-darker: #0f0705;
    --bg-card: #2a1810;
    --text-light: #ffffff;
    --text-gray: #b8a088;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(15, 7, 5, 0.98) 0%, rgba(15, 7, 5, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(139, 69, 19, 0.05) 0%, 
        rgba(255, 215, 0, 0.02) 50%, 
        rgba(139, 69, 19, 0.05) 100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo img {
    height: 70px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: var(--transition);
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.logo img:hover {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    transform: scale(1.1) rotate(5deg);
    animation: shake 0.5s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.order-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    border: 2px solid transparent;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-dark);
}

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

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite, fadeInUp 0.8s ease;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

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

.subtitle {
    font-size: 2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(42, 24, 16, 0.8);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.badge:hover {
    background: rgba(139, 69, 19, 0.8);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.badge i {
    color: var(--secondary-color);
}

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

.btn {
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--secondary-color);
    font-size: 2rem;
    text-decoration: none;
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Specialty Section */
.specialty {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

.specialty-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(42, 24, 16, 0.6) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: var(--transition);
}

.specialty-card:hover::before {
    left: 100%;
    transition: left 0.8s ease;
}

.specialty-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
}

.specialty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    transition: var(--transition);
}

.specialty-card:hover .specialty-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.specialty-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.specialty-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.specialty-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Menu Section */
.menu {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-tab {
    background: rgba(42, 24, 16, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.menu-tab:hover,
.menu-tab.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-dark);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Menu Categories */
.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.category-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.subcategory-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 3rem 0 2rem;
    text-align: center;
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(42, 24, 16, 0.4) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.6s ease;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateX(-5px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.25);
}

.menu-item:hover::after {
    transform: translate(50%, -50%) scale(2);
}

.menu-item.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, var(--bg-card) 100%);
}

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

.menu-item h4 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
    flex: 1;
}

.price {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 800;
    white-space: nowrap;
}

.price small {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: block;
    font-weight: 400;
}

.menu-item-note {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Order Section */
.order-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.order-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.order-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.order-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(42, 24, 16, 0.6) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-light);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.platform-card:hover::before {
    width: 500px;
    height: 500px;
}

.platform-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.4);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.platform-card:hover .platform-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: scale(1.1) rotate(5deg);
}

.platform-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.platform-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.platform-card p {
    color: var(--text-gray);
}

/* Branches Section */
.branches {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.branch-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(42, 24, 16, 0.6) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.branch-info {
    padding: 3rem;
}

.branch-info h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.branch-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    width: 30px;
}

.detail-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.detail-item a:hover {
    color: var(--secondary-color);
}

.branch-map {
    height: 100%;
    min-height: 400px;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(42, 24, 16, 0.6) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.contact-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-card a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.social-links {
    text-align: center;
    margin-top: 4rem;
}

.social-links h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.footer-section h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .branch-card {
        grid-template-columns: 1fr;
    }
    
    .branch-map {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(15, 7, 5, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .order-platforms {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Gallery Styles */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.menu-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.menu-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.menu-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 7, 5, 0.95) 0%, transparent 100%);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-image-card:hover .menu-overlay {
    opacity: 1;
}

.menu-overlay p {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Quick Categories */
.menu-quick-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0 0 0;
}

.quick-category {
    background: linear-gradient(135deg, #2a1810 0%, #1a0f0a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-category:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.quick-category i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    display: block;
}

.quick-category h4 {
    color: #FFA500;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quick-category p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Menu Gallery */
@media (max-width: 768px) {
    .menu-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-quick-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .menu-image-card {
        border-radius: 15px;
    }
    
    .menu-overlay p {
        font-size: 1rem;
    }
    
    .quick-category {
        padding: 1.5rem;
    }
    
    .quick-category i {
        font-size: 2.5rem;
    }
    
    .quick-category h4 {
        font-size: 1.3rem;
    }
}
