html, body {
    margin: 0;
    padding: 0;
    font-family: 'Oxanium', sans-serif;
    background: black;
    color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.parallax-section,
.subsection-wrapper {
  position: relative;
  height: 100vh;
  padding: 0;  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.subsection-wrapper {
  background-image: url('../assets/images/projects-bg_edited.jpg');
  overflow-y: scroll;
}

.parallax-section {
  background-image: url('../assets/images/sponsors/sponsor-background.png');
  background-position: 65% center;
}
.parallax-content-wrapper {
    display: flex;
    align-items: center;        
    justify-content: center;    
    gap: 40px;
    flex-wrap: wrap;            
    z-index: 2;
    position: relative;
    padding: 2vh 2vw;
    box-sizing: border-box;
    width: 100%;
    max-width: 80vw;
    margin: 0 auto;
}


.parallax-content {
    flex: 1 1 350px;
    max-width: 500px;
}
.parallax-section.in-view .parallax-content {
  opacity: 1;
  transform: translateY(0);
}
.team-image-wrapper {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.team-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.parallax-section.in-view .team-image {
  opacity: 1;
  transform: translateY(0);
}
.vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  z-index: 1;
  pointer-events: none;
}
.parallax-content {
  max-width: 500px;
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  position: relative;
  z-index: 2;
  line-height: 1.5;
}
.streak-line-wrapper {
  display: flex;
  align-items: center;
  margin: -15px 0;
}
.streak-line {
  height: 6px;
  width: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,0.8));
  border-radius: 2px;
  opacity: 0;
  transition: width 1s ease, opacity 1.8s ease;
  flex-shrink: 0;
}
.rocket-sideways {
  height: 60px;
  margin-left: -25px;
  transform: none;
  opacity: 0;
  transition: transform 2s ease-out, opacity 1s ease;
  z-index: 2;
}

.streak-line-wrapper.in-view .streak-line {
  width: 90%;
  opacity: 1;
}
.streak-line-wrapper.in-view .rocket-sideways {
  transform: translateX(0vw);
  opacity: 1;
}


@media (max-width: 1100px) {
  .parallax-content-wrapper {
    flex-direction: column;
    align-items: center; 
    padding: 10vh 2vw;  
    gap: 0px;    
  }

  .parallax-content {
    max-width: 80%;
  }
.team-image {
    max-width: 80%;
    width: 100%;
}
}




.btn-outline {
  padding: 10px 15px;
  background: transparent;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s ease;
  width: auto;
}
.site-header .btn-outline {
  padding: 8px 15px;
  font-size: 1rem;
  
}
.btn-outline:hover {
  background: white;
  color: black;
  transform: scale(1.05);
}




.scroll-down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  cursor: pointer;
  z-index: 10;
}


.scroll-down-arrow span {
 font-size: 1.2rem;
  opacity: 0.8;
}
.scroll-down-arrow i {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    top: 0;
  }
  40% {
    top: -10px;
  }
  60% {
    top: -5px;
  }
}





body.leadership-page {
  background-image: url('../assets/images/star_background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.leadership-section {
  color: white;
  scroll-snap-align: start;
  padding: 50px 0 0;
}

.leadership-title {
  font-size: 3rem;
  margin: 10vh 0 5vh;
  font-family: 'Syncopate';
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  opacity: 0;
}

.leadership-subtitle {
  font-size: 3rem;
  margin: 0px 0 20px;
  text-align: center;
  font-family: 'Syncopate';
}

.leadership-title.in-view,
.leadership-subtitle.in-view {
  opacity: 1;
  transform: translateY(0);
}

.leadership-card {
  opacity: 0;
  text-align: center;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-bottom: 60px;
}
.leadership-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.profile-img {
  width: 100%;
  max-width: 20vw;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  object-fit: cover;
  background-color: #ccc;
  margin-bottom: 10px;
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-role {
  font-size: 0.95rem;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.email-icon {
  color: #ccc;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.email-icon:hover {
  color: white;
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .col-lg-custom {
    flex: 0 0 20%;
    max-width: 40%;
  }
}
@media (max-width: 1000px) {
  .profile-img {
    max-width: 55vw;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .profile-img {
    max-width: 55vw;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-role {
    justify-content: center;
  }

  .leadership-title {
    text-align: center;
  }
  .leadership-title {
    font-size: 2.2rem;
  }
  .leadership-card {
    margin-bottom: 5px;
  }
  .leadership-subtitle {
    font-size: 2rem;
    margin-top: 20px;
  }
}



.text-heading {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Syncopate';
}
.text-subheading {
    font-size: 1.7rem;
    font-weight: 200;
}
.text {
    font-size: 1.2rem;
    font-weight: 100;
}




@media (max-width: 650px) {
  .parallax-section,
  .subsection-wrapper {
    height: auto; 
    min-height: 100vh;
    justify-content: center;
    text-align: center;
  }

  .parallax-content-wrapper {
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    padding: 0vh 0vw;
  }


  .parallax-content {
    max-width: 90%;
    align-items: center;
  }

  .text-bold {
    text-align: center;
    font-size: 1.75rem;
  }

  .rocket-sideways {
    height: 40px;
  }

  .streak-line-wrapper {
    margin: 0;
  }
.text-heading {
    font-size: 2rem;
}
.text-subheading {
    font-size: 1.2rem;
}
.text {
    font-size: 1rem;
}
.btn-outline {
  font-size: 1rem;
}
 .text-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
 }

 .team-image {
    max-width: 98%;
    width: 100%;
}

.leadership-title {
  font-size: 2rem;
  margin: 5vh 0 5vh;
}
.scroll-down-arrow span {
 font-size: 1rem;
}
.scroll-down-arrow i {
  font-size: 1.5rem;
}
}



.scroll-down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
}

.scroll-down-arrow p {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: rgb(208, 208, 208);
}

.scroll-down-arrow i {
  font-size: 2rem;
  display: inline-block;
  position: relative;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { top: 0; }
  40% { top: -10px; }
  60% { top: -5px; }
}

.scroll-down-arrow.hide {
  pointer-events: none;
}
