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

:root {
    --neon-cyan: #00ffef;
    --hot-pink: #ff1493;
    --electric-purple: #bf00ff;
    --neon-blue: #0099ff;
    --bright-teal: #00e6cc;
    --space-purple: #1a0d2e;
    --deep-space: #0f0620;
    --cosmic-blue: #1e1b4b;
    --menu-pink: #ff69b4;
    --cyber-black: #0a0515;
    --white: #ffffff;
    --gray: #333333;
    --light-gray: #666666;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--space-purple) 0%, var(--deep-space) 50%, var(--cosmic-blue) 100%);
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 5, 21, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
}

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

.nav-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

@keyframes neonFlicker {
    0%, 100% { filter: drop-shadow(0 0 20px var(--neon-cyan)) drop-shadow(0 0 30px var(--neon-cyan)); }
    50% { filter: drop-shadow(0 0 10px var(--neon-cyan)) drop-shadow(0 0 40px var(--bright-teal)); }
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
        linear-gradient(135deg, rgba(26, 13, 46, 0.7) 0%, rgba(15, 6, 32, 0.8) 50%, rgba(30, 27, 75, 0.7) 100%),
        url('./attached_assets/Welcome_1750879702452.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(1.15);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.logo-container {
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.hero-logo {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--neon-blue));
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--neon-cyan), 0 0 50px var(--bright-teal);
    letter-spacing: 4px;
    animation: textGlow 3s ease-in-out infinite alternate;
    text-transform: uppercase;
}

@keyframes textGlow {
    from { text-shadow: 0 0 30px var(--neon-cyan), 0 0 50px var(--bright-teal); }
    to { text-shadow: 0 0 50px var(--hot-pink), 0 0 70px var(--electric-purple); }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--menu-pink);
    font-weight: 600;
    text-shadow: 0 0 20px var(--menu-pink);
    letter-spacing: 1px;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--bright-teal);
    text-shadow: 0 0 15px var(--bright-teal);
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-cyan), var(--electric-purple));
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--hot-pink), var(--neon-cyan));
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--hot-pink);
    border-color: var(--hot-pink);
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 239, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 204, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Sections */
.section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cyber-black) 0%, var(--space-purple) 100%);
    position: relative;
}

.alt-bg {
    background: linear-gradient(135deg, var(--cosmic-blue) 0%, var(--deep-space) 100%);
}

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

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--hot-pink);
    text-shadow: 0 0 20px var(--hot-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--menu-pink);
    opacity: 0.9;
    text-shadow: 0 0 10px var(--menu-pink);
}

/* About Section */
.about-hero-image {
    text-align: center;
    margin-bottom: 3rem;
}

.about-main-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--hot-pink);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.6);
}

.about-text-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

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

.more-fun-section {
    text-align: center;
    margin-top: 3rem;
}

.more-fun-text {
    font-weight: 600;
    color: var(--hot-pink);
    text-shadow: 0 0 15px var(--hot-pink);
    font-size: 1.3rem !important;
}

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

.feature-item {
    background: rgba(255, 20, 147, 0.1);
    border-radius: 20px;
    border: 2px solid var(--hot-pink);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.5);
    border-color: var(--neon-cyan);
}

.feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.feature-content {
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: var(--hot-pink);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 0 15px var(--hot-pink);
}

.feature-content p {
    color: var(--white);
    line-height: 1.6;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    max-width: 200px;
}

.feature-list li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
    transition: color 0.3s ease;
}

.feature-list li:hover {
    color: var(--hot-pink);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Menu Section */
.menu-actions {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--hot-pink), var(--electric-purple));
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px var(--hot-pink);
    text-transform: uppercase;
}

.menu-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--hot-pink);
}

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

.highlight-category {
    background: rgba(255, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--hot-pink);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
}

.category-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
}

.highlight-category h3 {
    color: var(--hot-pink);
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 0 20px var(--hot-pink), 0 0 30px var(--hot-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { 
        text-shadow: 0 0 20px var(--hot-pink), 0 0 30px var(--hot-pink);
    }
    to { 
        text-shadow: 0 0 30px var(--hot-pink), 0 0 40px var(--electric-purple);
    }
}

.highlight-category ul {
    list-style: none;
}

.highlight-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    color: var(--white);
    transition: color 0.3s ease;
}

.highlight-category li:hover {
    color: var(--neon-pink);
}

.highlight-category li:last-child {
    border-bottom: none;
}

/* Specials Section */
.specials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.special-day {
    flex: 0 0 280px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 128, 255, 0.2));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--electric-purple);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.special-day:hover::before {
    left: 100%;
}

.special-day:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.6);
    border-color: var(--neon-cyan);
}

.special-day h3 {
    color: var(--hot-pink);
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--hot-pink);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-day p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--white);
    font-weight: 500;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 20, 147, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--hot-pink);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
}

.info-card h3 {
    color: var(--hot-pink);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--hot-pink);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.map-container iframe {
    filter: hue-rotate(180deg) invert(90%) contrast(120%);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--cyber-black) 0%, var(--dark-purple) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--neon-blue);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo {
    flex: 1;
}

.footer-neon-sign {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 255, 239, 0.4);
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
    margin-bottom: 1rem;
}

.footer-neon-sign:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 255, 239, 0.6);
    border-color: var(--hot-pink);
}

.footer-logo p {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-social {
    flex: 1;
}

.footer-social h4 {
    color: var(--bright-teal);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--bright-teal);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--neon-blue);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link svg {
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.social-link:hover svg {
    filter: drop-shadow(0 0 5px var(--neon-blue));
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    opacity: 0.8;
}

.age-restriction {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--hot-pink);
    text-shadow: 0 0 20px var(--hot-pink);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: attentionGlow 2s ease-in-out infinite alternate;
}

@keyframes attentionGlow {
    from { 
        text-shadow: 0 0 20px var(--hot-pink), 0 0 30px var(--hot-pink);
        transform: scale(1);
    }
    to { 
        text-shadow: 0 0 30px var(--hot-pink), 0 0 40px var(--electric-purple);
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid var(--neon-blue);
    }

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

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

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

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

    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-text-section p {
        font-size: 1.1rem;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.feature-item, .special-day, .info-card, .highlight-category {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }
.special-day:nth-child(2) { animation-delay: 0.1s; }
.special-day:nth-child(3) { animation-delay: 0.2s; }
.special-day:nth-child(4) { animation-delay: 0.3s; }
.special-day:nth-child(5) { animation-delay: 0.4s; }
.special-day:nth-child(6) { animation-delay: 0.5s; }

```

```javascript
document.addEventListener('DOMContentLoaded', function() {
    const navbar = document.querySelector('.navbar');
    const menuHighlights = document.querySelectorAll('.menu-highlights');
    const specialsGrid = document.querySelectorAll('.specials-grid');
    const instagramPhotos = document.querySelectorAll('.instagram-photos');

    // Navbar scroll effect
    window.addEventListener('scroll', function() {
        if (window.scrollY > 50) {
            navbar.style.background = 'rgba(10, 10, 10, 0.98)';
            navbar.style.boxShadow = '0 0 30px var(--hot-pink)';
        } else {
            navbar.style.background = 'rgba(10, 10, 10, 0.95)';
            navbar.style.boxShadow = '0 0 20px var(--hot-pink)';
        }
    });

    // Intersection Observer for menu highlights
    const menuObserver = new IntersectionObserver((entries, observer) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.style.animationPlayState = 'running';
                entry.target.style.boxShadow = '0 0 30px rgba(255, 20, 147, 0.4)';
            }
        });
    }, { threshold: 0.2 });

    menuHighlights.forEach(highlight => {
        highlight.style.animationPlayState = 'paused';
        menuObserver.observe(highlight);
    });

        // Intersection Observer for special days
        const specialObserver = new IntersectionObserver((entries, observer) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.style.animationPlayState = 'running';
                     entry.target.style.boxShadow = '0 0 30px rgba(255, 20, 147, 0.4)';
                }
            });
        }, { threshold: 0.2 });

        specialsGrid.forEach(special => {
            special.style.animationPlayState = 'paused';
            specialObserver.observe(special);
        });

            // Intersection Observer for instagram photos
            const instaObserver = new IntersectionObserver((entries, observer) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        entry.target.style.animationPlayState = 'running';
                         entry.target.style.boxShadow = '0 0 30px rgba(255, 20, 147, 0.4)';
                    }
                });
            }, { threshold: 0.2 });

            instagramPhotos.forEach(photo => {
                photo.style.animationPlayState = 'paused';
                instaObserver.observe(photo);
            });


    // Function to fetch Instagram photos (Placeholder)
    function fetchInstagramPhotos() {
        // Replace this with actual Instagram API call and photo display
        console.log('Fetching Instagram photos...');
    }

    // Call the function to fetch Instagram photos
    fetchInstagramPhotos();
});
```

```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cyberpunk Eats</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
    <script src="script.js"></script>
    <style>
        .highlight-category ul li .item-name {
            font-weight: bold;
            color: #ff1493;
        }
    </style>
</head>
<body>

    <!-- Navigation Bar -->
    <nav class="navbar">
        <div class="nav-container">
            <a href="#" class="nav-logo">
                <img src="assets/logo.png" alt="Cyberpunk Eats Logo" class="nav-logo">
            </a>
            <ul class="nav-menu">
                <li><a href="#home">Home</a></li>
                <li><a href="#about">About</a></li>
                <li><a href="#menu">Menu</a></li>
                <li><a href="#specials">Specials</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
            <div class="hamburger">
                <span></span>
                <span></span>
                <span></span>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section id="home" class="hero">
        <div class="neon-grid"></div>
        <div class="hero-content">
            <div class="logo-container">
                <img src="assets/logo.png" alt="Cyberpunk Eats Logo" class="hero-logo">
            </div>
            <h1 class="hero-title">Cyberpunk Eats</h1>
            <h2 class="hero-subtitle">A Taste of the Future</h2>
            <p class="hero-description">Experience the ultimate fusion of futuristic gastronomy. Indulge in our signature eats and electrifying drinks, crafted with cutting-edge culinary technology.</p>
            <a href="#menu" class="cta-button">Explore the Menu</a>
        </div>
    </section>

    <!-- About Section -->
    <section id="about" class="section alt-bg">
        <div class="container">
            <h2 class="section-title">About Us</h2>
            <p class="section-intro">Step into the neon-lit world of Cyberpunk Eats, where food meets the future. We're not just a restaurant; we're an experience.</p>
            <div class="about-content">
                <div class="about-text">
                    <p>At Cyberpunk Eats, we're passionate about pushing the boundaries of culinary innovation. Our chefs are culinary artists, blending molecular gastronomy with time-honored techniques to create dishes that are as visually stunning as they are delicious.</p>
                    <p>Our ingredients are sourced from sustainable, high-tech vertical farms, ensuring the freshest and most environmentally friendlyCSS and Javascript updated to reflect desired glow, instagram section, and styling updates.```javascript
document.addEventListener('DOMContentLoaded', function() {
    const navbar = document.querySelector('.navbar');
    const menuHighlights = document.querySelectorAll('.menu-highlights');
    const specialsGrid = document.querySelectorAll('.specials-grid');
    const instagramPhotos = document.querySelector('.instagram-photos');

    // Navbar scroll effect
    window.addEventListener('scroll', function() {
        if (window.scrollY > 50) {
            navbar.style.background = 'rgba(10, 10, 10, 0.98)';
            navbar.style.boxShadow = '0 0 30px var(--hot-pink)';
        } else {
            navbar.style.background = 'rgba(10, 10, 10, 0.95)';
            navbar.style.boxShadow = '0 0 20px var(--hot-pink)';
        }
    });

    // Intersection Observer for menu highlights
    const menuObserver = new IntersectionObserver((entries, observer) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.style.animationPlayState = 'running';
                // Add neon glow effect when elements come into view
                entry.target.style.boxShadow = '0 0 30px rgba(255, 20, 147, 0.4)';
            }
        });
    }, { threshold: 0.2 });

    menuHighlights.forEach(highlight => {
        highlight.style.animationPlayState = 'paused';
        menuObserver.observe(highlight);
    });

        // Intersection Observer for special days
        const specialObserver = new IntersectionObserver((entries, observer) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.style.animationPlayState = 'running';
                     entry.target.style.boxShadow = '0 0 30px rgba(255, 20, 147, 0.4)';
                }
            });
        }, { threshold: 0.2 });

        specialsGrid.forEach(special => {
            special.style.animationPlayState = 'paused';
            specialObserver.observe(special);
        });

            // Intersection Observer for instagram photos
            const instaObserver = new IntersectionObserver((entries, observer) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        entry.target.style.animationPlayState = 'running';
                         entry.target.style.boxShadow = '0 0 30px rgba(255, 20, 147, 0.4)';
                    }
                });
            }, { threshold: 0.2 });

            instagramPhotos.forEach(photo => {
                photo.style.animationPlayState = 'paused';
                instaObserver.observe(photo);
            });


    // Function to fetch Instagram photos (Placeholder)
    function fetchInstagramPhotos() {
      const photosContainer = document.querySelector('.instagram-photos');
      photosContainer.innerHTML = ''; // Clear placeholder

      // Replace with actual Instagram API call and photo display logic
      for (let i = 1; i <= 6; i++) {
          const photoDiv = document.createElement('div');
          photoDiv.classList.add('insta-photo');
          photoDiv.textContent = `Photo ${i}`; // Placeholder content
          photosContainer.appendChild(photoDiv);
      }
  }

    // Call the function to fetch Instagram photos
    fetchInstagramPhotos();
});