/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0b0c;
  color: #eee;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  height: 34px;
}

.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  color: #cfcfcf;
  transition: 0.25s;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  font-weight: 700;
  color: #ff5a2f !important;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  height: 60vh;
  background: linear-gradient(to bottom, #111, #0b0b0c);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  padding: 20px;
}

.hero-title {
  font-size: 3.7rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 25px;
}

.hero-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff7d44, #ff3f15);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 18px rgba(255,80,40,0.3);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(255,80,40,0.45);
}
/* Ambient Light Background Behind Hero Text */
.ambient {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
      rgba(255, 115, 60, 0.55),
      rgba(255, 0, 0, 0.0) 70%);
  filter: blur(90px);
  opacity: 0.9;
  animation: ambientMove 11s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes ambientMove {
  0% {
    transform: translate(-50%, -48%) scale(1);
  }
  50% {
    transform: translate(-48%, -52%) scale(1.25);
  }
  100% {
    transform: translate(-52%, -49%) scale(1.1);
  }
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* GRID */
.grid {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARD */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(14px);
  transition: 0.35s;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
}

/* FONT PREVIEW */
.font-preview {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

/* DOWNLOAD BUTTON */
.btn {
  margin-top: 20px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #ff7644, #ff3c16);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,80,40,0.4);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 70px 20px;
  opacity: 0.35;
}
/* FOOTER PREMIUM */
.footer {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 60px 20px 40px 20px;
  margin-top: 90px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 45px;
  margin-bottom: 12px;
  opacity: .9;
}

.footer-tagline {
  opacity: .7;
  font-size: .95rem;
  margin-bottom: 35px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: .95rem;
  opacity: .6;
  transition: .25s ease;
}

.footer-links a:hover {
  color: #fff;
  opacity: 1;
}

.footer-meta p {
  opacity: .45;
  font-size: .85rem;
}
/* AURORA BREATHING — GERAK 100% */
.ambient-breath {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 125, 50, 0.55), transparent 65%),
    radial-gradient(circle at 54% 60%, rgba(255, 55, 190, 0.45), transparent 70%),
    radial-gradient(circle at 46% 72%, rgba(70, 140, 255, 0.40), transparent 75%);

  filter: blur(95px);
  opacity: 0.9;
  pointer-events: none;

  /* INI YANG BIKIN GERAK — HARUS ADA */
  animation: breathe 14s ease-in-out infinite;
  z-index: 1;
}

/* ANIMASI BREATHING */
@keyframes breathe {
  0% {
    transform: translate(-50%, -50%) scale(1);
    filter: blur(90px);
    opacity: 0.85;
  }
  25% {
    transform: translate(-50%, -50%) scale(1.14);
    filter: blur(110px);
    opacity: 0.95;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    filter: blur(95px);
    opacity: 0.80;
  }
  75% {
    transform: translate(-50%, -50%) scale(1.18);
    filter: blur(120px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: blur(90px);
    opacity: 0.85;
  }
}

/* PASTIKAN TEXT DI ATAS AURORA */
.hero-inner {
  position: relative;
  z-index: 3;
}
