/* Title and Textboxes */

title {
    display: inherit;
    text-align: center;
    align-self: center;
    font-size: var(--font-title-size);
    background-color: rgb(255, 255, 255, .9);
    color: rgb(255, 77, 0);
    margin-bottom: 2vw;
    /*margin-bottom: var(--font-title-textbox-size);*/
}

.textbox {
    background-color: rgb(0, 0, 0, .5);

    align-self: center;

    padding: 10px;
    margin: 10px;
    -moz-box-shadow:0px 0px 10px #000000;
    -webkit-box-shadow:0px 0px 10px #000000;
    box-shadow:0px 0px 10px #000000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: auto;
    line-height: var(--font-title-textbox-size);
}

.textbox > title {
    background-color: transparent;
    font-size: var(--font-title-textbox-size);
    color: rgb(255, 236, 59);
    margin-bottom: 10px;
}

.textbox::-webkit-scrollbar {
    width: 7.5px;
    height: 7.5px;
    background: transparent;
}

.textbox::-webkit-scrollbar-corner {
    background: transparent;
}

.textbox::-webkit-scrollbar-thumb {
    background: lightgray;
    border-radius: 100px;
}

/* Who We Are Section */

#WhoWeAre {
    height: auto;
    background-image: url('../Images/yellowPattern.jpg');
    background-repeat: repeat;
    background-size: 350px;
    background-position-y: top;
    background-color: rgb(255, 236, 59);
}

#WhoWeAreSection {
    max-width: 50vw;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#WhoWeAreText {
    font-size: var(--font-button-size);
    color: white;
    line-height: 37.5px;
    margin: 0 2vw;
    text-shadow: 2px 2px 5px rgb(0, 0, 0, .5);
}

.WhoWeAreLogo {
    height: 15vw;
    margin-top: 20px;
    -moz-box-shadow: 2px 2px 5px #000000;
    -webkit-box-shadow: 2px 2px 5px #000000;
    box-shadow: 2px 2px 5px #000000;
}

#WhoWeAreImages {
    margin-right: 10vw;
    margin-left: 5vw;
    margin-bottom: 2vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

#WhoWeAreImages > div {
    position: relative;
    height: 5vw;
}

/* Food Images */

.WhoWeAreImages {
    height: 19.5vw;
    margin-top: -50%;
    border: .5vw white solid;
    box-shadow: 2px 2px 5px rgb(0, 0, 0, .5);
}
#WhoWeAreImages > div:nth-child(1) {
    left: -9vw;
    rotate: -2deg;
}
#WhoWeAreImages > div:nth-child(2) {
    left: 9vw;
    rotate: 7deg;
}
#WhoWeAreImages > div:nth-child(3) {
    left: -9vw;
    rotate: -5deg;
}

/* Picture Emojis */

#WhoWeAreImages > div > div {
    position: relative;
    top: -5vw;
    width: 0px;
    font-size: 4.5vw;
    text-shadow: 2px 2px 5px black;
}
#WhoWeAreImages > div:nth-child(2n - 1) > div {
    left: -1.5vw;
}
#WhoWeAreImages > div:nth-child(2) > div {
    left: 75%;
}

/* Catering */

#Catering {
    height: auto;
    background-image: url('../Images/truckImage.webp');
    background-color: rgb(123, 108, 211);
}

#CateringSVG1 {
    align-self: end;
    width: 35vw;
    transform: scaleY(2);
    margin-top: 2vw;
}

#CateringSVG2 {
    display: none;
    align-self: center;
    max-width: 500px;
    width: 85vw;
    transform: scaleY(2);
    margin-top: 4vw;
}

#CateringTextbox {
    font-size: var(--font-button-size);
    color: white;
    line-height: 45px;
    padding: 1vw 1.25vw;
}

/* Gallery Section */

#Gallery {
    height: auto;
    flex-direction: column;
    background-image: url('../Images/galleryPattern.jpg');
    background-repeat: repeat;
    background-size: 200px;
    background-position-y: top;
    background-color: aliceblue;
}

#Gallery > title {
    color: rgb(72, 54, 211);
    background-color: rgb(255, 236, 59, .9);
}

#GalleryImgs {
    margin: 0 2.5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

#Gallery > div > img {
    cursor: pointer;
    display: inline-block;
    height: 13vw;
    margin-bottom: 10px;
    border: .2vw rgb(200, 200, 200) solid;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
    box-shadow: 2px 2px 2px rgb(0, 0, 0, .5);
}

#Gallery > div::-webkit-scrollbar {
    width: 7.5px;
    height: 7.5px;
    background: transparent;
}

#Gallery > div::-webkit-scrollbar-corner {
    background: transparent;
}

#Gallery > div::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 100px;
}

#GalleryOverlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
    font-size: var(--font-title-textbox-size);
    color: white;
    text-shadow: 3px 3px 5px black;
    text-align: center;
    display: none;
}

#GalleryOverlay > img {
    max-width: 90%;
    max-height: 80%;
    border: .25vw rgb(200, 200, 200) solid;
    border-radius: 10px;
    -moz-box-shadow: 3px 3px 10px #000000;
    -webkit-box-shadow: 3px 3px 10px #000000;
    box-shadow: 3px 3px 10px #000000;
    margin-bottom: .5%;
}

.GallerySortBttn {
    width: 125px;
    margin: 5px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 2px rgb(0, 0, 0, .5);
}

/* Mobile Modifications */

@media screen and (max-width: 975px) {
    #WhoWeAre {
        flex-direction: column;
        align-items: center;
        padding-bottom: 0px;
    }
    #WhoWeAreSection {
        max-width: 95vw;
    }
    #WhoWeAreImages {
        margin: auto;
        flex-direction: row;
        padding-top: 16.5vw;
        padding-bottom: 15.5vw;
    }
    #WhoWeAreImages > div {
        position: inherit;
    }
    .WhoWeAreImages {
        height: 30vw;
    }
    #WhoWeAreSection > img {
        display: none;
    }
    #WhoWeAre > img {
        display: block !important;
        margin-bottom: 5vw;
    }
}

@media screen and (max-width: 875px) {
    #Catering {
        flex-direction: column;
    }
    #Catering > div {
        max-width: 100vw !important;
    }
    #Catering > div > title {
        align-self: center !important;
    }
    #CateringSVG1 {
        display: none;
    }
    #CateringSVG2 {
        display: inherit;
    }
    #Gallery > div > img {
        height: 16vw;
    }
}

@media screen and (max-width: 750px) {
    #Gallery > div > img {
        height: 20.5vw;
    }
    #WhoWeAreText {
        line-height: 30px;
    }
}

@media screen and (max-width: 600px) {
    #WhoWeAreImages {
        padding-top: 18.5vw;
        padding-bottom: 17.5vw;
    }
    .WhoWeAreImages {
        height: 35vw;
    }
    .WhoWeAreLogo {
        height: 22.5vw;
    }
    #GalleryImgs {
        justify-content: center;
    }
    #Gallery > div > img {
        height: 27.75vw;
        margin: 0px 2px 5px 2px;
    }
}

@media screen and (max-width: 375px) {
    #CateringTextbox {
        font-size: var(--font-default-size);
    }
}
