/* -------------------------------------------------------------- */
/* MAIN ALL GENERAL */
body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

::selection {
    background-color: #AC1E22;
    color: #fff;
}
/* -------------------------------------------------------------- */
/* HEADER ALL GENERAL */
.header {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    background-color: #AC1E22;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.header-logo {
    display: flex;
    justify-content: center;
}
.header-logo img {
    padding-top: 20px;

    width: 40%;
}
.header-links-top {
    display: flex;
    justify-content: center;

}
.header-link {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    margin: 25px 8px 25px 8px;
    

    box-shadow: inset 0 0 0 0 #FFFFFF;
    color: #FFFFFF;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.header-link {
    color: #FFFFFF;
    position: relative;
    text-decoration: none;
}
.header-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background-color: #FFFFFF;
    bottom: 0;
    left: 0;
    transform-origin: middle;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.header-link:hover::before {
    transform-origin: middle;
    transform: scaleX(1);
}
/* -------------------------------------------------------------- */
/* MENU GENERAL */
* {
    box-sizing: border-box;
  }
.menu {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 300;
}
/* -------------------------------------------------------------- */
.body-panel {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
.item-category {
    width: 500px;
    padding: 50px 0px 0px 0px;
}
.item-category h1 {
    box-shadow: 0 2px 0 #C00000;
}

.item-name {
    font-size: 16px;
    font-weight: bold;
}
.item-desc {
    font-size: 14px;
    font-weight: bolder;
}
.item-block {
    padding: 5px 0px 5px 1px;
}

.price {
    float: right;
    font-weight: bold;
}

.platter-details {
    font-weight: 600;
    text-decoration: #000 underline;
}
.fa-solid {
    color: #C00000;
}
.raw-legend {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    font-weight: 500;
    font-style: italic;
}
.warning-desc {
    text-decoration: underline;
    font-weight: bolder;
}
@media only screen and (max-width: 600px) { 
    .warning-desc {
        padding: 80px 10px 10px 10px;
    }
    .legend-desc {
        padding: 5px 10px 10px 10px;
    }
}
@media only screen and (min-width: 601px) {
    .warning-desc, .legend-desc {
        padding: 10px 25px 10px 25px;
    }
}
/* -------------------------------------------------------------- */
/* MOBILE */
@media only screen and (max-width: 600px) {
    .item-category {
        width: 350px;
    }
    .anchor-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        

        text-decoration: #C00000 underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;

        padding: 69px 0px 0px 0px;
    }
    .anchor-links a {
        padding: 15px 0px 15px 0px;
    }
    .to-top {
        display: none;
    }
}
/* DESKTOP */
@media only screen and (min-width: 601px) {
    .anchor-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;

        padding: 69px 0px 0px 0px;
    }
    .anchor-links a {
        padding: 15px;
    }
    /* HOVER ANCHOR */
    .anchor-link {
        color: #000000;
        position: relative;
        text-decoration: none;
    }
    .anchor-link::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        border-radius: 5px;
        background-color: #C00000;
        bottom: 0;
        left: 0;
        transform-origin: middle;
        transform: scaleX(0);
        transition: transform .3s ease-in-out;
    }
    .anchor-link:hover::before {
        transform-origin: middle;
        transform: scaleX(1);
    }

    /* BACK2TOP DESKTOP*/
    .to-top {
        background: white;
        position: fixed;
        bottom: 16px;
        right:10%;
        width:50px;
        height:50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size:32px;
        color:#1f1f1f;
        text-decoration: none;
        opacity:0;
        pointer-events: none;
        transition: all .4s;
    }
    .to-top.active {
        bottom:32px;
        pointer-events: auto;
        opacity:1;
    }
    
}
/* -------------------------------------------------------------- */
/* ANCHOR LINKS */
html {
    scroll-behavior: smooth;
}
.anchor-links {
    text-transform: uppercase;

    font-size: 15px;
    font-weight: bold;
}
.anchor-links a {
    text-decoration: none;
    color: #000;
}
/* -------------------------------------------------------------- */
/* FOOTER */
.footer-social {
    display: flex;
    justify-content: center;

}
.footer-social a {
    text-decoration: none;
    color: #AC1E22;
}
.fa-brands {
    padding: 15px 10px 0px 10px;
}

.footer-cr{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding-top: 0px;
}
.cr-ignore {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #C00000;
    font-weight: 600;

    text-decoration: none;
    cursor: default;
    pointer-events: none;
}
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */