@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cal+Sans&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lexend:wght@100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif: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&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Expanded+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cal+Sans&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lexend:wght@100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif: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=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oxanium:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Expanded+One&display=swap');


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);
  }
  .year-nav a{
    display: none;
  }
}

















/* Reset and fonts */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
.main-cont{
  background-color: black;
}

/* Main header */
.main-header {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Sticky Year Nav */
.year-nav {
  position: sticky;
  top: 0;
  background: #141313;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}
.year-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: xx-large;
  margin: 0px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Section */
.year-section {
  padding: 40px 20px;
  background-color: black;
  padding-top: 70px;

}
.year-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-family: Cal Sans;
  font-size: 5rem;
}

/* Card layout */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Flip Card */
.flip-card {
  background: transparent;
  width: 300px;
  height: 350px;
  perspective: 1000px;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: rgb(26, 25, 25);
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-card-back ul li{
    text-align: left;
    float: left;
}

.flip-card-front p{
  font-family: Nunito;
}
.flip-card-front h3{
  font-size: x-large;
}

.flip-card-front img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.flip-card-back {
  background: rgb(26, 25, 25);
  transform: rotateY(180deg);
}

.year-nav a::before {
  margin-right: 4px;
  color: orange;
}


/* Flip card spec list with icons */
.flip-card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.flip-card-back ul li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin: 10px 0;
  font-family: Oxanium, sans-serif;
}
.flip-card-back ul li i {
  margin-right: 10px;
  color: orange;
  font-size: 20px;
}













































/* .container {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  width: 100%;
  gap: 20px;
  padding: 0;
  margin: 0;
  margin-top: 300px;
}

:root {
  --background-color: black;
  --text-color: hsl(0, 0%, 100%);
}
.wrapper {
  display: grid;
  place-content: center;
  background-color: var(--background-color);
  min-height: 10vh;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 0.5rem + 5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-color);
}

.wrapper > div {
  grid-area: 1/1/-1/-1;
}
.top {
  clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
}
.bottom {
  clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
  color: transparent;
  background: -webkit-linear-gradient(177deg, black 53%, var(--text-color) 65%);
  background: linear-gradient(177deg, black 53%, var(--text-color) 65%);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(-0.02em);
}

.card {
  display: flex;
  flex-direction: row;
  width: 60%;

  box-shadow: 0 4px 50px rgba(255, 255, 255, 0.12);
  position: relative;
  margin: 30px auto;
  padding: 0;
  border: none;
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  justify-content: flex-start;
  align-items: stretch; 
  margin-bottom: 50px;
}

.card .content {
  width: 50%;
  background: #181818;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content:left;
  color: white;
  text-align: left;
  align-items: flex-start; 
}

.card .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left; 
}


.card:nth-child(even) {
  transform: translateX(0);
}

.card.show {
  opacity: 1;
  transform: translateX(0);
}

.card .image {
  width: 50%;
  height: auto; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.card .content ul li {
  display: flex;
  font-family: Oxanium;
  font-size: 26px;
  margin-bottom: 10px;
  width: 100%;
}

#name {
  font-size: 35px;
  color: rgb(255, 98, 0);
  text-align: center;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(255, 98, 0);
  margin-bottom: 15px;
}

.card .content ul li img {
  height: 40px;
  width: 40px;
  margin-right: 10px;

}

.image1 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}

.image1 img {
  width: 250px;
  height: auto;
} */
 

/* .title1 {
  text-align: center;
  font-size: 60px;
  font-family: Oxanium;
  color: white;
  width: 100%;
  margin-bottom: 10px;
}


@media (max-width: 1024px) {
  .container {
      flex-direction: column;
      align-items: center;
  }

  .card {
      width: 90%;
      flex-direction: column;
      height: auto;
      align-items: center;
      justify-content: center;
  }

  .card .image,
  .card .content {
      width: 100%;
      text-align: center;
      align-items: center;
  }

  .card .content ul li {
      justify-content: center;
  }

  .image1 {
      position: relative;
      top: 0;
      left: 0;
      transform: none;
  }
} */