@font-face {
  font-family: "Signord";
  src: url("../assets/fonts/signord.otf") format("opentype");
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Signord", sans-serif;
  background-color: rgb(10, 10, 12);
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Navbar styles */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar-logo {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo img {
  height: 100%;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b0b0b0;
} */

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed navbar */
  display: flex;
  flex-direction: column;
}

/* Content styles */
.content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 2rem 0;
}

.main-title {
  font-size: 8rem;
  font-weight: normal;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  letter-spacing: 0.5rem;
}

.coming-soon {
  font-family: "Signord", sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff, #a0a0a0);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: buttonPulse 2s infinite;
}

.coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.coming-soon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.coming-soon:hover::before {
  left: 100%;
}

@keyframes buttonPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}

/* Background elements */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../assets/images/bg-image.jpg");
  background-size: cover;
  background-position: center;
  /* filter: blur(1px); */
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(10, 10, 12, 0.7) 0%,
    rgb(10, 10, 12) 100%
  );
}

.clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgb(28, 29, 32), rgb(50, 53, 58));
  opacity: 0.7;
  animation: cloudMove 60s linear infinite;
}

.mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: rgb(28, 29, 32);
  clip-path: polygon(
    0 60%,
    20% 45%,
    40% 55%,
    60% 40%,
    80% 50%,
    100% 35%,
    100% 100%,
    0 100%
  );
}

.clock-face {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0.2;
}

.background-text {
  position: absolute;
  font-size: 15vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  transform: translateY(-50%);
  z-index: -1;
}

.central-image {
  margin-bottom: 40px;
}

.stairs-silhouette {
  width: 200px;
  height: 300px;
  background: rgba(0, 0, 0, 0.8);
  clip-path: polygon(0 100%, 100% 60%, 100% 100%);
}

/* Social links */
.social-links {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.social-link:hover {
  transform: scale(1.1);
}

/* Animations */
@keyframes cloudMove {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(10%);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .main-title {
    font-size: 4rem;
    letter-spacing: 0.3rem;
  }

  .coming-soon {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }

  .background {
    background-position: calc(50% - 2.5mm) center;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 3rem;
    letter-spacing: 0.2rem;
  }

  .coming-soon {
    font-size: 0.9rem;
    padding: 0.7rem 1.8rem;
  }
}

.about {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: rgb(10, 10, 12);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 800;
}

/* Abstract Background Animations */
.abstract-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: float 20s linear infinite;
}

.shape-1 {
  width: 150px;
  height: 150px;
  border-radius: 41% 59% 47% 53% / 44% 42% 58% 56%;
  top: 10%;
  left: 10%;
  animation-delay: -2s;
  border-color: rgba(255, 255, 255, 0.1);
}

.shape-2 {
  width: 200px;
  height: 200px;
  border-radius: 53% 47% 59% 41% / 56% 58% 42% 44%;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
  border-color: rgba(255, 255, 255, 0.15);
}

.shape-3 {
  width: 180px;
  height: 180px;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  bottom: 20%;
  left: 20%;
  animation-delay: -8s;
  border-color: rgba(255, 255, 255, 0.12);
}

.shape-4 {
  width: 120px;
  height: 120px;
  border-radius: 59% 41% 52% 48% / 44% 59% 41% 56%;
  top: 30%;
  right: 30%;
  animation-delay: -11s;
  border-color: rgba(255, 255, 255, 0.08);
}

@keyframes float {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }
  33% {
    transform: rotate(120deg) translate(20px, -20px) scale(1.1);
  }
  66% {
    transform: rotate(240deg) translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: rotate(360deg) translate(0, 0) scale(1);
  }
}

/* Tasks Overview Section */
.tasks-overview-section {
  width: 100%;
  background-color: rgb(10, 10, 12);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.tasks-overview-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(10, 10, 12, 0.7) 0%,
    rgb(10, 10, 12) 100%
  );
  z-index: 1;
}

.tasks-overview-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tasks-overview {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tasks-progress {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 3px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.progress-circle::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 1px);
  height: calc(100% + -1px);
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid rgba(255, 255, 255, 0.7);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.progress-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.day-number {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.2rem;
}

.current-day {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.total-days {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

.progress-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.progress-info p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.tasks-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.task-highlight {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.task-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.task-highlight.active {
  border-left: 3px solid rgba(255, 255, 255, 0.7);
}

.task-highlight.locked {
  opacity: 0.7;
}

.highlight-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.task-highlight h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding-right: 80px;
}

.task-highlight p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.highlight-meta {
  display: flex;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.highlight-meta i {
  margin-right: 0.3rem;
}

.tasks-cta {
  text-align: center;
}

/* Responsive styles for tasks overview section */
@media (max-width: 1024px) {
  .tasks-highlights {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 100%;
  }
  .tasks-progress {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .progress-info {
    text-align: center;
  }

  .tasks-overview-section .container {
    padding: 0 1.5rem;
  }

  .tasks-overview {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .tasks-overview-section {
    padding: 3rem 0;
  }

  .tasks-highlights {
    grid-template-columns: 1fr;
  }

  .progress-circle {
    width: 100px;
    height: 100px;
  }

  .current-day {
    font-size: 2rem;
  }

  .progress-info h3 {
    font-size: 1.3rem;
  }

  .progress-info p {
    font-size: 0.9rem;
  }

  .task-highlight {
    padding: 1.2rem;
  }

  .task-highlight h4 {
    font-size: 1.1rem;
    padding-right: 60px;
  }

  .highlight-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .tasks-overview-section {
    padding: 2rem 0;
  }

  .tasks-overview-section .container {
    padding: 0 1rem;
  }

  .tasks-overview {
    padding: 1rem;
  }

  .progress-circle {
    width: 80px;
    height: 80px;
  }

  .current-day {
    font-size: 1.8rem;
  }

  .total-days {
    font-size: 1rem;
  }

  .day-number {
    font-size: 0.8rem;
  }

  .progress-info h3 {
    font-size: 1.2rem;
  }

  .task-highlight p {
    font-size: 0.85rem;
  }

  .highlight-meta {
    font-size: 0.75rem;
  }
}

#task-countdown {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.highlight-meta span {
  transition: color 0.3s ease;
}

.highlight-meta span:hover {
  color: rgba(255, 255, 255, 1);
}

@keyframes urgentPulse {
  0% {
    color: rgba(255, 255, 255, 0.9);
  }
  50% {
    color: rgba(255, 100, 100, 1);
  }
  100% {
    color: rgba(255, 255, 255, 0.9);
  }
}

.countdown-urgent {
  animation: urgentPulse 1.5s infinite;
}
