/* Hero Section */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(90, 76, 62, 0.7), rgba(139, 107, 76, 0.6)),
    url("assets/naufal.png");
  background-size: cover;
  background-position: 50% 5%;
  display: flex;
  align-items: flex-start;
  padding-top: 15vh;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.3"/></svg>');
  animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
  0% {
    transform: translateY(-100px) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

.hero-content {
  z-index: 1;
  animation: fadeIn 2s ease-out;
  margin-top: clamp(40px, 10vh, 120px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 300;
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  font-size: 1.4rem;
  letter-spacing: 1px;

  margin-right: auto;
}

.date {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  margin-top: 20px;
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid white;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.hero-countdown {
  margin-top: 40px;
}

.hero-countdown .countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.hero-countdown .countdown-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px 15px;
  min-width: 80px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-countdown .countdown-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.hero-countdown .countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

/* Media query untuk layar besar (laptop/desktop) */
@media (min-width: 992px) {
  .hero-content {
    margin-top: 300px;
  }
}
