/* Top Menu */
.top-menu-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-btn {
    display: block;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(30, 20, 15, 0.95);
    border: 1px solid #5a4a40;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    text-decoration: none;
    padding-bottom: 15px;
    width: 320px;
}

.menu-img-wrapper {
    padding: 15px;
    /* Image padding */
    width: 100%;
    display: flex;
    justify-content: center;
}

.menu-btn img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 280px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-desc {
    color: #d7deea;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    padding: 0 15px;
    margin: 5px 0 0;
}

/* Hover Effect */
.menu-btn:hover {
    border-color: #d16a3a;
    box-shadow: 0 8px 25px rgba(227, 124, 66, 0.35);
    transform: translateY(-5px);
}

.menu-btn:hover img {
    transform: scale(1.02);
}

.menu-btn:hover .menu-desc {
    color: #fff;
}


/* Mobile Layout */
@media (max-width: 768px) {
    .top-menu-container {
        flex-direction: column;
        gap: 24px;
        /* Increased gap */
        padding: 20px 15px;
        align-items: center;
    }

    .menu-btn {
        width: 100%;
        max-width: 500px;
        /* Increased max-width */
        height: auto;
        display: block;
    }

    .menu-img-wrapper {
        height: 150px;
        /* Fixed height for cropping */
        padding: 15px;
        /* Consistent padding */
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }

    .menu-btn img {
        width: 100%;
        height: 100%;
        max-width: none;
        /* Reset max-width to allow full width */
        object-fit: cover;
        /* Crop */
        object-position: center;
        /* Center */
        border-radius: 8px;
    }

    .menu-desc {
        padding: 0 15px 15px;
        font-size: 16px;
        /* Larger font */
        font-weight: bold;
        /* Make it pop more */
    }
}