html,
body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  background-image: url("../images/background02.jpg");
  background-position: center;
  /*background-repeat: repeat-y;*/
  background-size: cover;
  background-repeat: no-repeat;
  /*background-attachment: scroll;*/
  scroll-behavior: smooth;
}
a:link {
  color: #ffffff;
  text-decoration: none;
}
a:visited {
  color: #ffffff;
  text-decoration: none;
}
a:hover {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
a:active {
  color: #ffffff;
}
#container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  align-items: center;
}
#container-inner {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: auto;
}
#header {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 300px;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3); /* instead of opacity */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
#header-content-top {
  display: flex;
  width: 90%;
  height: 180px;
  justify-content: center;
  align-items: center;
}
#header-title-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
}
#header-title {
  display: flex;
  width: 650px;
  height: 50px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.8em;
  justify-content: center;
  align-items: center;
}
.header-line {
  width: 250px;
  height: 1px;
  background-color: #ffffff;
}
#header-links-desktop {
  display: flex;
  width: 90%;
  height: 100px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  word-spacing: 13em;
  letter-spacing: 0.3em;
}
#mobile-nav-toggle,
#mobile-nav-links {
  display: none;
}
#hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 20px;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3); /* instead of opacity */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding-top: 150px;
  padding-bottom: 150px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: auto;
  justify-content: center;
}
.hero-content-innerWrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: flex-start;
}
.hero-content-title {
  display: flex;
  width: 150px;
  height: 100px;
  font-size: 32px;
  justify-content: right;
  padding-top: 5px;
  padding-right: 10px;
  margin-top: 10px;
  margin-right: 20px;
  border-right: 1px solid #ffffff;
}
.hero-content-placeholder {
  display: flex;
  width: 150px;
  height: 0px;
  font-size: 32px;
  justify-content: right;
  padding-top: 5px;
  padding-right: 10px;
  margin-top: 10px;
  margin-right: 20px;
  border-right: 0;
}
.hero-content-image {
  display: flex;
  justify-content: right;
  width: 620px;
  height: 425px;
  margin-bottom: 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.hero-content-image:hover {
}
.hero-content-image02 {
  display: flex;
  justify-content: right;
  width: 620px;
  height: 425px;
  margin-bottom: 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.hero-content-image02:hover {
  transform: scale(1.02);
}
.hero-content-image-bio {
  display: flex;
  justify-content: left;
  width: 200px;
  height: auto;
}
.hero-content-image-bio img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-content-text {
  display: block;
  width: 600px;
  height: auto;
  padding-top: 20px;
  padding-left: 20px;
}

/*--POPUP CONTACT FORM------------------------------------*/
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-box {
  background-color: rgba(0, 0, 0, 0.3); /* instead of opacity */
  backdrop-filter: blur(20px);
  padding: 25px;
  border-radius: 8px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.popup-box h2 {
  margin-top: 0;
}
.popup-box input {
  width: 93%;
  padding: 10px;
  margin: 8px 0 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.popup-box select {
  width: 93%;
  padding: 10px;
  margin: 8px 0 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #000;
}
.popup-box button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

/*--IMAGE POPUP-----------------------------------------*/
/* Thumbnail styling */
.thumb {
  width: 620px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.thumb:hover {
  transform: scale(1.02);
}
/* Popup overlay */
.popup-overlay02 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
/* Fullscreen image */
.popup-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

/*--FOOTER---------------------------------*/
#footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 20px;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3); /* instead of opacity */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}
/*--MOBILE DEVICES-----------------------------------*/
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
  #hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #header {
    flex-direction: column;
    height: auto;
  }
  #header-title-wrap {
    display: flex;
    flex-direction: column;
  }
  #header-title {
    display: flex;
    width: 90%;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 0.5em;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }
  .header-line {
    display: none;
  }
  #desktop-nav-links {
    display: none;
  }
  #mobile-nav-toggle {
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2em;
    border-radius: 6px;
    cursor: pointer;
  }
  #mobile-nav-links {
    display: none;
    flex-direction: column;
    width: 89%;
    gap: 0;
    padding: 20px;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 20px;
    justify-content: center;
  }
  #mobile-nav-links.active {
    display: flex;
  }
  #header-links-desktop {
    display: none;
  }
  #header-links {
    display: none;
  }
  #header-links.active {
    display: flex;
  }
  .hero-content-innerWrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }
  .hero-content-title {
    display: flex;
    width: 150px;
    height: 40px;
    font-size: 32px;
    justify-content: left;
    padding: 0;
    margin: 0;
    border-right: 0;
  }
  .hero-content-image02 {
    display: flex;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin: 0;
    margin-top: 10px;
  }
  .hero-content-image02 img {
    width: 100%;
    height: auto;
  }
  .hero-content-text {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 80px;
  }
}
