:root {
    --purple: #6a0dad;
    --brightPurple: #AD09D4;
    --highlight: #ffe066;
    --blue: #005dbb;
    --green: #00b300;
    --red: #ff0000;
    --gray: #474747;
}

/* Gallery Container */
.gallery {
    position: relative;
    width: 90vw;
    min-height: 90vh;
    height: min-content;
    top: 5vh;
    left: 5vw;
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    border-radius: 10px;
    margin-bottom: 5vh;
    /* border: 2px solid red; */
}

/* Gallery Header */
.gallery-header {
    position: relative;
    height: 150px;
    width: 100%;
    /* border: 2px solid red; */
}

.gallery-header-title {
    position: relative;
    height: 50%;
    width: 100%;
    text-align: center;
    font-size: 60px;
    cursor: default;
    /* border: 2px solid blue; */
}

.gallery-header-subtitle {
    position: relative;
    height: 50%;
    width: 100%;
    text-align: center;
    align-content: center;
    font-size: 30px;
    font-weight: 300;
    color: var(--gray);
    cursor: default;
    /* border: 2px solid blue; */
}

/* Header Hamburger Menu Button */
.gallery-header-hamburger {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 1%;
    right: 1%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    z-index: 3;
}

.gallery-header-hamburger:hover {
    filter: invert(15%) sepia(74%) saturate(6668%) hue-rotate(275deg) brightness(69%) contrast(104%);
    transform: translate(-5px, 5px);
}

/* Hamburger Nav Menu */
.gallery-header-nav-container {
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: -5vh;
    left: -5vw;
    z-index: 2;
    background-color: rgb(0, 0, 0, .5);
    display: none;
    justify-content: end;
}

.gallery-header-nav {
    position: relative;
    height: min-content;
    width: min-content;
    text-wrap: nowrap;
    padding: 10px;
    color: whitesmoke;
    border-radius: 10px;
    right: calc(5vw + 10px);
    top: calc(5vh + 60px);
    background-color: var(--purple);
    /* border: 2px solid blue; */
}

.gallery-header-nav-heading {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 40px;
    cursor: default;
    /* border: 2px solid blue; */
}

.gallery-header-nav-close {
    position: absolute;
    filter: invert();
    height: 50px;
    width: 50px;
    top: 0px;
    right: 0px;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.gallery-header-nav-close:hover {
    filter: invert(71%) sepia(83%) saturate(274%) hue-rotate(1deg) brightness(105%) contrast(105%);
    transform: translate(-5px, 5px);
}

.gallery-header-nav-list {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* border: 2px solid green; */
}

.gallery-header-nav-list-item-name {
    position: relative;
    font-size: 30px;
    height: 40px;
    width: 100%;
    /* left: 15%; */
    /* border: 2px solid white; */
    padding: 5px;
    cursor: pointer;
    user-select: none;
}

.gallery-header-nav-list-item-name:hover {
    color: var(--highlight);
}

.gallery-header-nav-list-item-name a {
    color: whitesmoke;
}

.gallery-header-nav-list-item-name a:hover {
    color: var(--highlight);
}

.gallery-header-nav-list-item-name:hover .gallery-header-nav-list-item-name-caret {
    filter: invert(71%) sepia(83%) saturate(274%) hue-rotate(1deg) brightness(105%) contrast(105%);
}

.gallery-header-nav-list-item-name-caret {
    position: relative;
    filter: invert();
    height: 30px;
    top: 2.5px;
    margin-left: 5px;
    /* transform: rotate(180deg); */
}

.gallery-header-nav-sublist {
    position: relative;
    height: 0px;
    margin-top: 5px;
    width: 85%;
    margin-left: 30px;
    overflow: hidden;
    transition: all .2s ease-in-out;
    /* border: 2px solid blue; */
}

.gallery-header-nav-sublist-item {
    position: relative;
    font-size: 20px;
    padding: 5px;
    cursor: pointer;
}

.gallery-header-nav-sublist-item a {
    color: whitesmoke;
}

.gallery-header-nav-sublist-item a:hover {
    color: var(--highlight);
}

/* Gallery Art */
.gallery-art {
    position: relative;
    height: min-content;
    min-height: calc(90vh - 210px);
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    margin-bottom: 60px;
    /* border: 2px solid red; */
}

.gallery-art-section {
    position: relative;
    object-fit: cover;
    /* border: 2px solid blue; */
}

.gallery-art-section-caption {
    position: relative;
    font-size: 18px;
    font-weight: 300;
    padding: 10px;
    cursor: default;
    background-color: rgb(0, 0, 0, .25);
    border: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
}

.gallery-art-section-image {
    position: relative;
    width: 100%;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, .25);
    cursor: zoom-in;
    transition: all .2s ease-in-out;
}

.gallery-art-section-image:hover {
    box-shadow: 0px 0px 10px rgb(0, 0, 0, .5);
}

/* Drawings */
#gallery-art-drawings {
    display: none;
    flex-direction: row;
    gap: 10PX;
}

#gallery-art-drawings-1 {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#gallery-art-drawings-container {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

/* Paintings */
#gallery-art-paintings {
    display: none;
    flex-direction: column;
    gap: 10px;
}

#gallery-art-paintings-container1,
#gallery-art-paintings-container2 {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#gallery-art-paintings-2,
#gallery-art-paintings-3,
#gallery-art-paintings-4,
#gallery-art-paintings-5 {
    width: 50%;
}

/* Graphic Design */
#gallery-art-graphicDesign {
    display: none;
    flex-direction: column;
    gap: 10px;
}

#gallery-art-graphicDesign-container1,
#gallery-art-graphicDesign-container2 {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    /* border: 2px solid red; */
}

#gallery-art-graphicDesign-container3 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#gallery-art-graphicDesign-1,
#gallery-art-graphicDesign-2,
#gallery-art-graphicDesign-3 {
    width: 50%;
}

#gallery-art-graphicDesign-4,
#gallery-art-graphicDesign-5 {
    height: 50%;
}

#gallery-art-graphicDesign-container4 {
    width: 100%;
}

#gallery-art-graphicDesign-2 {
    width: 100%;
}

/* Sculptures */
#gallery-art-sculptures {
    display: none;
    flex-direction: column;
    gap: 10px;
}

#gallery-art-sculptures-container1 {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#gallery-art-sculptures-1,
#gallery-art-sculptures-2 {
    width: 50%;
}

/* Zoom Modal */
.zoom-modal {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, .75);
    z-index: 3;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    display: none;
}

.zoom-modal-image {
    position: relative;
    height: min-content;
    width: min-content;
    max-height: 100%;
    max-width: 100%;
}

/* Gallert Art End */

/* Gallery COntrols */
.gallery-controls {
    position: absolute;
    height: 60px;
    width: 100%;
    bottom: 0px;
    display: flex;
    flex-direction: row;
    /* border: 2px solid red; */
}

.gallery-controls-section {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    padding: 10px;
    gap: 15px;
}

#gallery-controls-section-right {
    justify-content: right;
}

.gallery-controls-section-arrow {
    position: relative;
    height: 100%;
    cursor: pointer;
}

.gallery-controls-section-arrow:hover {
    filter: invert(15%) sepia(74%) saturate(6668%) hue-rotate(275deg) brightness(69%) contrast(104%);
}


#gallery-controls-next {
    transform: rotate(180deg);
}

.gallery-controls-section-info {
    position: relative;
    font-size: 20px;
    font-weight: 300;
    opacity: .5;
    transition: all .2s ease-in-out;
    cursor: default;
}

.gallery-controls-section:hover .gallery-controls-section-info {
    opacity: 1;
}

.gallery-controls-top {
    position: absolute;
    width: 30%;
    left: 35%;
    height: 60px;
    bottom: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
}

/* Gallery Controls End */

/* Phone Sizing */
@media screen and (max-width: 560px) {

    #gallery-art-drawings,
    #gallery-art-graphicDesign-container1,
    #gallery-art-graphicDesign-container2,
    #gallery-art-sculptures-container1 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #gallery-art-drawings-1,
    #gallery-art-drawings-container,
    #gallery-art-paintings-2,
    #gallery-art-paintings-3,
    #gallery-art-paintings-4,
    #gallery-art-paintings-5,
    #gallery-art-graphicDesign-container3,
    #gallery-art-graphicDesign-1,
    #gallery-art-graphicDesign-2,
    #gallery-art-graphicDesign-3,
    #gallery-art-sculptures-1,
    #gallery-art-sculptures-2 {
        width: 100%;
    }

    #gallery-art-graphicDesign-4,
    #gallery-art-graphicDesign-5 {
        height: 100%;
    }

    #gallery-art-paintings-container1,
    #gallery-art-paintings-container2 {
        flex-direction: column;
    }

    .gallery-controls-section-info {
        font-size: 15px;
    }

    .gallery-header-title {
        font-size: 48px;
    }

    .gallery-header-subtitle {
        font-size: 24px;
    }

    .gallery-header {
        height: 100px;
    }

    .gallery-header-nav-list-item-name {
        font-size: 20px;
        height: 30px;
    }

    .gallery-header-nav-list-item-name-caret {
        height: 20px;
    }
}

@media screen and (max-width: 460px) {
    .gallery-controls-section-info {
        opacity: 0;
    }

    .gallery-header-title {
        font-size: 30px;
    }

    .gallery-header-subtitle {
        font-size: 20px;
    }

    .gallery-header-hamburger {
        height: 25px;
        width: 25px;
        top: 10px;
        right: 10px;
    }

    .gallery-header {
        height: 80px;
    }
}