@import url(main.css);

@media screen and (min-width: 520px) and (max-width: 768px){

    main {
        max-width: 768px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menuTitle{
        text-align: center;
        padding: 0.5em;
        font-size: 3em;
        margin-bottom: 1%;
        color: var(--accent-color);
    }

    #paragraph{
        width: 65%;
        text-align: center;
        padding: 0.5em;
        font-size: 1.1em;
        margin-bottom: 5%;
    }

    .bottoni-print{
        display: none;
    }

    #scelta{
        display: flex;
        flex-direction: row;
        padding-right: 5%;
        margin: 0;
        gap: 2%; 
    }
    
    .scelta-item{
        list-style-type: none;
    }

    .class-button{
        font-size: 1.5em;
        font-weight: bold;
        color: white;
        background-color: #2b1c1b;
        border: #2b1c1b;
        cursor: pointer;
        border-bottom: 5px solid var(--link-text-color);
        transition-duration: 0.3s;
    }

    .class-button:hover{
        color: #7f8074;
        border-bottom: 5px solid #7f8074; 
    }

    .class-button.activate{
        color: #6DC0C4;
        border-color: #6DC0C4;
    }

    #Bevande, #Pietanze, #Dolci{
        width: 100%;
        display: block;
        margin-top: 10%;
    }

    #Bevande.hidden, #Pietanze.hidden, #Dolci.hidden{
        display: none;
    }

    #Bevande.show, #Pietanze.show, #Dolci.show {
        display: block;
    }
    .animation{
        display: block;
        animation: fadeInAnimation ease 3s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    @keyframes fadeInAnimation {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }  

    dt.container{ 
        width: 100%;
        display: grid;
        grid-template-columns: 100%;
        padding: 0;
        margin-top: 5%;
        margin-left: 0;
        justify-items: center;
        width: 100%;
    }

    .container-item{
        display: grid;
        grid-template-columns: 15% 50% 12%; 
        grid-template-rows: 100%; 
        padding: 0;  
    }

    span.pietanza, span.costo{
        border-bottom: 2px solid var(--accent-hover-color); 
    }

    dd{
        min-height: 13%;
        margin-bottom: 5%;
    }

    .pietanza > strong{
        font-weight: normal;
    }

    .image-meal{
        grid-row-start: 1;
        margin-right: 0;
        padding-left: 25%; 
        height: 40px;
        width: 40px;
    }
    .pietanza{
        grid-column-start: 2;
        grid-row-start: 1;
        margin: 0;
        padding: 0;
        padding-left: 3%;
        font-size: 1.3em;
        font-weight: bold;
    }

    .costo{
        text-align: right;
        margin-top: 15%;
    }
    .descrizione{
        grid-column-start: 3; 
        grid-column-end: 5;
        margin-top: 0;
        padding-top: 0;
        margin-left: 8%;
        margin-bottom: 0;
        height: 10%; 
        width: 65%; 
        font-size: 1.1em;
    }
    .left-column{ 
        margin-left: 20%;
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .right-column{ 
        margin-left: 20%;
        margin-top: 0;
    }

    .characterization{
        margin-bottom: 10%;
        margin-top: 2%;
        margin-left: 15%;
    }
}

@media screen and (max-width: 520px){
    main {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menuTitle{
        text-align: center;
        padding: 0.5em;
        font-size: 3.2em;
        margin-bottom: 1%;
        color: var(--accent-color);
    }

    #paragraph{
        width: 65%;
        font-size: 1.2em;
        text-align: center;
        padding: 0.5em;
        margin-bottom: 10%;
    }

    ul{
        width: 100%;
        align-content: center;
    }

    .bottoni-print{
        display: none;
    }

    #scelta{
        display: flex;
        width: 80%;
        justify-content: center;
        justify-items: center;
        margin: 0; 
        padding: 0;
        row-gap: 20%;
        column-gap: 8%;
    }
    .scelta-item{
        list-style: none;
    }

    #scelta .scelta-item:nth-child(3) {
        grid-column: 1 / 3; 
    }
   
    .class-button{
        font-size: 100%;
        font-weight: bold;
        color: white;
        background-color: #2b1c1b;
        border: #2b1c1b;
        cursor: pointer;
        border-bottom: 5px solid var(--link-text-color);
        transition-duration: 0.3s;
        margin: 0;
        padding: 0;
        font-size: 1.2em;
    }

    .class-button:hover{
        color: #7f8074;
        border-bottom: 5px solid #7f8074; 
    }

    .class-button.activate{
        color: #6DC0C4;
        border-color: #6DC0C4;
    }

    #Bevande, #Pietanze, #Dolci{
        width: 100%;
        display: block;
    }

    #Bevande.hidden, #Pietanze.hidden, #Dolci.hidden{
        display: none;
    }

    #Bevande.show, #Pietanze.show, #Dolci.show {
        display: block;
    }
    .animation{
        display: block;
        animation: fadeInAnimation ease 3s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    @keyframes fadeInAnimation {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    } 

    .container{ 
        width: 100%;
        display: grid;
        grid-template-columns: 100%;
        padding: 0;
        margin-top: 3%;
        margin-left: 0;
        margin-right: 0;
        justify-items: center;
        margin-top: 12%;
    }

    dt.container-item{
        display: grid;
        grid-template-columns: 75% 25%;
        grid-template-rows: 50% 50%; 
        padding: 0; 
        margin-left: 10%; 
        width: 75%;
    }

    .pietanza > strong{
        font-weight: normal;
    }

    .image-meal{
        grid-row-start: 1;
        grid-column-start:1;
        margin-right: 0;
        height: 40px;
        width: 40px;
    }

    .pietanza{
        grid-row-start: 2;
        margin: 0;
        margin-top: 6%;
        padding: 0;
        font-size: 1.4em;
        font-weight: bold;
        border-bottom: 3px solid var(--accent-hover-color);
    }

    .costo{
        grid-row-start: 2;
        grid-column-start: 2;
        text-align: right;
        margin-top: 17%;
        border-bottom: 3px solid var(--accent-hover-color);
    }

    .descrizione{
        margin-top: 5%;
        margin-left: 2%;
        margin-bottom: 0;
        font-size: 1.2em;
        height: 10%; 
        width: 80%;
        font-size: 1.2em; 
    }

    dl.left-column{
        width: 100%;
        margin-bottom: 0;
    }
    dl.right-column{
        width: 100%;
    }

    .characterization{
        margin-left: 25%;
        margin-bottom: 10%;
    }
}