:root {
    --mycolor-main: rgba(211,158,88,255);
    --mycolor-main2: #C18433;
    --mycolor-secondary: rgba(93,76,50,255);
    --mycolor-accent: rgba(234,222,184,255);
    --mycolor-logo: rgba(116,63,47,255);
    --mycolor-black: rgba(2,1,0,255);
}

.fixed-bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: 100%;
    color: var(--mycolor-secondary);
    display: table;
}

.scroll-bg {
    background-color: var(--mycolor-main, black);
    padding: 10px 70px;
    color: var(--mycolor-secondary, black);
}

@media only screen and (max-width: 768px) {
    .scroll-bg {
        background-color: var(--mycolor-main, black);
        padding: 10px 20px;
        color: var(--mycolor-secondary, black);
    }
}





/* 1 TITLE */

.title {
    background-image: url('/images/temp/chicken.jpg');
}

#logo--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 36px auto;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
    vertical-align: baseline;
}

.tile h1 {
    display: table-cell;
    vertical-align: middle;
}

.logo {
    width: 200px;
}






/* 2 WELCOME */

.welcome{
    text-align: center;
}



.welcome p {
    margin: 24px;
    text-align: center;
}



.slogan {
    padding: 12px;
    font-size: 1.5em;
    font-style: italic;
}



#delivery-logo--container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    /* align-items: center; */
    align-items: stretch;
}

@media only screen and (max-width: 768px) {
    #delivery-logo--container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }
}

.delivery-logo {
    display: flex;
    align-items: center;
    border: solid transparent;
    border-radius: 12px;
    width: 30%;
    min-width: 150px;
    max-width: 250px;
}

.delivery-logo:hover {
    cursor: pointer;
    background-color: var(--mycolor-main2);
}

.delivery-logo img{
    max-width: 100%;
    max-height: 100%;
}





/* 3 MENU */

.menu {
    background-color: black;
}



/* 3A MENU CATEGORIES */

#menu-cat--container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.menu-cat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 12px;
    border: solid 6px transparent;
    border-radius: 12px;
    width: 150px;
    height: 150px;
    background-color: white;
    text-align: center;
}

.menu-cat:hover,
.highlight {
    border: solid 6px var(--mycolor-accent);
}

@media only screen and (max-width: 768px) {
    .menu-cat {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 12px;
        border: solid 6px transparent;
        border-radius: 12px;
        width: 300px;
        height: 150px;
        background-color: white;
        text-align: center;
    }
    
    .highlight {
        border: solid 6px var(--mycolor-accent);
    }

}

.cat-icon {
    width: 100px;
}



.menu-panel--container {
    align-items: center;
    margin: 12px;
    width: auto;
}

.menu-panel {
    margin: 12px;
    border-radius: 12px;
    width: 80%;
    height: auto;
    padding: 12px;
    background-color: white;
}



/* 3B MENU PANEL */

.menu-items--container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

/* override for breakfast addons & desserts */
.menu-items--container.addons,
.menu-items--container.dessert {
    flex-direction: column;
    flex-wrap: nowrap;
}

.menu-items--container.addons .item-info--container,
.menu-items--container.dessert .item-info--container{
    width: 80%;
}



.menu-panel{
    display: none; /*hide on default*/
    opacity: 0; /*start transparent*/
    /* transition: 0.6s ease opacity 0.6s ease transform; */
    /* transition: opacity 0.3s; */
}

@media only screen and (max-width: 768px) {
    .menu-panel--container {
        margin: 6px;
    }
    .menu-panel{
        margin: 6px;
        min-width: 300px;    
    }
}

.menu-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 12px;
    width: 300px;
    height: auto;
    color: var(--mycolor-main, black);
}

.item-info--container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.item-name {
    font-weight: bold;
}

.item-price {
    text-align: right;
}

.item-desc {
    font-size: 0.8em;
    color: var(--mycolor-black, black);
}





/* 4 CONTACT */

.contact {
    background-image: url('/images/temp/lumpia.jpg');
    min-height: 600px;
}

#contact-info--container {
    display: flex;
    flex-direction: column;
    align-self: center;
    margin: 36px;
    border-radius: 24px;
    width: fit-content;
    padding: 12px;
    height: fit-content;
    background-color: white;
}

@media only screen and (max-width: 768px) {
    #contact-info--container {
        display: flex;
        flex-direction: column;
        align-self: center;
        margin: 12px;
        border-radius: 24px;
        width: fit-content;
        padding: 12px;
        height: fit-content;
        background-color: white;
    }
}

#contact-info--container div {
    margin: 12px;
}





/* 5 LOCATION */

#map {
    width: 100%;
    min-width: 300px;
    max-width: 100%;
    min-height: 500px;
    position: relative;
    padding-bottom: 10%;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .location {
        padding: 0px;
    }
    #map {
        width: 100%;
        min-width: 300px;
        max-width: 100%;
        min-height: 500px;
        position: relative;
        padding: 0px;
        overflow: hidden;
    }
}

#map iframe {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100% !important;
}





/* 5 FOOTER */

#footer {
    text-align: center;
    color: white;
    background-color: var(--mycolor-black, black);
    padding: 2px;
}
