@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

html,
body,
.container-fluid {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgba(231, 214, 197, 0.5);
}

.image-item p {
    visibility: hidden;
}

#heading {
    font-family: "Noto Serif", serif;
    font-weight: 500;
    font-size: 50px;
    color: rgb(154, 112, 85);
}

#navigationBar {
    background-color: rgba(231, 214, 197, 0.5);
    font-family: "Noto Serif", serif;
}

#homeButton {
    text-decoration: none;
    color: #9a6f55;
    margin-left: 10px;
}

#homeButton:hover {
    text-decoration: underline;
    transition: 1s;
}

#navbarButtons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bi-arrow-down-up {
    color: rgb(154, 112, 85);
}

.dropdownOption {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-width: 0px;
    background-color: #fff;
    font-weight: 200;
    color: rgb(154, 112, 85);
}

.dropdown .dropdown-toggle {
    color: rgba(154, 112, 85, 0);
}

#searchInput {
    border-color: rgb(154, 112, 85);
    color: rgb(154, 112, 85);
    font-family: "Noto Serif", serif;
    font-weight: 300;
    padding-right: 5px;
}

#searchInput::placeholder {
    color: rgba(154, 112, 85, 0.5);
}

#searchInput:focus {
    border-color: #b1a930;
    box-shadow: 0 0 0 0.2rem rgba(161, 162, 83, 0);
}

/*PILLS*/
.pill {
    font-size: 0;
    font-family: 'Readex Pro', sans-serif;
    padding: 0.5em 1em;
    margin: 0.25em;
    border-radius: 1em;
    border: none;
    outline: none;
    background: #ddd;
    cursor: pointer;
    visibility: hidden;
    height: 0;
}

.pill:not(.pill--active):hover {
    background-color: #ccc;
}

.pill--active {
    margin-top: 10px;
    background-color: #009578;
    color: #fff;
    visibility: visible;
    font-size: 12px;
    height: 30px !important;
}

.pill--shown {
    margin-top: 10px;
    visibility: visible;
    font-size: 12px;
    height: 30px !important;
}

/*SIDEBAR*/

.openbtn {
    font-size: 20px;
    cursor: pointer;
    color: rgb(154, 112, 85);
    background-color: rgba(162, 205, 230, 0);
    border: none;
    position: relative;
    border-width: 0px;
    border-radius: 50%;
    font-size: 30px;
    opacity: 1;
    transform: translateY(-4px);
}

.openbtn:hover {
    background-color: rgba(162, 205, 230, 0);
}

.disabled {
    pointer-events: none;
}

.sidebar {
    height: 80%;
    width: 0;
    position: fixed;
    /* Stay in place */
    right: 10px;
    border-radius: 30px;
    z-index: 1;
    /* Stay on top */
    top: 65px;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    overflow-y: scroll;
    padding-top: 60px;
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidebar */
    opacity: 1;
    background-color: rgba(231, 214, 197, 1);
    font-family: "Noto Serif", serif;
}

/* The sidebar links */
.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    display: block;
    font-family: "Outfit", sans-serif;
    transition: 0.3s;
    text-align: center;
}

.sidebar a:hover {
    color: #fff;
}

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
    position: absolute;
    top: 0;
    font-size: 36px;
    color: rgb(154, 112, 85) !important;
}

/*SIDEBAR END*/

/*ACCORDION*/

.accordion,
.accordion-item,
.accordion-button {
    border: none !important;
    box-shadow: none !important;
}

.accordion {
    --bs-accordion-btn-bg: rgba(231, 214, 197);
    --bs-accordion-active-bg: rgba(0, 0, 0, 0);
    --bs-accordion-active-color: (0, 0, 0, 0);
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.accordion-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.submitFilters {
    position: relative;
    left: 35%;
    border-radius: 30px;
    width: 100px;
    height: 50px;
    margin-top: 30px;
    border-width: 2px;
    border-color: rgb(154, 112, 85);
    background-color: rgba(0, 0, 0, 0);
    color: rgb(154, 112, 85);
}

#helpButton {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    color: #9a6f55;
    transform: translateY(-2px);
}

#closeHelp {
    background-color: rgba(0, 0, 0, 0);
    border-color: #000;
    color: #000;
    border-radius: 30px;
}

#restoreDefaults {
    position: relative;
    left: 30%;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    font-style: italic;
    text-decoration: none;
    color: #9a6f55;
}

#restoreDefaults:hover {
    text-decoration: underline;
}

.submitFilters:hover {
    background-color: rgb(154, 112, 85);
    border-color: rgb(154, 112, 85);
    color: white;
    transition: 1s;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.col {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    margin: 0;
    box-sizing: border-box;
    min-height: 400px;
    background-position: center;
}


@media (max-width: 768px) {
    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

#noResultsMessage {
    display: none;
    color: rgb(154, 112, 85);
    text-align: center;
}

.hidden {
    display: none !important;
}

/*SLIDER*/

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    align-items: center;
}

.containSlider {
    position: relative;
    display: block;
    width: 100%;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 90%;
    outline: none;
    position: absolute;
    margin: 0 auto;
    top: 0;
    bottom: 0;
    left: 5%;
    background-color: transparent;
    pointer-events: none;
}

.slider-track {
    width: 80%;
    height: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    background-color: rgba(154, 112, 85, 1);
    border-radius: 5px;
    z-index: 15;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    z-index: 10;
}

input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    background-color: rgba(0, 0, 0, 0);
    ;
    border-radius: 5px;
    z-index: 10;
}

input[type="range"]::-ms-track {
    appearance: none;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    background-color: rgba(0, 0, 0, 0);
    ;
    border-radius: 5px;
    z-index: 10;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.5em;
    width: 1.5em;
    background-color: #9a6f55;
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
    z-index: 50;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 1.5em;
    width: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #9a6f55;
    pointer-events: auto;
    border: none;
    z-index: 50;
}

input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1.5em;
    width: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #9a6f55;
    pointer-events: auto;
    z-index: 50;
}

input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 1px solid #9a6f55;
    z-index: 50;
}

#slider-body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.values {
    background-color: #9a6f55;
    position: relative;
    width: 32%;
    height: 20%;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #ffffff;
    margin: 0 auto;
}

#collapseThree {
    height: 100px;
}


/*Adding Image Overlays*/
#img1 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2022/MM-22-10-1.png");
    background-size: cover;
}

#img2 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2022/MM-22-9-1.png");
    background-size: cover;
}

#img3 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2022/FloreakCheeseMakingIllustration-1.png");
    background-size: cover;
}

#img4 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2022/alphabetroughsketch-1.png");
    background-size: cover;
}

#img5 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/RoofReconstructionC.JPG");
    background-size: cover;
}

#img6 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/PathwayIllustration.jpg");
    background-size: cover;
}

#img7 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/MM2018llustrationWeaving.jpg");
    background-size: cover;
}

#img8 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/MM2018IllustrationWomen.jpg");
    background-size: cover;
}

#img9 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/MM2018IllustrationLoom.jpg");
    background-size: cover;
}

#img10 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/MM2018IllustrationKilns.jpg");
    background-size: cover;
}

#img11 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/MM2018IllustrationInfillofWell.jpg");
    background-size: cover;
}

#img12 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/MM2018IllustrationEPOC42.jpg");
    background-size: cover;
}

#img13 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/MM2018IllustrationEPOC4.jpg");
    background-size: cover;
}

#img14 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/MM2018IllustrationDomesticArchitecture.jpg");
    background-size: cover;
}

#img15 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2018/KilnReconstruction.JPG");
    background-size: cover;
}

#img16 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/2015/WolfDrawing.jpg");
    background-size: cover;
}

#img17 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1995/Section-OrientalizingandArchaicPhases,1995.jpg");
    background-size: cover;
}

#img18 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1995/ReconstructionUpperBuilding,1995.jpg");
    background-size: cover;
}

#img19 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1994/MM94-06.jpg");
    background-size: cover;
}

#img20 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1994/MM94-04.jpg");
    background-size: cover;
}

#img21 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1994/MM94-02.jpg");
    background-size: cover;
}

#img22 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1994/MM94-01.jpg");
    background-size: cover;
}

#img23 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1989/ReconstructedSection1S.E.Building,1989.jpg");
    background-size: cover;
}

#img24 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1989/ReconstructedRoofElementsS.E.Building,Version2-1989.jpg");
    background-size: cover;
}

#img25 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1989/ReconstructedRoofElementsS.E.Building,Version2-1989-2.jpg");
    background-size: cover;
}

#img26 {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/1989/ReconstructedElevationS.E.Building,1989.jpg");
    background-size: cover;
}

/*TEMPLATE FOR ADDING IMAGES
#imgXX {
    background-image: url("/static-web-showing/Lightbox-Gallery/media/the name of the file’s folder/your file name")
    background-size: cover;
}*/
