/* ===============================
   HERO – VIDEO BACKGROUND
================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Desktop shows desktop video */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

/* OPTIONAL OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
/* ===============================
   HERO TEXT CONTENT
================================ */

.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 2rem;
  color: #ffffff;
}

.hero-eyebrow {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.hero-eyebrow span {
  color: var(--accent-main); /* warm orange */
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-title span {
  color: var(--accent-main);
}
/* ===============================
   HERO BUTTONS
================================ */

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.9rem 2rem;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* PRIMARY (ORANGE) */
.btn-primary {
  background: var(--accent-main);
  color: #ffffff;
}

.btn-primary:hover {
  background: #ff9f2a;
  transform: translateY(-2px);
}

/* SECONDARY (DARK / OUTLINE) */
.btn-secondary {
  background: rgba(0,0,0,0.6);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-2px);
}
/* ===============================
   HERO BUTTON INITIAL STATE
================================ */

.hero-actions {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

