@font-face {
  font-family: "HeroArcher";
  src: url("../../fonts/Heroarcherfreeversion-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "HeroArcher";
  background-color: #070707;
  overflow-x: hidden;
}

.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 0;
  background: transparent;
}

.nav-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0px;
  position: relative;
  height: 80px;
}

.nav-line {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  max-width: 80vw;
  height: auto;
  z-index: 1;
}

.nav-logo {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 0 15px rgba(197, 43, 7, 0.5));
}

.nav-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 65px;
  align-items: center;
  width: 55%;
  justify-content: center;
}

.nav-item img {
  height: 24px;
  width: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.nav-item img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 16px rgba(197, 43, 7, 0.6));
}

.profile-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.95),
    rgba(79, 17, 3, 0.95)
  );
  border: 2px solid rgba(197, 43, 7, 0.6);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.profile-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 20px;
  color: #cdcdcd;
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "HeroArcher";
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(197, 43, 7, 0.3);
  color: #ffa517;
  padding-left: 25px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../../HomePage/backgrounds/BG1.png") center top/cover
    no-repeat;
  background-color: #070707;
  background-position: center 100px;
  padding-top: 180px;
  padding-bottom: 20px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 5px;
}

.join-now-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  width: clamp(900px, 70vw, 1400px);
}

.join-now-bg-img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
}

.join-now-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  max-width: 57%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(197, 43, 7, 0.5));
}

.tagline-text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffa517 0%, #ff5317 50%, #4f1103 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "HeroArcher";
  filter: drop-shadow(0 0 10px rgba(197, 43, 7, 0.55));
}

.about-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  padding: 60px 60px;
  background: url("../../HomePage/backgrounds/AboutUsBG.png") center/contain
    no-repeat;
  background-color: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
}

.about-container {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  width: 100%;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 120%;
  height: auto;
  max-width: 580px;
  filter: drop-shadow(0 10px 30px rgba(197, 43, 7, 0.4));
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  align-items: center;
}

.about-text {
  font-size: 17px;
  line-height: 1.85;
  color: #cdcdcd;
  max-width: 620px;
  font-family: "HeroArcher";
  font-weight: 600;
  letter-spacing: 0.4px;
}

.elite-text {
  color: #b92d2c;
  font-weight: 800;
}

.founders-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  padding: 150px 20px 180px;
  background: url("../../HomePage/backgrounds/FoundersSection.png") center
    center no-repeat;
  background-color: #070707;
  background-size: 100% auto;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  z-index: 1;
}

.founders-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.founders-title {
  width: 360px;
  max-width: 65%;
  height: auto;
  margin: 0 auto 40px;
  display: block;
  filter: drop-shadow(0 0 15px rgba(197, 43, 7, 0.5));
}

.founders-grid-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 20px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.founders-grid-bottom {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.founder-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-frame-wrapper {
  position: relative;
  width: clamp(90px, 10vw, 130px);
  aspect-ratio: 1;
  margin: 0 auto 3px;
  transition: all 0.3s ease;
}

.founder-frame-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

.founder-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  height: 68%;
  object-fit: contain;
  z-index: 1;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.founder-placeholder.fade-out {
  opacity: 0;
}

.founder-item:hover .founder-frame-wrapper {
  transform: translateY(-5px);
  filter: drop-shadow(0 10px 20px rgba(197, 43, 7, 0.6));
}

.founder-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cdcdcd;
  font-family: "HeroArcher";
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
  margin-top: 0;
  text-align: center;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.founder-name.fade-out {
  opacity: 0;
}

.social-section {
  position: relative;
  width: 100%;
  padding: 0px 20px 100px;
  background: url("../../HomePage/backgrounds/BG3.png") center/cover no-repeat;
  background-color: #070707;
  text-align: center;
  margin-top: -80px;
  z-index: 2;
}

.social-content {
  position: relative;
  z-index: 10;
}

.social-subtitle {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #ffa517 0%, #ff5317 50%, #4f1103 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "HeroArcher";
  filter: drop-shadow(0 0 10px rgba(197, 43, 7, 0.55));
}

.social-title-img {
  width: 600px;
  max-width: 80%;
  height: auto;
  margin: 0 auto 70px;
  display: block;
  filter: drop-shadow(0 0 15px rgba(197, 43, 7, 0.5));
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.social-icon {
  width: 140px;
  height: 140px;
  cursor: pointer;
  transition: all 0.35s ease;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
}

.social-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 18px 35px rgba(197, 43, 7, 0.8));
}

.footer-section {
  position: relative;
  width: 100%;
  padding: 50px 40px 40px;
  background: linear-gradient(180deg, #1a0000 0%, #0d0000 50%, #000000 100%);
  border-top: 1px solid rgba(197, 43, 7, 0.3);
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(197, 43, 7, 0.4));
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-link {
  color: #cdcdcd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: "HeroArcher";
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.footer-divider {
  width: 100%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(197, 43, 7, 0.3) 50%,
    transparent 100%
  );
  margin: 10px 0;
}

.footer-copyright {
  color: #999;
  font-size: 13px;
  font-family: "HeroArcher";
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.6;
}

.footer-copyright .elite-text {
  color: #b92d2c;
  font-weight: 700;
}

.cursor-trail {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(197, 43, 7, 0.4) 0%,
    rgba(197, 43, 7, 0) 70%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: trailFade 0.8s ease-out forwards;
  z-index: 5;
}

@keyframes trailFade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
}

.about-image {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 40px rgba(197, 43, 7, 0.6));
}

.founders-title {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.founders-title:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 20px rgba(197, 43, 7, 0.7));
}

.social-title-img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.social-title-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(197, 43, 7, 0.7));
}

* {
  scroll-behavior: smooth;
}

@media (max-width: 1400px) {
  .join-now-wrapper {
    width: clamp(850px, 65vw, 1200px);
  }
  .join-now-text {
    width: 750px;
    max-width: 56%;
  }
  .about-container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .top-nav {
    padding: 25px 0;
  }
  .nav-wrapper {
    padding: 0 40px;
  }
  .nav-left,
  .nav-right {
    width: 42%;
    gap: 50px;
  }
  .hero-section {
    padding-top: 120px;
  }
  .join-now-wrapper {
    width: clamp(800px, 60vw, 1000px);
  }
  .join-now-text {
    width: 700px;
    max-width: 56%;
  }
  .about-section {
    padding: 50px 40px;
    min-height: auto;
    margin-top: -50px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }
  .about-image {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
  .about-text-content {
    text-align: center;
  }
  .founders-section {
    padding: 60px 20px 90px;
    min-height: auto;
    margin-top: -30px;
    background-size: cover;
  }
  .founders-grid-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
  }
  .founders-grid-bottom {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
  }
  .founders-grid-top .founder-frame-wrapper,
  .founders-grid-bottom .founder-frame-wrapper {
    width: clamp(100px, 12vw, 135px);
  }
  .social-section {
    padding: 60px 20px 80px;
    margin-top: -10px;
  }
}

@media (max-width: 968px) {
  .hero-section {
    padding-top: 110px;
  }
  .join-now-wrapper {
    width: clamp(700px, 55vw, 800px);
  }
  .join-now-text {
    width: 650px;
    max-width: 56%;
  }
  .tagline-text {
    font-size: 20px;
  }
  .about-section {
    padding: 40px 30px;
    margin-top: -40px;
  }
  .founders-section {
    padding: 50px 20px 100px;
    background-size: cover;
  }
  .social-section {
    padding: 50px 20px 70px;
  }
}

@media (max-width: 768px) {
  .top-nav {
    padding: 20px 0;
  }
  .nav-wrapper {
    padding: 0 24px;
    height: 70px;
  }
  .nav-logo {
    width: 150px;
  }
  .nav-left,
  .nav-right {
    width: 42%;
    gap: 30px;
  }
  .nav-item img {
    height: 22px;
  }
  .hero-section {
    padding-top: 110px;
    padding-bottom: 30px;
    min-height: 90vh;
  }
  .join-now-wrapper {
    width: 700px;
    max-width: 90vw;
  }
  .join-now-text {
    width: 600px;
    max-width: 58%;
  }
  .footer-section {
    padding: 40px 30px 30px;
  }
  .footer-links {
    gap: 30px;
  }
  .footer-link {
    font-size: 13px;
  }
  .tagline-text {
    font-size: 18px;
  }
  .about-section {
    padding: 40px 30px;
    min-height: auto;
    margin-top: -30px;
  }
  .about-text {
    font-size: 16px;
  }
  .founders-section {
    padding: 50px 24px 110px;
    min-height: auto;
    background-size: cover;
  }
  .founders-title {
    margin: 0 auto 30px;
  }
  .founders-grid-top,
  .founders-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 450px;
  }
  .founders-grid-top .founder-frame-wrapper,
  .founders-grid-bottom .founder-frame-wrapper {
    width: clamp(100px, 20vw, 140px);
  }
  .social-section {
    padding: 50px 20px 70px;
    margin-top: -10px;
  }
  .social-icons {
    gap: 40px;
  }
  .social-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 540px) {
  .top-nav {
    padding: 15px 0;
  }
  .nav-wrapper {
    padding: 0 18px;
    height: 60px;
  }
  .nav-logo {
    width: 120px;
  }
  .nav-left,
  .nav-right {
    width: 44%;
    gap: 20px;
  }
  .nav-item img {
    height: 20px;
  }
  .hero-section {
    padding-top: 90px;
    padding-bottom: 20px;
    min-height: 85vh;
  }
  .join-now-wrapper {
    width: 600px;
    max-width: 95vw;
  }
  .join-now-text {
    width: 550px;
    max-width: 60%;
  }
  .footer-section {
    padding: 35px 25px 25px;
  }
  .footer-logo {
    width: 100px;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-link {
    font-size: 12px;
  }
  .footer-copyright {
    font-size: 11px;
  }
  .tagline-text {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  .about-section {
    padding: 40px 20px;
    margin-top: -20px;
  }
  .about-text {
    font-size: 15px;
  }
  .founders-section {
    padding: 40px 20px 110px;
    background-size: cover;
  }
  .founders-title {
    width: 280px;
    margin-bottom: 25px;
  }
  .founders-grid-top,
  .founders-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 320px;
  }
  .founders-grid-top .founder-frame-wrapper,
  .founders-grid-bottom .founder-frame-wrapper {
    width: clamp(120px, 28vw, 150px);
  }
  .founder-name {
    font-size: 13px;
  }
  .social-section {
    padding: 40px 20px 60px;
  }
  .social-title-img {
    width: 90%;
    margin-bottom: 50px;
  }
  .social-icons {
    gap: 30px;
  }
  .social-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 380px) {
  .hero-section {
    padding-top: 80px;
  }
  .join-now-wrapper {
    width: 500px;
    max-width: 95vw;
  }
  .join-now-text {
    width: 480px;
    max-width: 62%;
  }
  .tagline-text {
    font-size: 14px;
  }
  .footer-links {
    gap: 15px;
    flex-direction: column;
  }
  .footer-link {
    font-size: 11px;
  }
  .footer-copyright {
    font-size: 10px;
  }
  .founders-grid-top,
  .founders-grid-bottom {
    grid-template-columns: repeat(1, 1fr);
    max-width: 180px;
  }
  .founders-grid-top .founder-frame-wrapper,
  .founders-grid-bottom .founder-frame-wrapper {
    width: clamp(140px, 40vw, 180px);
  }
  .social-icon {
    width: 85px;
    height: 85px;
  }
}
