/* ========== RESET ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #e87a30;
  --orange-light: #f0944a;
  --orange-glow: rgba(232, 122, 48, 0.35);
  --bg-dark: #0c0c0c;
}

html { font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-dark);
  color: #f0f0f0;
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 100;
  background: transparent;
}

.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 24px;
  color: white;
  letter-spacing: 3px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Video fills the entire hero as a background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay so text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Centered content on top of video */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(72px, 16vw, 180px);
  color: white;
  letter-spacing: 12px;
  line-height: 1;
  margin-bottom: 36px;
  text-shadow: 0 0 80px rgba(232, 122, 48, 0.2), 0 4px 0 rgba(0, 0, 0, 0.35);
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(24px); }
}

.hero-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.35s;
  opacity: 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 24px var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--orange-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-x {
  width: 46px;
  height: 46px;
  padding: 0;
  background: #000;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}
.btn-x svg { width: 18px; height: 18px; }
.btn-x:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ========== CA ========== */
.hero-ca {
  margin-top: 24px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.55s;
  opacity: 0;
}
.hero-ca:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #555;
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  .hero-title { letter-spacing: 6px; }
  .hero-buttons { flex-wrap: wrap; justify-content: center; }
  .navbar { padding: 16px 24px; }
}

/* ========== MISC ========== */
::selection { background: var(--orange); color: white; }
::-webkit-scrollbar { width: 0; }
