﻿body {
    margin: 0;
    background: #1c1c1e;
    font-family: 'Bebas Neue', sans-serif;
}

#combos-main {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    width: 80vw;
    padding: 20px;
    box-sizing: border-box;
    margin: 100px auto;
}

.menu {
    background-color: #251f1b;
    width: 18vw;
    height: 100vh;
    left: 0;
    position: fixed;
}

.combo-card {
    width: 90%;
    min-height: 150px;
    height: auto;
    background: #252526;
    position: relative;
    border-radius: 5px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    border: 2px solid #2c2c2c;
}

    .combo-card:hover {
        transition: 0.5s;
        transform: scale(1.05);
    }

.combos-title {
    color: white;
    grid-column: 1 / -1;
    text-align: left;
    justify-self: start;
}

.combo-img {
    width: 16vw;
    border-radius: 5px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

.combo-text {
    width: 80%;
    color: #e3e4e3;
    text-align: center;
    font-size: 20px;
}

.tamano-text {
    font-size: 15px;
    position: absolute;
    color: black;
    top: 0px;
    right: 0px;
    text-align: right;
    z-index: 10;
    background: #e3e4e3;
    padding: 5px;
    border-radius: 5px 0px 0px 5px;
}

.combo-price {
    font-size: 22px;
    position: absolute;
    top: 40px;
    left: 10px;
    text-align: right;
    z-index: 10;
}

.etiqueta {
    position: absolute;
    top: 0px;
    left: -25px;
    width: 160px;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.719));
    z-index: 9;
}

@media (max-width: 650px) {
    .menu {
        width: 100vw;
        height: 60px;
    }

    #combos-main {
        float: none;
        width: 100vw;
    }

    .combos-title {
        margin-top: 60px;
    }
}
