/* Dez Ezé — one-page site
   Visual palette sampled from the album artwork.
*/

:root {
  --navy: #00152f;
  --navy-dark: #000c1c;
  --gold: #e0ae78;
  --gold-light: #f0c995;
  --blue: #416d8b;
  --blue-dark: #315a76;
  --orange: #c3480c;
  --white: #eee9e1;
  --muted: #c1c0bb;
  --line: rgba(224, 174, 120, 0.55);
  --max: 1070px;
}


/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 75% 42%,
      rgba(35, 69, 94, 0.12),
      transparent 35%
    ),
    var(--navy);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}


/* GENERAL CONTAINER */

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  padding-top: 34px;
}

.logo-link {
  display: block;
  width: min(400px, 72vw);
  margin: 0 auto 28px;
}

.logo-link img {
  display: block;
  width: 100%;
  height: auto;
}


/* NAVIGATION */

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(25px, 5vw, 65px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 17px 10px;
}

.nav a {
  color: var(--blue);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-light);
}


/* =========================================================
   LIVE SECTION
   ========================================================= */

.live-section {
  width: min(calc(100% - 48px), 900px);
  margin: 0 auto;
  padding: 50px 0 60px;
  border-bottom: 1px solid var(--line);
}

.live-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  align-items: center;
}

.live-details h2 {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.live-details p {
  margin: 0;
  color: var(--white);
  line-height: 1.7;
}

.live-details a {
  color: var(--blue);
  text-decoration: none;
}

.live-details a:hover {
  color: var(--gold);
}

.live-image {
  display: flex;
  justify-content: flex-end;
}

.live-image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}


/* =========================================================
   ALBUM HERO
   ========================================================= */

.hero {
  display: grid;
  grid-template-columns: 380px 460px;
  gap: 55px;
  align-items: center;
  justify-content: center;
  padding-top: 65px;
  padding-bottom: 72px;
}

.cover {
  border: 1px solid rgba(224, 174, 120, 0.32);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.cover img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  max-width: 500px;
}

.hero-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.0rem);

  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 200;
}

.rule {
  width: var;
  max-width: 100%;
  height: 1px;
  background: var(--gold);
  margin: 15px 0 22px;
}

.lead {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 500px;
}


/* LISTEN BUTTON */

.button {
  display: inline-block;
  margin-top: 18px;
  border: 1px solid var(--gold);
  padding: 13px 27px;
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--gold);
  color: var(--navy-dark);
}


/* =========================================================
   THREE FEATURE BLOCKS
   ========================================================= */

.three-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 74px;
}

.feature {
  text-align: center;
  padding: 5px 48px 0;
  border-right: 1px solid rgba(65, 109, 139, 0.5);
}

.feature:first-child {
  border-left: 0;
}

.feature:last-child {
  border-right: 0;
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 1.45rem;
}

.feature h2 {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.feature p {
  min-height: 95px;
  margin: 18px 0 22px;
  color: var(--white);
  font-size: 0.98rem;
}

.feature a {
  color: var(--blue);
  text-decoration: none;
}

.feature a:hover {
  color: var(--gold);
}

/* AUDIO PLAYER */

.audio-player {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(65, 109, 139, 0.7);
  text-align: left;
}

.track-title {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.play-button {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}

.play-button:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.progress-area {
  flex: 1;
  min-width: 0;
}

.progress {
  display: block;
  width: 100%;
  height: 4px;
  margin: 4px 0 7px;
  accent-color: var(--gold);
  cursor: pointer;
}

.time {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.7rem;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.social {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 22px;
}

.social a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social a:hover {
  color: var(--white);
}

.footer p {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

  .header {
    padding-top: 24px;
  }

  .logo-link {
    width: min(420px, 88vw);
  }

  .nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav a {
    font-size: 0.72rem;
  }


  /* LIVE */

  .live-section {
    width: min(calc(100% - 32px), 600px);
    padding: 40px 0 50px;
  }

  .live-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .live-image {
    justify-content: flex-start;
  }

  .live-image img {
    max-width: 500px;
  }


  /* ALBUM */

  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }

  .hero-copy {
    max-width: none;
  }


  /* FEATURES */

  .three-links {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .feature {
    padding: 0 25px 45px;
    border-right: 0;
    border-bottom: 1px solid rgba(65, 109, 139, 0.5);
  }

  .feature:last-child {
    border-bottom: 0;
  }
}


/* SMALL PHONES */

@media (max-width: 440px) {

  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .nav {
    gap: 10px 18px;
  }

  .hero-copy h2 {
    font-size: 2.5rem;
  }
}