/* ==============================================
   Hero Section
   ============================================== */
.mn-hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary);
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.07) 40px,
    rgba(0, 0, 0, 0.07) 80px
  );
  padding: 52px 24px;
  text-align: center;
}

/* Gold accent bar at bottom */
.mn-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
}

/* ==============================================
   Background Image Mode
   ============================================== */
.mn-hero-has-image {
  min-height: 500px;
  padding: 60px 24px;
  background-image: none;
}

/* Ambient blur fill behind image */
.mn-hero-ambient {
  position: absolute;
  inset: -40px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(60px) saturate(1.0) brightness(0.25);
  transform: scale(1.1);
}

/* Vignette on image heroes */
.mn-hero-has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

/* Crisp image — keeps native aspect ratio */
.mn-hero-image {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: none;
}

.mn-hero-image img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}

/* Default gradient when no bg image */
.mn-hero-gradient {
  background: var(--primary);
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.07) 40px,
    rgba(0, 0, 0, 0.07) 80px
  );
}

/* ==============================================
   Overlay
   ============================================== */
.mn-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Red overlay — toggled via admin checkbox */
.mn-hero-blue-overlay .mn-hero-overlay {
  background: var(--primary);
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.07) 40px,
    rgba(0, 0, 0, 0.07) 80px
  );
  opacity: 0.85;
}

/* ==============================================
   Hero Content
   ============================================== */
.mn-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mn-hero-pretitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 10px;
}

.mn-hero-pretitle::before,
.mn-hero-pretitle::after {
  content: none;
}

.mn-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0 0 12px;
}

.mn-hero-title .mn-hero-line {
  display: block;
}

.mn-hero-title .accent {
  color: var(--secondary);
}

.mn-hero-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 28px;
  letter-spacing: 0;
}

/* ==============================================
   Hero Buttons
   ============================================== */
.mn-hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.mn-btn-ghost,
.mn-btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.15s;
}

.mn-btn-ghost:hover,
.mn-btn-primary:hover {
  opacity: 0.85;
}

/* Gold filled button */
.mn-btn-primary {
  background: var(--secondary);
  color: var(--on-secondary);
}

/* Ghost/outline button */
.mn-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
