/* style.css */

/* BODY */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background: radial-gradient(circle, #0d0d0d, #0f2027, #133d2e);
}

/* HERO TEXT */
.hero-text h2 {
  color: #00ffe0;
  text-shadow: 0 0 10px rgba(0, 255, 224, 0.7);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav a {
  font-weight: 600;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0d0d0d, #0f2027, #133d2e);
  border-bottom: 2px solid #00ffe0;
  box-shadow: 0 0 10px rgba(0, 255, 224, 0.4);
  z-index: 1000;
  padding: 12px 24px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 60px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #f5f5f5;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ff0077;
}

.actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-daftar {
  background: #00ffe0;
  color: #000;
}

.btn-login {
  background: #ff0077;
  color: #fff;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 120px 20px 60px;
}

.hero img {
  max-width: 380px;
  border-radius: 10px;
}

.hero-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text p {
  line-height: 1.6;
  font-size: 15px;
  text-align: justify;
  letter-spacing: -0.2px;
}

/* GIF BUTTON */
.gif-button {
  max-width: 250px;
  display: block;
  margin: 20px auto;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 18px;
  background: linear-gradient(90deg, #0d0d0d, #0f2027, #133d2e);
  color: #e0e0e0;
  font-size: 14px;
  border-top: 3px solid #00ffe0;
  box-shadow: 0 -2px 12px rgba(0, 255, 224, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero img {
    margin: 0 auto;
  }

  .hero-text p {
    text-align: center;
  }

  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo img {
    max-width: 330px;
    margin-bottom: 10px;
  }

  nav {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  nav a {
    font-size: 12px;
    padding: 4px 6px;
  }

  .actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .actions .btn {
    font-size: 13px;
    padding: 6px 14px;
    justify-content: center;
  }

  /* HIDE HAMBURGER */
  .hamburger {
    display: none !important;
  }
}

/* Default: hamburger hidden */
.hamburger {
  display: none;
  font-size: 28px;
  color: #00ff66;
  cursor: pointer;
}
