/* ============================================================
   ASTRA CONTAINER OVERRIDES — strip wrappers around hero
   ============================================================ */
body.mf-home .site-main,
body.mf-home #primary,
body.mf-home .ast-container,
body.mf-home .entry-content,
body.mf-home .page-content,
body.mf-home .ast-article-single,
body.mf-home .ast-separate-container .ast-article-single {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ============================================================
   HOME — HERO SECTION
   ============================================================ */
body.mf-home .site-main,
body.mf-home #main {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Full width hero */
.mf-hero {
  position: relative;
  width: 100% !important;
  min-height: 65vh !important;
  margin-left: 0 !important;
  left: 0 !important;
  transform: none !important;
  overflow: hidden;
}

/* ============================================================
   HERO — BACKGROUND IMAGE BLUR LAYER
   ============================================================ */
.mf-hero__blur {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  filter: blur(3px) !important;
  transform: scale(1.05);
  z-index: 0;
}

/* ============================================================
   HERO — DARK OVERLAY
   ============================================================ */
.mf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(10, 46, 54, 0.65) 0%,
    rgba(19, 78, 94, 0.55) 55%,
    rgba(11, 122, 117, 0.45) 100%
  );
  z-index: 1;
}

/* ============================================================
   HERO — ANIMATED SHIMMER
   ============================================================ */
.mf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(78,205,196,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,175,176,0.12) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes heroShimmer {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* ============================================================
   HERO — FLOATING MUSIC NOTES
   ============================================================ */
.mf-hero::after {
  content: '♪ ♫ ♩ ♬';
  position: absolute;
  top: 15%;
  right: 5%;
  font-size: 2.5rem;
  color: rgba(78, 205, 196, 0.12);
  letter-spacing: 1.2rem;
  animation: floatNotes 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatNotes {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}

/* ============================================================
   HERO — INNER CONTAINER
   ============================================================ */
.mf-hero__container {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

/* Hero text */
.mf-hero__content { color: var(--color-white); }

.mf-hero__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  display: block;
}

.mf-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.mf-hero__title span { color: var(--color-accent); }

.mf-hero__subtitle {
  font-size: 1.08rem;
  color: var(--color-mist);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.mf-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   HERO — FROSTED GLASS CONTENT CARD
   ============================================================ */
.mf-hero__content {
  background: rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(78, 205, 196, 0.3) !important;
  border-radius: var(--radius-lg) !important;
  padding: 22px !important;
  box-shadow: var(--shadow-deep) !important;
}

/* ============================================================
   HERO — ALBUM PLAYER
   ============================================================ */
.mf-hero__player {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(78,205,196,0.3);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-deep);
}

.mf-hero__player-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-seafoam);
  margin-bottom: 10px;
  display: block;
}

.mf-hero__player iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
}

/* ============================================================
   HERO — BANDCAMP PLAYER
   ============================================================ */
.mf-hero__bandcamp {
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
}

.mf-hero__bandcamp iframe {
  width: 100% !important;
  height: 42px !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  display: block !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1025px) {
  .mf-hero {
    min-height: 75vh !important;
    padding: 120px 0 90px !important;
  }
}

@media (max-width: 1024px) {
  .mf-hero {
    min-height: 70vh !important;
    padding: 100px 0 60px !important;
  }

  .mf-hero__container {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center !important;
  }

  .mf-hero__subtitle { max-width: 100% !important; }
  .mf-hero__actions  { justify-content: center !important; }
  .mf-hero::after    { display: none !important; }
}

/*@media (max-width: 768px) {*/
/*  .mf-hero {*/
/*    min-height: 65vh !important;*/
/*    padding: 80px 0 42px !important;*/
/*  }*/
/*}*/
@media (max-width: 768px) {
  .mf-hero {
    min-height: 65vh !important;
    padding: 120px 0 42px !important;
  }

  .mf-hero__container {
    padding: 0 28px !important;
  }
}

/* ============================================================
   SMALL MOBILE — HOME HERO PUSH DOWN FOR DOUBLE HEIGHT HEADER
   ============================================================ */
@media (max-width: 393px) {
  .mf-hero {
    padding-top: 160px !important;
  }
}
