/* ─────────────────────────────────────────
   ZADEN CRUIZE — Artist Homepage
   Based on: Micha artist site layout
   ───────────────────────────────────────── */

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

html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea {
  border: none;
  outline: none;
}
/* ─── HERO ─────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Background photo — covers full viewport */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Desaturate to match the black-and-white aesthetic */
  /* filter: grayscale(100%) brightness(0.65); */
  z-index: 0;
}

/* Subtle gradient overlay darkens bottom so release bar reads clearly */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 5%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

/* ─── HAMBURGER MENU ─────────────────────── */

.hamburger {
  display: none;
  position: fixed;
  left: 20px;
  top: 24px;
  z-index: 60;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  cursor: pointer;
  padding: 0;
  border: none;
  pointer-events: auto;
  font-size: 32px;
  color: #ffffff;
  line-height: 1;
  align-items: center;
}

.showandhidethis {
  display: none;
  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
}

.hamburger.active .showandhidethis {
  display: block;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger.active .hamburger__line {
  display: none;
}

.nav__heart_logo {
  z-index: 15;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #6c1212e0;
  z-index: 19;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  padding-top: 80px;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu.active .mobile-menu__link {
  pointer-events: auto;
}

.mobile-menu__link {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  pointer-events: none;
}

.mobile-menu__link:hover {
  color: #7dbfff;
}

/* ─── NAV ───────────────────────────────── */

.nav {
  position: relative;
  z-index: 20;
  display: grid;
  /* 3-column grid: left links | logo | right links */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 40px 0;
}

a {
  color: #fff;
  text-decoration: none;
}

.nav__left {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__right {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.nav__link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: #fff;
}

/* Contact link gets a subtle blue highlight — matching the reference */

.nav__link--highlight:hover {
  color: #7dbfff;
}

/* ─── ARTIST NAME ─────────────────────── */

.nav__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.nav__logo:hover {
  opacity: 0.85;
}

/* ─── SOCIAL ICONS (top-right corner) ── */

.nav__socials {
  position: absolute;
  top: 28px;
  right: 40px;
  display: flex;
  gap: 18px;
  align-items: center;
  z-index: 11;
}

.social-icon {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 1;
}

/* ─── RELEASE BAR (bottom) ──────────────── */

.hero__release {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-bottom: 26px;
}

.hero__release-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.hero__release-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.release-icon {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.release-icon:hover {
  opacity: 1;
}

/* ─── RESPONSIVE ──────────────────────── */

@media (max-width: 768px) {
  .nav {
    padding: 20px 20px 0;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hamburger {
    display: flex;
    position: fixed;
    left: 20px;
    top: 24px;
    z-index: 60;
  }

  .nav__left {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .nav__right {
    display: none;
  }

  .nav__logo {
    display: none;
  }

  .nav__socials {
    top: 20px;
    right: 20px;
    gap: 14px;
  }

  .hero__release {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 28px;
  }

  .hero__release-text {
    font-size: 13px;
  }

  .about__img-wrap {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.smooth-class {
  transition: all 0.3s ease;
}

a:hover {
  transform: translateY(-4px);
}

.smooth-class:hover {
  transform: translateY(-4px);
}

a {
  cursor: pointer !important;
}

/* .nav__logo:hover {
  transform: translateY(0px) !important;
} */

/* Mobile */

@media (max-width: 1100px) {
  .nav__logo {
    font-size: clamp(32px, 8vw, 48px);
  }

  .nav__socials {
    gap: 12px;
  }

  .hero__release {
    padding-bottom: 20px;
  }

  .nav__logo {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 5vw, 30px);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    transition: opacity 0.2s ease;
  }
}

.hero__release {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.hero__tagline {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "Pinyon Script", cursive;
}

/* ─── FADE IN ANIMATIONS ─── */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero__bg {
  animation: fadeIn 1.2s ease forwards;
}

.nav__left {
  animation: fadeUp 0.8s ease 0.2s both;
}

.nav__logo {
  animation: fadeUp 0.8s ease 0.4s both;
}

.nav__right {
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero__tagline {
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero__release-icons {
  animation: fadeUp 0.8s ease 0.8s both;
}

/* ─── ABOUT SECTION ─────────────────────── */

.about {
  background: #000;
  color: #fff;
  padding: 100px 60px 30px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.about__bio {
  max-width: 680px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__bio p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

.about__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

.about__img-wrap {
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.about__img-wrap.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.about__img-wrap:nth-child(2) {
  transition-delay: 0.15s;
}

.about__img-wrap:nth-child(3) {
  transition-delay: 0.3s;
}

.about__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.about__img-wrap:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.about__audio-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  margin-top: -60px;
}

.about__audio-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 0 0 8px 0;
}

.about__audio {
  width: 100%;
  max-width: 680px;
  margin-bottom: 24px;
  margin-top: 4px;
}

.about__audio audio {
  width: 100%;
  height: 44px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.about__spotify {
  width: 100%;
  max-width: 680px;
}

@media (max-width: 768px) {
  .about {
    padding: 70px 24px;
  }

  .about__images {
    grid-template-columns: 1fr;
  }

  .about__img-wrap img {
    height: 500px;
  }
}

.hero__bg {
  transition: opacity 0.8s ease;
  animation: fadeIn 1.2s ease forwards;
}
/* 
.hero__bg.bw {
  filter: grayscale(100%);
} */
/* ─── QUOTE STRIP ─── */

.quote-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  width: 100%;
  margin-top: 20px;
  padding: 0px 40px 20px 40px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.quote-item {
  text-align: center;
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  line-height: 0.5;
  color: rgba(255, 255, 255, 0.15);
  display: block;
  margin-bottom: 10px;
}

.quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
}

.quote-divider {
  width: 30px;
  height: 1px;
  /* background: rgba(255, 255, 255, 0.2); */
}

.quote-source {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 10px;
}

.quote-item,
.quote-divider,
.quote-source {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.quote-item.visible,
.quote-divider.visible,
.quote-source.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-item:nth-child(2) {
  transition-delay: 0.15s;
}
.quote-item:nth-child(3) {
  transition-delay: 0.3s;
}
.quote-divider:nth-child(4) {
  transition-delay: 0.2s;
}
.quote-divider:nth-child(6) {
  transition-delay: 0.35s;
}
.quote-source {
  transition-delay: 0.5s;
}

play-button {
  width: 80px;
  height: 80px;
}

@media (max-width: 768px) {
  .play-button {
    width: 40px !important;
    height: 40px !important;
  }
}
