/* Title */

.page-title {
  width: 50%;
  text-align: center;
  font-family: Verdana, Arial, sans-serif;
  color: rgb(50, 120, 115);
  padding-top: 2%;
  margin: auto;
  /* border/box for title (old style, might not use)
    border-style: solid;
    border-width: 1.5px;
    box-shadow: 0px 0px 2px rgb(100, 150, 145);     
    background-color: rgb(191, 221, 217); */
}


/* Styling for thumbnails of all photos in gallery view */

  #GalleryView {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3%;
    row-gap: 1%;
    padding: 1%;
    margin: 0 auto 25% auto;
  }

  /* Styling for each thumbnail in gallery view */

    .GalleryView_Container {
      position: relative;
      width: 100%;
      border-width: 1.5px;
      border-style: solid;
      box-shadow: 0px 0px 2px rgb(100, 150, 145);
      aspect-ratio: 1 / 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0;
      color: rgb(50, 120, 115);
      font-weight: bold;
      background-color: rgb(191, 221, 217);
    }

      .GalleryView_Photo {
        width: 90%;
        height: 90%;
        margin: 5%;
        object-fit: contain;
      }

      .GalleryView_Photo:hover {
        cursor: pointer;
      }  

      .GalleryView_Title {
        width: 100%;
        height: 10%;
        font-family: Verdana, Arial, sans-serif;
        border: 1.5px;
        border-style: solid;
        margin-bottom: -2px;
        box-shadow: 0px 0px 1px inset rgb(100, 150, 145);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(180, 210, 206);
      }


/* Styling for enlarged view of the photos in window view */

  #WindowView {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 96%;
    max-height: 95vh;
    padding: 1%;
    background-color: white;
    display: flex;
    flex-direction: row;
  }

  #WindowView_Backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); 
  }
  

  /* Styling for the photo (lefthand side of window) */

    #WindowView_Photo {
      position: relative;
      max-width: 100%;
      max-height: 100%;
      flex: 0 0 80%;
      object-fit: contain;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgb(240, 240, 240);
    }

    #WindowView_PhotoImage {
      position: relative;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

  /* Styling for photo-specific content (right side of window) */

    #WindowView_Text {
      flex: 0 0 18%;
      display: flex;
      flex-direction: column;
      justify-content: end;
      min-height: 100%;
      padding: 1%;
    }

      #WindowView_Title {
        margin-bottom: 1%;
        font-size: larger;
        font-weight: bold;
      }

      #WindowView_Description {
        margin-bottom: 5%;
        font-size: large;
      }
      

      #WindowView_Purchase {
        margin-bottom: 1%;
      }

      #WindowView_PurchaseLink, #WindowView_PurchaseLink:visited {
        color: rgb(175, 100, 0);
        font-weight: bold;
        text-decoration: none;
        padding: 1% 5%;
        background-color: rgb(255, 215, 0);
        border-radius: 15px;
        border-style: solid;
        border-color: rgb(240, 190, 0);
      }

  /* Styling for navigation buttons */

    #WindowView_Navigation {
      position: absolute;
      top: 1%;
      right: 1%;
      min-width: 10%;
      display: flex;
      flex-direction: column;
      justify-content: right;
      text-align: right;
    }

      #WindowView_Close {
        text-decoration: underline;
        color: blue;
        padding: 1% 0.75% 2% 0.75%;
      }

      #WindowView_Close:hover {
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.05);
      }

      #WindowView_Previous {
        text-decoration: underline;
        color: blue;
        padding: 1% 0.75%;
      }

      #WindowView_Previous:hover {
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.05);
      }

      #WindowView_Next {
        text-decoration: underline;
        color: blue;
        padding: 1% 0.75%;
      }

      #WindowView_Next:hover {
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.05);
      }

  