

/* mobile styles */

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 100;
  background-color: black;
  scrollbar-width: none;
  overflow-x: hidden;
  overflow: hidden;
}


/* header styles */

header {
  z-index: 2000; 
  position: fixed; 
  display: flex; 
  overflow: hidden; 
  justify-content: space-between;
  align-items: center; 
  height: 70px;
  width: 100%;
  max-width: 1200px;
  top: 0; 
  padding: 0;
  margin: 0;
  background: transparent;
}
.logo-container {
  display: flex;
  margin-left: 6%;
}
.logo {
  z-index: 2500;
  width: 90px;
}
.hamburger-menu {
  z-index: 1500;
  display: block;
  cursor: pointer;
  background-color:transparent;
  margin-right: 6%;
}
.hamburger-menu .bar {
  width: 23px;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  border-radius: 10%;
  z-index: 2;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transitions for transform and opacity */
}
.nav-links {
  display: none;
  z-index: 1;
  max-width: 1200px;
}
.nav-links.show {
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%; 
  height: 100%; 
  top:0;
  background: transparent;
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
}
.nav-links a {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: none;
  display: block;
  padding: 25px;
  font-size: 1em;
  margin-top: 2px;
  margin-bottom: 2px;
  width: 30%;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1.6px; /* Adjust the value for more or less spacing */
  font-family: 'Racing Sans One', sans-serif;
}
.nav-links a.active {
  border: 2px solid black;
}
a {
  padding: 2%;
  color: black;
  text-decoration: none;
}
a.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  background-color: white;
}
.bar.rotate-in {
  animation: rotateIn 0.7s forwards;
}
.bar.rotate-out {
  animation: rotateOut 0.7s forwards;
}
.hamburger-menu.show .bar:nth-child(1) {
  animation: rotateIn 0.7s forwards; 
}
.hamburger-menu.show .bar:nth-child(2) {
  animation: rotateOut 0.7s forwards; 
}
@keyframes slideDown {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0); 
    opacity: 1;
  }
}
.nav-links.falling {
  animation: slideDown 0.7s ease-out forwards;
}
.bar.rotate-back-in {
  animation: rotateBackIn 0.7s forwards;
}
.bar.rotate-back-out {
  animation: rotateBackOut 0.7s forwards;
}
.hamburger-menu .bar:nth-child(1) {
  animation: rotateBackIn 0.7s forwards;
}
.hamburger-menu .bar:nth-child(2) {
  animation: rotateBackOut 0.7s forwards;
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.nav-links.falling-out {
  animation: slideOut .7s ease-out forwards;
}


/* main styles */

main {
  display: flex;
  flex-direction: column; 
  justify-content: space-between;
  align-items: center;
  background-color: black;
  height: 100dvh;
  scrollbar-width: none;
}
main::-webkit-scrollbar {
  width: 0;
}


/* home styles */

.fade-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: rgb(0, 0, 0);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  animation: fadeInMission 6s 1.4s ease-out forwards, fadeOutScreen 6s 1.4s ease-out forwards;
}
.mission-statement {
  text-align: center;
  font-size: 1 rem;
  width: 80%;
  line-height: 1.3;
  letter-spacing: 1.6px; 
  font-family: 'Racing Sans One', sans-serif;
  
}
@keyframes fadeInMission {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutScreen {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.index-container {
  background-color: black;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.video {
  width: 95%;
}


/* archive styles */

.archive-container {
  background-color: black;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.archive-video {
  height: 100dvh;
  width: 95%;
  max-width: 1200px;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
  margin: 0 auto;
  padding-top: 5px;
  scroll-snap-align: start;
  position: relative;
}
.archive-container iframe {
  margin: 0;
  padding: 0;
  max-width: 100%;
  max-height: 100%;
}
.archive-footer {
  height: 70px;
  width: 95%;
  max-width: 1200px;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
  margin: 0 auto;
  padding-top: 5px;
  scroll-snap-align: start;
  position: relative;
}


/* gallery styles */

.previews-container {
  background-color: black;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.preview {
  height: 100dvh;
  width: 95%;
  max-width: 1200px;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
  margin: 0 auto;
  padding-top: 5px;
  scroll-snap-align: start;
  position: relative;
}
.gallery-intro {
  height: 100dvh;
  width: 95%;
  max-width: 1200px;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
  margin: 0 auto;
  scroll-snap-align: start;
  position: relative;
}
.intro-photo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78%;
  object-fit: contain;
}
.arrow-gif {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 0;
  padding-bottom: 10px;
}
.photo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78%;
  margin-top: 40px;
  object-fit: contain;
}
.gallery-info {
  height: 40px;
  display: flex;
  justify-content:center;
  align-items: center;
  width: 100%;
  color: white;
  font-size: .9em; 
  padding: 0;
}
.gallery-text {
  padding: 0;
  margin: 0; 
  color: white
}


/* backstage styles */

.backstage-container {
  background-color: black;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  scrollbar-width: none;
}
.photo-text-box {
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.photobox {
  margin-top:90px;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  width: 100%; 
}
.biophoto {
  width: 80%;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.4s ease-in-out;
}
.biophoto:hover {
  cursor: pointer;
}
.super-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80%;
  padding: 0 5px;
  font-family: 'lato', sans-serif;
}
.text-box1, .text-box2, .text-box3, .text-box4{
  font-size: clamp(.9rem, 1.2vw, 2rem);
  line-height: 1.35;
  color: #e0e0e0;
}
.text-box1 {
  font-size: clamp(1rem, 1.2vw, 2rem);
  letter-spacing: .05vh;
  font-family: 'Racing Sans One', sans-serif;
}
.text-box2 {
  text-align: left;
}
.text-box3 {
  text-align: center;
  text-indent: 20px;
}
.text-box4 {
  letter-spacing: .06vh;
  font-family: 'Racing Sans One', sans-serif;
  padding-bottom: 30px;
}


/* contact styles */

.contact-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  background-image: url("Media/Photo/contactbackground.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: relative;
}
.contact-section {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9em;
  color: #ccc;
  margin-bottom: 20px;
}
.email-icon {
  width: 15px;
  height: 15px;
}
.contact-section a.email-link {
  color: #dddddd;
  text-decoration: none;
  font-weight: 100;
  font-size: .9em;
}
.contact-section a.email-link:hover {
  text-decoration: underline;
}
.contact-footer{
  bottom: 0;
  position: absolute;
  padding-bottom: 15px;
}
.contact-footer p {
  color: white;
  font-size: .6rem; 
  margin: 0;
  padding: 0;
}


/* footer styles */

footer.footer-container {
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  padding: 0 0 7px 0;
  margin: 0 0 4px 0;
  position: relative;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 5px;
}
.social-icon img {
  width: 15px; 
  height: 15px; 
  transition: transform 0.3s ease;
}
.social-icon img:hover {
  transform: scale(1.3);
}
footer p {
  background-color: black;
  font-size: .8em; 
  margin: 0;
  padding: 0;
}






/* desktop styles */

@media (min-width: 750px) {

  body, html {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 100;
    background-color: black;
    overflow: hidden;
    scrollbar-width: none;
  }


  /* header styles */
  
  header {
    z-index: 1500;
    position: fixed;
    top: 0;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    /* max-width: 800px; */
    padding: 0;
    margin: 0 auto;
    background: transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    left: 0;
    right: 0;
    box-sizing: border-box;
  }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 90%; 
    max-width: 800px;
    position: relative;
  }
  .nav-links a {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: none;
    display: block;
    padding: 25px;
    font-size: 1em;
    margin-top: 2px;
    margin-bottom: 2px;
    width: 30%;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1.8px; /* Adjust the value for more or less spacing */
    font-family: 'Racing Sans One', sans-serif;
  }
  .nav-links a:nth-child(1) {
    display: none;
  }
  .nav-links a:nth-child(2) {
    margin-left: 10px; 
  }
  .nav-links a:nth-child(3) {
    margin-right: 15%; 
  }
  .nav-links a:nth-child(4) {
    margin-left: 9%; 
  }
  .nav-links a:nth-child(5) {
    margin-right: 10px; 
  }
  .nav-links a:hover {
    transform: scale(1.1); 
  }
  .logo:hover {
    transform: scale(1.1); 
  }
  .logo-container {
    position: absolute; 
    transform: translateX(-30px);
    z-index: 10; 
  }
  .logo {
    width: 120px;
    margin-right: 0px; 
    padding-right: 10px;
    margin: 100px 0px;
    transition: transform 0.3s ease;
  }
  .hamburger-menu {
    display: none;
  }


  /* main styles */

  main {
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    align-items: center;
    background-color: black;
    height: 100dvh;
    scrollbar-width: none;
  }
  main::-webkit-scrollbar {
    width: 0;
  }

    
  /* Fade-Screen Styles */

  .fade-screen {
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: fadeInMission 6s 1.4s ease-out forwards, fadeOutScreen 6s 1.4s ease-out forwards;
  }
  .mission-statement {
    text-align: center;
    font-size: clamp(24px, 3vw, 2vw);
    width: 80%;
    max-width: 800px;
    line-height: 1.3;
    letter-spacing: 1.6px; 
    font-family: 'Racing Sans One', sans-serif;
  }
  @keyframes fadeInMission {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeOutScreen {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  .index-container {
    background-color: black;
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
  }
  .video {
    width: 95%;
  }


  /* archive styles */

  .archive-container {
    background-color: black;
    width: 100%;
  }
  .archive-video {
    height: 100vh;
    width: 90%;
    max-width: 1200px;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
    margin: 0 auto;
    padding-top: 5px;
    scroll-snap-align: start;
    position: relative;
  }
  .archive-container iframe {
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
  }


  /* gallery styles */

  .previews-container {
    background-color: black;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
  }
  .preview {
    height: 100dvh;
    width: 95%;
    max-width: 1200px;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
    margin: 0 auto;
    padding-top: 5px;
    scroll-snap-align: start;
    position: relative;
  }
  .photo {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 78%;
    margin-top: 40px;
    object-fit: contain;
  }
  .gallery-info {
    height: 40px;
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    color: white;
    font-size: .9em; 
    padding: 0;
  }
  .gallery-text {
    padding: 0;
    margin: 0; 
    color: white
  }


  /* backstage styles */

  .backstage-container {
    background-color: black;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .photo-text-box {
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .photobox {
    margin-top:90px;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    width: 100%; 
  }
  .biophoto {
    width: 80%;
    height: auto;
    border-radius: 5px;
  }
  .super-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 80%;
    padding: 0 5px;
    font-family: 'lato', sans-serif;
  }
  .text-box1, .text-box2, .text-box3, .text-box4{
    font-size: clamp(.9rem, 1.2vw, 2rem);
    line-height: 1.35;
    color: #e0e0e0;
  }
  .text-box1 {
    font-size: clamp(1rem, 1.2vw, 2rem);
    letter-spacing: .05vh;
    font-family: 'Racing Sans One', sans-serif;
  }
  .text-box2 {
    text-align: left;
  }
  .text-box3 {
    text-align: center;
    text-indent: 20px;
  }
  .text-box4 {
    letter-spacing: .06vh;
    font-family: 'Racing Sans One', sans-serif;
  }


  /* contact styles */

  .contact-container {
    height: 100vh;
    width: 100vw;
    max-width: 1200px;
    display: flex;
    background-image: url("Media/Photo/contactbackground.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: relative;
  }
  .contact-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9em;
    color: #ccc;
    margin-bottom: 20px;
  }
  .email-icon {
    width: 20px;
    height: 20px;
  }
  .contact-section a.email-link {
    color: #dddddd;
    text-decoration: none;
    font-weight: 100;
    font-size: .9em;
  }
  .contact-section a.email-link:hover {
    text-decoration: underline;
  }
  .contact-footer{
    bottom: 0;
    position: absolute;
    padding-bottom: 15px;
  }
  .contact-footer p {
    color: white;
    font-size: .7rem; 
    margin: 0;
    padding: 0;
  }


  /* footer styles */

  footer.footer-container {
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    padding: 0 0 7px 0;
    margin: 0 0 4px 0;
    position: relative;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 5px;
  }
  .social-icon img {
    width: 15px; 
    height: 15px; 
    transition: transform 0.3s ease;
  }
  .social-icon img:hover {
    transform: scale(1.3);
  }
  footer p {
    background-color: black;
    font-size: .8em; 
    margin: 0;
    padding: 0;
  }
}