/* ===============
   UPGRADE CSS PLUS+ (MULTI-LAYER PARALLAX & SMOOTH SCROLL)
   =============== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: #0f0f0f;
    color: #f2f2f2;
    transition: background 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

header {
    padding: 20px;
    background: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header h2 {
    margin: 0;
    font-weight: 700;
}

#themeToggle {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

#themeToggle:hover {
    background: #555;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #141414;
}

nav a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffcc00;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    overflow: hidden;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ffcc00;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.cta-btn {
    background: #ffcc00;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background: #e6b800;
    transform: scale(1.1);
}

/* MENU SECTION */
.menu-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.menu-item {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.menu-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

.contact {
    padding: 40px 20px;
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
    margin-top: 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.light-mode {
    background: #ffffff;
    color: #000000;
}
.light-mode header {
    background: #e5e5e5;
}
.light-mode .hero {
    background: #fff;
}

.light-mode nav {
    background: #dcdcdc;
}
.light-mode nav a {
    color: #000;
}
.light-mode nav a:hover {
    color: #ff6600;
}
.light-mode #themeToggle {
    background: #ddd;
    color: #000;
}
.light-mode .menu-item {
    background: #f3f3f3;
}
.light-mode footer {
    background: #e5e5e5;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .cta-btn {
        padding: 10px 20px;
    }
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    padding: 10px;
}

.menu-item {
    padding: 15px;
    border-radius: 12px;
    background: var(--card-bg, #222);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-align: center;
}

.light-mode .menu-item {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}
