
h1 {
    text-align: center;
    margin-top: 10px;  /* moved closer to header */
    font-size: 45px;
    color: white;
}

/* MENU LAYOUT */
.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 20px; /* reduced padding-top to move up */
}

/* MENU ITEMS */
.menu-item {
    background-color: white;
    color: black;
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
}

.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: -10px; /* move image up inside box */
}

/* CENTER MENU IMAGE */
.menu-main {
    flex: 2 1 350px;
    max-width: 400px;
    text-align: center;
    background-color: white;
}

.menu-main img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: -20px;
    background-color: white;/* move main menu image up */
}

/* FOOTER */
footer {
    text-align: center;
    padding: 10px;
    background: black;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .menu-container {
        flex-direction: column;
        align-items: center;
        padding-top: 20px; /* less space at top */
    }

    .menu-main {
        max-width: 90%;
        margin: 10px 0; /* reduced margin */
    }

    .menu-item {
        max-width: 90%;
        margin-bottom: 20px;
    }

    h1 {
        margin-top: 5px; /* move title even closer */
        font-size: 35px; /* slightly smaller on mobile */
    }
}



