@import url('https://fonts.googleapis.com/css2?family=Anton&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oxanium:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@supports (-moz-appearance: none){
  .head1 {
    font-size: 10rem !important; /* Override with fixed size */
  }
  
  .head2 {
    font-size: 4rem !important; /* Override with fixed size */
  }
}
body{
  color: white;
}
input, textarea {
    font-size: 16px;
    color: white;
    margin-left: 10px;
}


/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 18px;
  font-size: 16px;
  background-color: #131212;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* Initially hidden */
  opacity: 0;
  transform: translateY(20px); /* Start slightly below */
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000000000;
}

/* Hover effect */
#backToTop:hover {
  background-color: #333;
}

/* Show button with fade-up effect */
#backToTop.show {
  display: block;
  opacity: 1;
  transform: translateY(0); /* Move to original position */
}* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  display: flexbox;
  align-items: center;
}


        










.header-content{
  margin-bottom: 0px;
}
.nav-hamburger{
  width: 1.875rem;
  height: 1.313rem;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.nav-hamburger-line{
  height: 0.188rem;
  width: 100%;
  background-color: white;
  border-radius: 0.625rem;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 900px) {
  .nav-hamburger{
    display: flex;
  }
  .header-head{ 
    position: absolute;
    display: flex;
    align-items: center;
    background-color: #0f0f0f;
    top: -25rem;
    width: 100%;
    height: 450px;
    transition: all ease-in-out 0.4s;
  }
  .header {
    flex-direction: row;
    align-items: flex-start;
  }
  .header-head ul {
    flex-direction: row;
    width: 100%;
    padding: 0.2rem 0 0.6rem;
  }
  .header-head ul li {
    width: 100%;
    text-align: center;
  }
  .header-head{
    z-index: -1;
  }
  .dropbtn{
    background-color: #0f0f0f;
  }
  .header-head.active{
    top: 0;
    z-index: 1000;
  }
  .nav-hamburger.active :nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.1875rem);
    z-index: 1001;
  }
  .nav-hamburger.active :nth-child(2) {
    opacity: 0;
    z-index: 1001;
  }
  .nav-hamburger.active :nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.1875rem);
    z-index: 1001;
  }
}
.active-header{
  color: #ff6200;
}
#active-year{
  color: #ff6200;
}
#logo{
  float: left;
}
#logo img{
  height: 70px;
  width: 120px;
}













.title {
  width: 100%;
  background-image: url('/Home/images/cool-background1.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2vw; /* Adds responsive spacing */
}

.head1 {
  color: #ff4d00;
  opacity: 1;
  font-family: Anton, sans-serif;
  animation: Slidein 0.4s ease-in;
  font-size: clamp(6rem, 12vw, 10rem); /* Adjusts size dynamically */
  margin-left: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  max-height: 280px;
}

.head2 {
  color: aliceblue;
  opacity: 0.8;
  font-family: Anton, sans-serif;
  font-size: clamp(1.5rem, 4vw, 5rem);
  animation: Slidein1 0.5s ;
  margin-left: 8vw;
  transform: translate(0, -2vw); /* Adjust position responsively */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  max-height: 280px;
}

@media (max-width: 768px) {
  .title {
    align-items: center; /* Center align for smaller screens */
    text-align: center;
  }

  .head1 {
    font-size: clamp(3rem, 10vw, 8rem);
    margin-left: 0;
  }

  .head2 {
    font-size: clamp(1.2rem, 3.5vw, 4rem);
    margin-left: 0;
    transform: translate(0, -1vw);
  }
}















.team-container {
  display: flex; /* Makes it a two-column flexbox */
  flex-wrap: nowrap; /* Prevents wrapping */
  min-height: 100vh;
  background-color: black;
    justify-content: center;
}

.left-column {
  width: 18%;
  min-height: 200px;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align years to the right */
  justify-content: flex-start; /* Push everything to the top */
  padding-right: 20px;
  padding-top: 1.5vh;
  font-family: "Trebuchet MS", sans-serif;
  font-size: x-large;
  min-height: 118vh; /* Ensures full height */
  gap: 10px; /* Consistent spacing between items */

}

.left-column2 {
  width: 18%;
  min-height: 200px;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align years to the right */
  justify-content: flex-start; /* Push everything to the top */
  padding-right: 20px;
  padding-top: 1.5vh;
  font-family: "Trebuchet MS", sans-serif;
  font-size: x-large;
  min-height: 118vh; /* Ensures full height */
  gap: 10px; /* Consistent spacing between items */
  margin-top: -370px;
}
.year-item {
  background-color: #0b0909;
  padding: 10px;
  text-align: right;
  list-style: none;
  width: 100%; /* Makes sure they stretch properly */
  min-width: 180px;
}
.year-item a {
  text-decoration: none;
  color: white;
  display: block;
}

/* Link Styling */
.year {
  padding: 0.8em 0.8em;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 22px);
  display: block;
}

/* Hover Effect */
.year:hover {
  color: #fc4a03;
}

.year::before,
.year::after {
  content: "";
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all 0.35s ease;
  opacity: 0;
}

.year::before {
  right: 0;
  top: 0;
  border-top: 3px solid #fc4a03;
  border-right: 3px solid #fc4a03;
  transform: translate(-100%, 50%);
}

.year::after {
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #fc4a03;
  border-left: 3px solid #fc4a03;
  transform: translate(100%, -50%);
}

.year:hover::before,
.year:hover::after {
  transform: translate(0, 0);
  opacity: 1;
}










.year2 {
  padding: 0.8em 0.3em;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 22px);
  display: block;
}

/* Hover Effect */
.year2:hover {
  color: #fc4a03;
}

.year2::before,
.year2::after {
  content: "";
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all 0.35s ease;
  opacity: 0;
}

.year2::before {
  right: 0;
  top: 0;
  border-top: 3px solid #fc4a03;
  border-right: 3px solid #fc4a03;
  transform: translate(-100%, 50%);
}

.year2::after {
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #fc4a03;
  border-left: 3px solid #fc4a03;
  transform: translate(100%, -50%);
}

.year2:hover::before,
.year2:hover::after {
  transform: translate(0, 0);
  opacity: 1;
}
/* Responsive Fix for Small Screens */
@media (max-width: 768px) {
  .column {
    width: 100%; /* On small screens, use full width */
    align-items: center; /* Center align */
    text-align: center;
    border-right: none;
    border-bottom: 2px solid orange; /* Adjust design for mobile */
  }

  #yeaar {
    text-align: center;
  }

  .year {
    font-size: 18px; /* Reduce font size for small screens */
  }
}

















.right-column {
  flex-grow: 1;
  background-color: black;
  padding: 20px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: x-large;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  min-height: 120vh;
  max-width: 90vw;
}
.team-head {
  display: flex;
  flex-wrap: wrap; /* Wrap items if screen is narrow */
  justify-content: center;
  align-items: center;
  gap: 14px; /* Add spacing between dropdown and buttons */
  margin-bottom: 30px; /* Space below tabs */
}
.team-link {
  text-decoration: none;
  color: white;
  display: inline-block;
  position: relative;
  z-index: 1; 
}
.box-1 {
  flex: 0 1 auto; /* Ensures buttons take only required space */
  max-width: 200px; /* Ensures uniform width */
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 190px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: PT Sans;
  color: #FFF;
  font-size: medium;
  transition: all 0.3s;
  position: relative;
  width: 190px; /* Ensure all buttons have the same width */
}
.btn span {
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}
.btn::before,
.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; /* Remove left shifting */
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
}
.btn::before {
  opacity: 0;
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  transform: scale(0.1, 1);
}
.btn:hover span {
  letter-spacing: 2px;
  color: #df4903;
}
.btn:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.btn::after {
  background-color: rgba(56, 53, 53, 0.233);
}
.btn:hover::after {
  opacity: 0;
  transform: scale(0.1, 1);
}

















@media screen and (min-width: 768px){
  .small-dropdown{
    display: none;
  }
}
/* Responsive: Hide team-head and show dropdown */
@media screen and (max-width: 768px) {
  .team-head {
      display: none;
  }
  .left-column {
    display: none;
  }
  .left-column2 {
    display: none;
  }
  .right-column{
    width: 100%;
  }



.small-dropdown{
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3vh;
}
.dropdown1 {
  position: relative;
  display: inline-block;
  background-color: #0f0f0f;
  margin-bottom: 4vw;
  margin-right: 10vw;
}
.dropdown2 {
  position: relative;
  display: inline-block;
  background-color: #0f0f0f;
  margin-bottom: 4vw;
  margin-left: 5vw;
}

/* Dropdown button (acts as a label) */
.dropdown1-btn,  .dropdown2-btn{
  background: none;
  color: white;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 10px 15px;
  display: inline-block;
}

.dropdown1-menu, .dropdown2-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 10, 1);
  list-style: none;
  padding: 0; /* Remove extra padding */
  margin-top: 10px;
  width: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

/* Show menu when checkbox is checked */
#dropdown1-toggle:checked + .dropdown1-btn + .dropdown1-menu {
  display: block;
}
#dropdown2-toggle:checked + .dropdown2-btn + .dropdown2-menu {
  display: block;
}
#dropdown1-toggle, #dropdown2-toggle {
  display: none;
}

.dropdown1-menu li, .dropdown2-menu li {
  padding: 10px; /* Uniform padding */
  text-align: left;
  width: 100%; /* Full width */
}

/* Dropdown links */
.dropdown1-menu li a, .dropdown2-menu li a {
  color: white;
  text-decoration: none;
  display: block; /* Full width */
  font-size: 14px;
  text-align: left;
  padding: 10px 15px; /* Ensures left alignment */
  width: 100%; /* Makes sure text stays left */
}

.arrow {
  font-size: 14px;
  opacity: 0.6;
}

}


















.team-info-div {
  display: flex; /* Corrected from 'flexbox' */
  justify-content: center; /* Aligns content to the left */
  align-items: center;
  margin-left: 30px; /* Adds space between left column and info */
  max-width: 80vw;
}

.team-info {
  display: flex; /* Corrected from 'flexbox' */
  align-items: center;
  color: #ffffff;
  font-family: "Trebuchet MS", sans-serif;
  font-size: x-large;
  border-left: 3px solid #df4903;
  animation: Slidein6 0.5s;
  padding-left: 15px; /* Adds space between text and border */
}
@keyframes Slidein6{
  0%{
      transform: translateX(20vw);
      opacity: 0.2;
  }
  100%{
      opacity: 1;
  }
}
.team-photo{
  width: 100%;
  text-align: center;
  font-family: Trebuchet MS;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 80vw;
}
.row1-photo1{
  width: 300px;
  height: 400px;
  display: inline-block;
  animation: Slideup 0.3s;
  color: white;
  overflow: hidden;
}
#pass{
  height: 250px;
  width: 200px;
}
.row1-data1{
  display: inline-block;
  animation: Slideup 0.3s;
  color: white;
  font-size: larger;
  overflow: hidden;
  width: 195px;
  position: relative;
  top: -0.5vh;
  text-align: left;
}
.separator1 {
  width: 100%; 
  height: 3px;
  background: #ff6200;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
}
#role{
  padding-bottom: 0.2vw;
  font-size: medium;
  font-family: Nunito Sans;
  color:#ffffff9a;
  text-align: left;
}
#name{
  color: #f06400;
  font-size: xx-large;
  font-family: Nunito Sans;
}

.footer-social {
  font-size: 22px;
  color: white;
  padding: 5px;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 40px; /* Adjust as needed */
  height: 40px; /* Adjust as needed */
}


/* Pseudo-element for smooth bottom-to-top transition */
.footer-social::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1c1c1c;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

/* On hover, transition background from bottom to top */
.footer-social:hover::before {
  transform: translateY(0);
}

/* Ensure icon is on top */
.footer-social i {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease-in-out;
  transition: transform 0.3s ease-in-out, color 0.4s ease-in-out;
}


/* Smooth scale effect on hover */
.footer-social:hover i {
  color: white !important;
  transform: scale(1.1);
}










@media screen and (max-width: 768px) {
  .team-photo {
    justify-content: center; /* Center-align items */
  }

  .row1-photo1 {
    width: 100%; /* Make each photo take full width */
    text-align: center; /* Center content */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
  }

  .row1-data1 {
    text-align: center; /* Center-align text */
    width: auto; /* Auto adjust width */
  }

  .separator1 {
    width: 100%; /* Reduce width to match content */
    margin: 10px auto; /* Center the separator */
  }
}

















/* Dropdown container */
.dropdown0 {
  position: relative;
  display: inline-block;
  margin-right: 20px; /* Space between dropdown and "Captains" tab */
  font-family: inherit;
}

/* Dropdown button */
.dropdown-button0 {
  background-color: #080808;
  color: #ffffff;
  padding: 8px 14px;
  font-size: 16px;
  border: 1px solid #ff3300;
  border-radius: 6px;
  cursor: pointer;
}

/* Dropdown content hidden by default */
.dropdown-content0 {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 1;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 4px;
}

/* Dropdown items */
.dropdown-content0 div {
  padding: 10px 14px;
  cursor: pointer;
}

.dropdown-content0 div:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on toggle */
.dropdown0.show .dropdown-content0 {
  display: block;
}

















.menu {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 170px;
}
.menu-head{
  width: 170px;
  font-size: 20px;
}
.menu li a {
  background: #131212;
  color: #fff;
  display: block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
}
.menu li{
  list-style: none;
}
.menu ul {
  background: #131212;
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all .5s ease;
  top: 55px;
  width: 100%;
  text-align: center;
}

.menu li:hover ul {
  height: 200px;
  opacity: 1;
  transform: translateY(0);
  background: #131212;

}

.menu ul a {
  color: #ffffff;
  display: block;
  padding: 15px 20px;
  text-align: center;
  width: 170px;
  font-family: PT Sans;
}

.menu-year {
  box-shadow: inset 0 0 0 0 #0a0a0a;
  color: #0a0a0a;
  padding: 0 .25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}
.menu-year:hover {
  color: #ff4400;
  box-shadow: inset 210px 0 0 0 #0a0a0a;;
}

/* Presentational styles */
.menu-year {
  color: #0a0a0a;
  font-family: PT Sans;
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
}