html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(180deg, #1a000b 0%, #3b0020 50%, #10001a 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f2f2f2;
}
::-webkit-scrollbar {
  display: none;
}

.container, .nav, main {
  position: relative;
  z-index: 1;
}

/* NAVBAR */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  border-radius: 16px;
  background: rgba(80, 0, 40, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ff4d6d, #ff1f55, #c70039);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  transition: all 0.5s ease;
}
.logo.scrolled {
  transform: scale(1.2);
  text-shadow: 0 0 15px rgba(255, 46, 99, 0.8);
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  position: relative;
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #ff4d6d, #ff1f55, #c70039);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover {
  color: #ff4d6d;
}
.nav-links a:hover::after {
  width: 100%;
}

/* BUTTON BELI TIKET */
.auth .signup {
  background: linear-gradient(90deg, #ff2e63, #ff6f91);
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(255, 46, 99, 0.6);
}
.auth .signup:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #ff6f91, #ff2e63);
  box-shadow: 0 0 25px rgba(255, 46, 99, 0.9), 0 0 50px rgba(255, 46, 99, 0.5);
}

/* HERO SECTION */
.hero {
  position: relative;
  margin: 20px;
  padding: 100px 60px;
  border-radius: 20px;
  color: #fff;
  background: url('menu.jpg') center/cover no-repeat;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ddd;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.time-card {
  width: 100px;
  height: 100px;
  background: rgba(255, 77, 109, 0.1);
  border: 2px solid #ff4d6d;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 77, 109, 0.5);
  transition: all 0.4s ease;
  cursor: pointer;
}
.time-card:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 0 25px rgba(255, 46, 99, 0.9), 0 0 40px rgba(255, 46, 99, 0.6);
  background: rgba(255, 77, 109, 0.2);
}
.time-card .number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff4d6d;
}
.time-card .label {
  font-size: 0.9rem;
  color: #fff;
  margin-top: 5px;
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1000px;
  background: rgba(64, 0, 22, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  overflow: hidden;
}
.about-image {
  flex: 1 1 40%;
  min-height: 400px;
  background: url("about.jpg") center/cover no-repeat;
  filter: brightness(0.9);
}
.about-text {
  flex: 1 1 60%;
  padding: 40px;
  text-align: left;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}
.about-text h2 span {
  color: #ff4d6d;
}
.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4d6d;
  margin-top: 10px;
  border-radius: 2px;
}
.about-text p {
  line-height: 1.6;
  margin-bottom: 15px;
}
.about-text .highlight {
  color: #ff4d6d;
  font-weight: 600;
}
.about-btn {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 20px;
  background: linear-gradient(135deg, #ff2e63, #ff6f91);
  color: #fff;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 15px rgba(255, 46, 99, 0.6);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: 0.5s;
}
.about-btn:hover::before {
  left: 100%;
}
.about-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 46, 99, 0.9);
}

/* SERVICES & CONTACT CARD */
.dummy-section {
  padding: 100px 20px;
  text-align: center;
}
.dummy-section .card {
  background: rgba(64, 0, 22, 0.5);
  border-radius: 20px;
  padding: 40px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
  cursor: pointer;
}
.dummy-section .card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 46, 99, 0.8), 0 0 50px rgba(255, 46, 99, 0.5);
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal.fade-left { transform: translateX(-60px); }
.reveal.fade-right { transform: translateX(60px); }
.reveal.zoom { transform: scale(0.8); }
.reveal.fade-left.active,
.reveal.fade-right.active,
.reveal.zoom.active {
  transform: translateX(0) scale(1);
  opacity: 1;
}

/* =============== RESPONSIVE DESIGN =============== */

/* Tablet */
@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }
  .hero {
    padding: 80px 30px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .about-text {
    padding: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .auth {
    margin-top: 10px;
  }
  .hero {
    padding: 60px 20px;
    min-height: 300px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .countdown {
    flex-wrap: wrap;
    gap: 15px;
  }
  .time-card {
    width: 80px;
    height: 80px;
  }
  .time-card .number {
    font-size: 1.4rem;
  }
  .time-card .label {
    font-size: 0.8rem;
  }
  .about-container {
    flex-direction: column;
  }
  .about-image {
    width: 100%;
    min-height: 250px;
  }
  .about-text {
    width: 100%;
    padding: 20px;
    text-align: center;
  }
  .about-text h2 {
    font-size: 1.6rem;
  }
  .dummy-section {
    padding: 60px 15px;
  }
  .dummy-section .card {
    padding: 25px;
  }
}

/* Extra Small (HP layar kecil <480px) */
@media (max-width: 480px) {
  .nav {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    font-size: 1.5rem;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .auth .signup {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
}
