@font-face {
  font-family: 'tommy';
  src: url('/fonts/MADE\ TOMMY\ Regular_PERSONAL\ USE.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  color: white;
  font-family: 'tommy', sans-serif;
  margin: 0;
}

.main-header {
  z-index: 1000;
  background-color: black;
  color: white;
  padding: 15px 10px;
  box-shadow: 0px 0px 30px #666666;
  margin-bottom: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  width: 90%;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%); 
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 50%;
  translate: 0% 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0px 20px #666666;
  border-radius: 0px;
  transition: all 0.3s ease;
}
section {
  scroll-margin-top: 100px; 
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.main-header img {
  height: 3rem;
  max-height: 60px;
  object-fit: contain;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
  font-size: 1rem;
  margin-right: 20px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
  }

  .nav-links.show {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.5s ease, opacity 0.3s ease;
  }

  .menu-toggle.rotate {
    transform: rotate(90deg);
  }
}

body {
  padding-top: 15px;
}

* {
  -webkit-tap-highlight-color: transparent;
}

section {
  padding-left: 2%;
}

.container1 {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 25px;
  --s: 150px;
  --c1: #1d1d1d;
  --c2: #4e4f51;
  --c3: #3c3c3c;

  background:
    repeating-conic-gradient(
      from 30deg,
      #0000 0 120deg,
      var(--c3) 0 180deg
    ) calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
    repeating-conic-gradient(
      from 30deg,
      var(--c1) 0 60deg,
      var(--c2) 0 120deg,
      var(--c3) 0 180deg
    );
  background-size: var(--s) calc(var(--s) * 0.577);

  display: flex;
  align-items: center;
  justify-content: center;

  -webkit-mask-image: linear-gradient(to bottom, transparent, black 50%, black 50%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 50%, black 50%, transparent);
}

.overlay-text {
  position: relative;
  z-index: 101;
  color: white;
  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
}

button {
  position: relative;
  padding: 15px 25px;
  border-radius: 10px;
  border: 1px solid white;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

button:hover {
  background: gray;
  box-shadow: 0 0 30px 5px white;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

button::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

button:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}



*, *::before, *::after {
  box-sizing: border-box;
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.form-container,
.contact-container {
  width: 100%;
  box-sizing: border-box;
}

.form-container {
  background: 
    linear-gradient(#212121, #212121) padding-box,
    linear-gradient(145deg, #808080, #ffffff) border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: white;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}

.form-container button:active {
  scale: 0.95;
}

.form-container .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #717171;
  font-weight: 600;
  font-size: 12px;
}

.form-container .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #414141;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-container .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  resize: none;
  color: #fff;
  height: 100px;
  border: 1px solid #414141;
  background-color: transparent;
  font-family: inherit;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input,
.form-container .form-group textarea {
  transition: border-color 0.3s ease;
}

.form-container .form-group input:focus,
.form-container .form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.form-container .form-submit-btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  font-family: inherit;
  color: #717171;
  font-weight: 600;
  width: 40%;
  background: #313131;
  border: 1px solid #414141;
  padding: 12px 16px;
  font-size: inherit;
  gap: 8px;
  margin-top: 5px;
  cursor: pointer;
  border-radius: 6px;
}

.form-container .form-submit-btn:hover {
  background-color: #fff;
  border-color: #fff;
}

#form-status {
  opacity: 1;
  transition: opacity 1s ease;
}

#form-status.fade-out {
  opacity: 0;
}

h1 {
  font-size: xx-large;
  text-align: center;
}

.contact-container {
  background-color: black;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.plain-link {
  color: white;
  text-decoration: underline;
}

.text-container {
  margin: 0;
}

.text-container h3 {
  margin: 0;
}

@media (max-width: 768px) {
  .container {
    align-items: center;
    flex-direction: column;
    padding-right: 2%;
  }

  .form-container,
  .contact-container {
    width: 100%;
    max-width: 500px;
  }

  .form-container .form-submit-btn {
    width: 100%;
  }
}

.about_card {
  position: relative;
  display: block;
  width: 850px;
  height: 350px;
  margin: 80px auto;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s;
  box-shadow: 0px 0px 120px -25px white;
}

.about_card:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  box-shadow: 0px 0px 80px -25px white;
  transition: all 0.4s;
}

.about_card .info_section {
  position: relative;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  z-index: 2;
  border-radius: 10px;
}

.about_card .info_section .staff_header {
  position: relative;
  padding: 25px;
  height: 40%;
}

.about_card .info_section .staff_header h1 {
  color: black;
  font-weight: 400;
}

.about_card .info_section .staff_header h4 {
  color: #555;
  font-weight: 400;
}

.about_card .info_section .staff_header .profile_pic {
  position: relative;
  float: left;
  margin-right: 20px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.5);
}

.about_card .info_section .staff_desc {
  padding: 25px;
  height: 50%;
}

.about_card .info_section .staff_desc .bio {
  color: #545454;
}

.about_card .info_section .staff_social {
  height: 10%;
  padding-left: 15px;
  padding-bottom: 20px;
}

.about_card .info_section .staff_social ul {
  list-style: none;
  padding: 0;
}

.about_card .info_section .staff_social ul li {
  display: inline-block;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.3s;
  transition-delay: 0.15s;
  margin: 0 10px;
}

.about_card .info_section .staff_social ul li:hover {
  transition: color 0.3s;
  color: rgba(0, 0, 0, 0.7);
}

.about_card .info_section .staff_social ul li i {
  font-size: 19px;
  cursor: pointer;
}

.about_card .blur_back {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  right: 0;
  background-size: cover;
  border-radius: 11px;
}

#staff1_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}


#staff1_bg::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/kiprasound\ square.png") no-repeat center;
  background-size: cover;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  #staff1_bg::before {
    top: -50%;
    left: 27.5%;
    width: 100%;
    height: 200%;
    background: url("images/kiprasound\ square.png") no-repeat center;
    background-size: contain;
  }
}

#staff2_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#staff2_bg::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/lukas back.jpg") no-repeat center;
  background-size: cover;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  #staff2_bg::before {
    top: -50%;
    left: 27.5%;
    width: 100%;
    height: 200%;
    background: url("images/lukas\ back\ desktop.jpg") no-repeat center;
    background-size: contain;
  }
}

#staff3_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#staff3_bg::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/kiprasound\ square.png") no-repeat center;
  background-size: cover;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  #staff3_bg::before {
    top: -50%;
    left: 27.5%;
    width: 100%;
    height: 200%;
    background: url("images/kiprasound\ square.png") no-repeat center;
    background-size: contain;
  }
}


@media screen and (min-width: 768px) {
  .staff_header {
    width: 65%;
  }

  .staff_desc {
    width: 50%;
  }

  .info_section {
    background: linear-gradient(to right, #e5e6e6 50%, transparent 100%);
  }

  .blur_back {
    width: 80%;
    background-position: -100% 10% !important;
  }
}

@media screen and (max-width: 768px) {
  .about_card {
    width: 95%;
    margin: 70px auto;
    min-height: 350px;
    height: auto;
    right: 1%;
  }

  .blur_back {
    width: 100%;
    background-position: 50% 50% !important;
  }

  .staff_header {
    width: 100%;
    margin-top: 25px;
  }

  .staff_desc {
    width: 100%;
  }

  .info_section {
    background: linear-gradient(to top, #e5e6e6 50%, transparent 100%);
    display: inline-grid;
  }
}

h1.staff_name {
  text-align: left;
}

.invisible-container {
  width: auto;
  height: 50px;
}

.footer {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 20vh;
  box-sizing: border-box;
  padding: 25px;
  --s: 150px;
  --c1: #1d1d1d;
  --c2: #4e4f51;
  --c3: #3c3c3c;

  background:
    repeating-conic-gradient(
      from 30deg,
      #0000 0 120deg,
      var(--c3) 0 180deg
    ) calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
    repeating-conic-gradient(
      from 30deg,
      var(--c1) 0 60deg,
      var(--c2) 0 120deg,
      var(--c3) 0 180deg
    );
  background-size: var(--s) calc(var(--s) * 0.577);

  display: flex;
  align-items: center;
  justify-content: center;

  -webkit-mask-image: linear-gradient(to bottom, transparent, black 50%, black 50%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 50%);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footerimg {
  margin-top: 2.5rem;
  width: auto;
  height: 5rem;
  object-fit: contain;
  display: block;
}

.footer p {
  text-align: center;
  font-size: 14px;
  color: white;
}

.hero {
  text-align: center;
  font-size: large;
}

.check {
  margin-left: 15px;
  font-size: 1.2rem;
}
