*{
    box-sizing: border-box;
}
body{
    display: block;
    margin: 0 0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
#titleLogo{
    position: relative;
    opacity: 40%;
    height: 15vw;
    width: 60%;
    min-width: 300px;
    min-height: 72px;
}
#titleLogo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3639e3;
    mix-blend-mode: source-in;
    pointer-events: none;
}
.navBtnContainer {
  background-color: rgba(44, 54, 57, 0.39);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

#menuBtn{
    min-height: 2rem;
    max-height: 3rem;
    cursor: pointer;
}
.navBtn{
    border-style: none;
    background: none;
    color: #030c05d9;
    padding: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 30px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #aaa;
    min-width: 20%;
    max-width: 300px;
}
#titleBackground{
    background-image: url('images/background.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-style: none;
    overflow: hidden;
}
.title{
    min-width: 344px;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20%;
}
.contentContainer{
    overflow:auto;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(99, 70, 64, .65) 20%, rgba(63, 79, 68, .65) 100%);
}
.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,.4);
}
  .modalContent {
    display: flex;
    flex-direction: column;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(99, 70, 64, .65) 0%, rgba(63, 79, 68, .65) 100%);
    margin: 0 0; 
    padding: 4px;
    border: none;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  .modalContent::-webkit-scrollbar {
    display: none;
  }
  .modalList{
    height: 100%;
    padding: 0 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    font-size: 30px;
    color: rgb(3, 12, 5);
    justify-content: space-between;
    font-weight: 900;
  }
  .listItem{
    padding-bottom: 30px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #aaa;
  }
  .listItem:hover{
    text-decoration: underline;
    color: #aaa;
    cursor: pointer;
  }
  .socialsListItem p{
    padding-left: 20%;
  }
  .socialLink{
    font-weight: 200;
  }
  .socialLogo{
    padding-left: 70%;
  }
  #flashModal{
    display: flex;
    text-align: center;
  }
  .flashGridContainer{
    max-height: 100vh;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
  }
  .flashGridContainer img{
    height: 200px;
    width: 200px;
    border: solid;
    border-radius: 10px;
    border-color: rgb(3, 12, 5);
    border-width: 5px;
  }
  .flashPhoto{
    align-self: center;
    justify-self: center;
  }
  a{
    text-decoration: none;
    color: rgb(3, 12, 5);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #aaa;
  }
  a:hover {
    text-decoration: underline;
    color: #aaa;
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    align-self: flex-end;
  }
  .close:hover,
  .close:focus {
    color: rgb(3, 12, 5);
    text-decoration: none;
    cursor: pointer;
  }
  #savanaModal, #inquiryModal{
    flex-direction: column;
    align-items: center;
    min-width: 270px;
    height: auto;
    text-align: center;
    justify-content: center;
  }
  #savanaModalHeader, #inquiryModalHeader, #flashModalHeader{
    text-decoration: underline;
    font-size: 2rem;
    font-weight: 600;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #aaa;
  }
  #savanaModalBio{
    font-size: 2rem;
  }
  .modalPhoto{
    width: 30%;
    min-width: 150px;
    height: auto;
    border: solid;
    border-radius: 10px;
    border-color: rgb(3, 12, 5);
    border-width: 5px;
  }
  #inquiry{
    border-style: solid;
    border-radius: 20px;
    padding: 10px;
    background-color: rgba(44, 54, 57, 0.91);
    text-align: center;
  }
  .inquiryForm{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    min-width: 270px;
    max-width: 90%;
    height: auto;
  }
  .required:after {
    content: "*";
    display: inline;
    color: red;
  }
  .inquiryForm fieldset{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border-radius: 10px;
    border-color: rgba(99, 70, 64, .65);
  }
  .indicatorSpan{
    font-size: 1rem;
    font-style: italic;
  }
  .inquiryLabel{
    font-size: 2rem;
  }
  .inquiryInput{
    border-radius: 20px;
    padding: .5rem;
    font-size: 1rem;
    width: 90%;
    background-image: linear-gradient(to bottom, rgba(99, 70, 64, .65) 0%, rgba(63, 79, 68, .65) 100%);
  }
  #inquirySubmitBtn{
    width: 20rem ;
  }
  #inquiryExample{
    align-self: center;
    border-radius: 0px;
  }
  #inquiryDesc{
    max-width: 760px;
    max-height: 100px;
  }
  #galleryModal{
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .galleryNav{
    display: flex;
    width: 100%;
    justify-content: space-around;
  }
  #galleryLeft, #galleryRight{
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
  }
  .galleryPhotos{
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .grid-item-icon{
    max-width: 100px;
    max-height: 100px;
  }
  #galleryPopup{
    width: 100%;
    height: 65%;
    text-align: center;
    border-style: solid;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-width: 1px;
    border-bottom-color: #aaa;
    padding: 10px;
  }
  #galleryLeft, #galleryRight{
    margin:5px;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    border-color: #aaa;
    border-radius: 5px;
    padding: 10px;
  }


#galleryPopup.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popupImg {
  width: auto;
  height: 100%;
  max-width: 80vw;
  max-height: 80vh;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.popupImg.zoomed {
  transform: scale(1.25);
  cursor: zoom-out;
}

.flash-grid-item-icon.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2);
  cursor: zoom-out;
  z-index: 9999;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  border-radius: 10px;
  transition: transform 0.3s ease;
}
