@import url("./../assets/fonts/urbanist/fonts.css");

.font-urbanist {
  font-family: "Urbanist", sans-serif;
}

.text-sign-yellow {
  color: #f3c349;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
  color: #fff;
}

.navbar {
  background-color: #1c1c1c;
}

.nav-link {
  color: #ccc !important;
}

.nav-link.active,
.nav-link:hover {
  color: #fff !important;
}

.btn-gold {
  border: 1px solid #f5c542;
  color: #f5c542;
  background-color: transparent;
}

.btn-gold:hover {
  background-color: #f5c542;
  color: #121212;
}

.hero {
  padding: 80px 0;
}

.feature-box {
  border: 1px solid #2a2a2a;
  background-color: #1c1c1c;
  border-radius: 10px;
  padding: 30px 20px;
  color: #fff;
  transition: all 0.3s;
}

.feature-box:hover {
  border-color: #f5c542;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #f5c542;
}

.img-hero {
  max-width: 100%;
  border-radius: 10px;
}

.custom-nav-btn {
  @apply bg-[#111] text-white rounded-full p-2 shadow transition hover:bg-[#222];
  width: 40px !important;
  height: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: #262626 !important;
  border-width: 1px;
  border-radius: 50px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
  color: white;
}

.swiper-slide > div {
  border-color: #262626 !important;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.glow {
  box-shadow: 0 0 10px #facc15, 0 0 20px #facc15;
}

/* ---------- Roadmap ---------- */
.roadmap {
  position: relative;
}

.timeline {
  position: relative;
  width: 100%;
  height: px;
  background-color: #444;
  margin: 150px 0;
}

.timeline-dashed {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: repeating-linear-gradient(
    to right,
    #ffc107 0px,
    #ffc107 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 1;
}

.quarter {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #444;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.quarter.active {
  background-color: #ffc107;
  box-shadow: 0 0 15px 5px rgba(255, 193, 7, 0.5);
}

.quarter-content {
  position: absolute;
  width: 250px;
  padding: 15px;
  /* background-color: rgba(30, 30, 30, 0.8); */
  border-left: 1px solid #ffc107;
  transition: all 0.3s ease;
}

.quarter-content.top {
  bottom: 0px;
  /* transform: translateX(-50%); */
}

.quarter-content.bottom {
  top: 0px;
  /* transform: translateX(-50%); */
}

.quarter-label {
  position: absolute;
}

.quarter-label.top {
  bottom: -50px;
  /* left: 50%; */
  left: 0%;
  transform: translateX(-50%);
}

.quarter-label.bottom {
  top: -50px;
  /* left: 50%; */
  left: 0%;
  transform: translateX(-50%);
}

.content-title {
  font-size: 14px;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 10px;
}

.content-items {
  list-style-type: none;
  padding-top: 200px;
}

.content-item {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 12px;
}

.content-item i {
  color: #ffc107;
  margin-right: 8px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .timeline {
    width: 4px;
    height: auto;
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: 0;
  }

  .quarter {
    left: 20px;
    transform: translateY(-50%);
  }

  .roadmap {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    padding-bottom: 50px;
  }

  .quarter-block {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
    width: 100%;
  }

  .quarter-content {
    position: relative;
    width: 100%;
    max-width: 300px;
    transform: none;
  }

  .quarter-content.top,
  .quarter-content.bottom {
    top: auto;
    bottom: auto;
    left: 0;
  }

  .quarter-label {
    left: 40px;
    width: 100px;
  }

  .quarter-label.top,
  .quarter-label.bottom {
    top: -30px;
    bottom: auto;
    transform: none;
  }
}

/* Icons */
.icon-container {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
  color: #111;
  font-size: 12px;
  font-weight: bold;
  background-color: #ffc107;
}
