@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fdfdfd;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, #ffc14d, #ffdfa4);
    color: #000000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: #ffbd42;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 26px;
    font-weight: bold;
    padding: 1rem 2rem;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #ffc300;
}


/* Dropdown */

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
}

.dropdown-content a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* Mobile Responsive */

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #ffbd42;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        max-height: 90vh;
        overflow-y: auto;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 1rem 0;
    }
    .nav-menu ul li {
        text-align: center;
        width: 100%;
    }
    .nav-menu ul li a {
        display: block;
        padding: 1rem;
        width: 100%;
        background-color: #5a6268;
        border-radius: 0;
    }
    .dropdown-content {
        position: relative;
        display: none;
        box-shadow: none;
        background-color: #ffde7b;
        padding: 0;
    }
    .dropdown-content a {
        padding: 12px;
        text-align: center;
        color: white;
        background-color: #ffa726;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .dropdown-content a:hover {
        background-color: #fb8c00;
    }
    .dropdown:hover .dropdown-content {
        display: none;
        /* disable hover in mobile */
    }
    .dropdown.open .dropdown-content {
        display: block !important;
    }
}


/* Menu section */

.menu-category {
    text-align: center;
    margin-top: 2rem;
    font-size: 28px;
    font-weight: 600;
    color: #ffb14b;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 2rem;
    padding: 2rem;
}

.menu-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    width: 220px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1rem;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.menu-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 0.3rem;
}

.label-new {
    color: #ffc300;
    font-size: 0.85rem;
    font-weight: 600;
}


/* Order & Form */

.order-section {
    text-align: center;
    margin: 3rem 0;
}

.order-section input,
.order-section select {
    padding: 0.75rem;
    margin: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 200px;
    max-width: 90%;
}

.order-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.order-summary {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.order-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-summary li {
    margin-bottom: 8px;
}

.order-btn {
    background: #ffc300;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.order-btn:hover {
    background: #ffb100;
}

#qrcode {
    margin-top: 15px;
}