/* ============================================================
   HERO VIDEO
   ============================================================ */

.hero-video {
  position: relative;
  height: 80vh;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  padding: 20px;
}

/* ============================================================
   HERO BUTTON
   ============================================================ */

.hero-btn {
  margin-top: 24px;
  padding: 12px 32px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}



/* ============================================================
   NAVIGATION (DESKTOP)
   ============================================================ */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 10;
}

.brand a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  font-size: 1.2rem;
}

.menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
