:root {
    --bg-color: #fdf8f5;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --accent-orange: #ff5722;
    --accent-yellow: #ffc107;
    --accent-red: #e91e63;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Glassmorphism Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(253, 248, 245, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--accent-orange);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--accent-orange);
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 50px;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-red), var(--accent-yellow));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.primary-btn {
    padding: 16px 40px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 87, 34, 0.4);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    font-family: var(--font-heading);
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-yellow);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite alternate;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-red);
    bottom: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite alternate-reverse;
}

.image-mask {
    position: absolute;
    width: 350px;
    height: 350px;
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-mask:hover img {
    transform: scale(1.1);
}

.mask-1 {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 5%;
    left: 15%;
    width: 380px;
    height: 380px;
}

.mask-2 {
    clip-path: circle(50% at 50% 50%);
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
}

.floating {
    animation: floatY 6s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(-10px, 30px); }
    75% { transform: translate(-30px, -10px); }
}

/* Menu Section */
.menu-section {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 87, 34, 0.3);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.food-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.food-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.15);
}

.card-img-wrapper {
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.food-card:hover .card-img-wrapper img {
    transform: scale(1.15) rotate(3deg);
}

/* Focus glow on hover */
.food-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 2px transparent;
    transition: box-shadow 0.3s ease;
}
.food-card:hover::after {
    box-shadow: inset 0 0 0 2px var(--accent-orange);
}

/* Abstract masks for food items in cards */
.mask-3 { clip-path: circle(50% at 50% 50%); }
.mask-4 { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.mask-5 { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.mask-6 { border-radius: 50% 50% 20% 80% / 20% 80% 50% 50%; }

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

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.price {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.add-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--text-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: background 0.3s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.add-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .glass-nav {
        padding: 15px 5%;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-visual {
        margin-top: 60px;
        width: 100%;
        height: 400px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mask-1 {
        width: 280px;
        height: 280px;
        top: 0;
        left: 10%;
    }

    .mask-2 {
        width: 220px;
        height: 220px;
        bottom: 5%;
        right: 10%;
    }
    
    .orb-1, .orb-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 40px;
    }
    
    .mask-1 {
        width: 200px;
        height: 200px;
        top: 0;
        left: 5%;
    }
    
    .mask-2 {
        width: 160px;
        height: 160px;
        bottom: 0;
        right: 5%;
    }
    
    .stats {
        margin-top: 15px;
    }
    
    .stat-item span {
        font-size: 2rem;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .food-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
        gap: 20px;
    }
    
    .food-card {
        padding: 20px;
    }
}
