/* =============================
   HERO SECTION - Modern Design
============================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../../a/img/BG2.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 80px;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

/* Overlay untuk membuat konten lebih terbaca */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  gap: 50px;
}

/* Left Side - Text Content */
.hero-left {
  flex: 1;
  max-width: 500px;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: #ffffff;
  letter-spacing: -1px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.brand-name {
  color: #ffffff;
  display: inline;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 25px 0;
  color: #ffffff;
  max-width: 450px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-login,
.btn-location {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-login {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-login:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-location {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-location:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Right Side - Time Card */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.time-card {
  position: relative;
  perspective: 1000px;
}

.time-card-inner {
  background: transparent;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
  border: none;
}

.clock-wrapper {
  position: relative;
  filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.15));
}

.clock-wrapper svg {
  width: 80px;
  height: 80px;
}

.time-text {
  text-align: left;
}

.time-label {
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 6px 0;
  font-style: italic;
  font-weight: 500;
}

.time-value {
  font-size: 32px;
  font-weight: 800;
  color: #2563eb;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -1px;
}

.time-to {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
}

/* Slideshow Dots */
.slideshow-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.dot.active {
  background-color: #ffffff;
  width: 30px;
  border-radius: 5px;
  border-color: #ffffff;
}

/* Decorative Circles - Subtle on photo background */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.circle-1 {
  width: 350px;
  height: 350px;
  top: -80px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  animation: float1 8s ease-in-out infinite;
}

.circle-2 {
  width: 250px;
  height: 250px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  animation: float2 10s ease-in-out infinite;
}

.circle-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  right: 15%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.15);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .time-card-inner {
    padding: 20px 30px;
  }

  .time-value {
    font-size: 26px;
  }

  .time-label {
    font-size: 16px;
  }
}
