.menu-container {
    padding-top: 100px;
    min-height: 100vh;
    background-color: #000000;
}

.menu-title {
    font-family: 'Jaro', sans-serif;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 10px;
}

.menu-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-box {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    width: 250px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
}

.menu-box:hover {
    transform: translateY(-5px);
    background-color: #2a2a2a;
    text-decoration: none;
}

.menu-box h2 {
    color: #b20101;
    margin-bottom: 1rem;
    position: relative;
    z-index: 0;
    font-size: 1.5rem;
}

.menu-box p {
    color: #808080;
    position: relative;
    z-index: 0;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

/* Alternating box colors */
.menu-box:nth-child(odd) {
    background-color:  #b20101;
}

.menu-box:nth-child(even) {
    background-color: #ffffff;
}

/* Text colors based on box background */
.menu-box:nth-child(odd) h2,
.menu-box:nth-child(odd) p {
    color: #ffffff;
}

.menu-box:nth-child(even) h2,
.menu-box:nth-child(even) p {
    color: #000000;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-boxes {
        gap: 1.5rem;
    }
    
    .menu-box {
        width: 220px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .menu-boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-box {
        width: 100%;
        max-width: 300px;
        height: 150px;
    }
} 