:root {
  --navy: #10182f;
  --blue: #243b73;
  --sky: #dcecff;
  --gold: #d9b76f;
  --cream: #fffaf0;
  --white: #ffffff;
  --muted: #697086;
  --text: #182033;
  --card: rgba(255, 255, 255, 0.82);
  --border: rgba(217, 183, 111, 0.35);
  --shadow: 0 24px 70px rgba(16, 24, 47, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 183, 111, 0.22), transparent 35%),
    linear-gradient(180deg, #eef6ff 0%, #fffaf0 48%, #ffffff 100%);
}

h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(255, 250, 240, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 183, 111, 0.25);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--navy);
}

.brand-mark {
  color: var(--gold);
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.8rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(16, 24, 47, 0.48), rgba(16, 24, 47, 0.78)),
    radial-gradient(circle at 50% 18%, rgba(255, 230, 170, 0.42), transparent 18%),
    radial-gradient(circle at 78% 25%, rgba(127, 167, 217, 0.38), transparent 28%),
    linear-gradient(135deg, #10182f 0%, #243b73 58%, #7fa7d9 100%);
}

.featured-song,
.song-card,
.playlist-box,
.now-playing-card,
.contact-card,
.contact-panel {
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,250,240,0.72));
  border: 1px solid rgba(217, 183, 111, 0.34);
  box-shadow:
    0 24px 70px rgba(16, 24, 47, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.contact-card::before {
  margin: -40px -40px 30px;
}

.featured-song::before,
.now-playing-card::before,
.contact-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -34px -34px 28px;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 45%;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.55), transparent 65%);
  filter: blur(18px);
}

.hero-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  top: 12%;
  right: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 231, 172, 0.42), transparent 65%);
  filter: blur(6px);
}

.hero-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

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

.button.secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.section {
  padding: 80px clamp(20px, 5vw, 70px);
  max-width: 1250px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 32px;
}

.featured-song {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.song-card-art{
	background-image: url('assets/img/Where_Heaven_Meets_the_Heart_Cover_Thumb.png');
}

.song-card-art img{
	border-radius: 24px;
}

.artwork-placeholder
{
  background:
    radial-gradient(circle at top, rgba(217, 183, 111, 0.5), transparent 35%),
    linear-gradient(145deg, #162044, #496fa8);
  border-radius: 24px;
}

.artwork-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.75);
  font-family: Georgia, "Times New Roman", serif;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  margin: 24px 0;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link,
.song-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.song-card a:hover {
  color: var(--gold);
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.song-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(16, 24, 47, 0.08);
}

.song-card-art {
  height: 160px;
  margin-bottom: 18px;
}

.site-footer {
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(217, 183, 111, 0.25);
}


.celestial-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.celestial-bg::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -22%;
  height: 48%;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(255,255,255,0.42), transparent 62%),
    radial-gradient(ellipse at 55% 52%, rgba(255,255,255,0.34), transparent 60%),
    radial-gradient(ellipse at 80% 55%, rgba(255,255,255,0.28), transparent 62%);
  filter: blur(20px);
  animation: cloudDrift 26s ease-in-out infinite alternate;
}

.celestial-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.16) 1px, transparent 1px),
    radial-gradient(circle, rgba(217,183,111,0.18) 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px;
  background-position: 10px 20px, 80px 60px;
  opacity: 0.7;
}

.ray {
  position: absolute;
  top: -18%;
  width: 16%;
  height: 140%;
  background: linear-gradient(
    to bottom,
    rgba(255, 237, 184, 0.28),
    rgba(255, 237, 184, 0.04),
    transparent
  );
  transform-origin: top center;
  filter: blur(12px);
  opacity: 0.72;
  animation: rayPulse 9s ease-in-out infinite alternate;
}

.ray-1 {
  left: 46%;
  transform: rotate(14deg);
}

.ray-2 {
  left: 58%;
  transform: rotate(26deg);
  animation-delay: 1.5s;
}

.ray-3 {
  left: 35%;
  transform: rotate(-12deg);
  animation-delay: 2.4s;
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(217, 183, 111, 0.72);
  box-shadow: 0 0 18px rgba(217, 183, 111, 0.75);
  animation: particleFloat 13s ease-in-out infinite;
}

.p1 { top: 24%; left: 18%; }
.p2 { top: 38%; left: 76%; animation-delay: 2s; }
.p3 { top: 62%; left: 68%; animation-delay: 4s; }
.p4 { top: 50%; left: 34%; animation-delay: 6s; }

.cloud-divider {
  height: 72px;
  margin-top: -1px;
  background:
    radial-gradient(ellipse at 15% 0%, #fffaf0 0%, #fffaf0 48%, transparent 50%),
    radial-gradient(ellipse at 40% 0%, #fffaf0 0%, #fffaf0 52%, transparent 54%),
    radial-gradient(ellipse at 68% 0%, #fffaf0 0%, #fffaf0 46%, transparent 48%),
    radial-gradient(ellipse at 90% 0%, #fffaf0 0%, #fffaf0 50%, transparent 52%);
}

@keyframes cloudDrift {
  from {
    transform: translateX(-2%) scale(1);
  }

  to {
    transform: translateX(2%) scale(1.04);
  }
}

@keyframes rayPulse {
  from {
    opacity: 0.34;
  }

  to {
    opacity: 0.78;
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-22px);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .celestial-bg::before,
  .ray,
  .particle {
    animation: none;
  }
}


@media (max-width: 850px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    padding: 20px;
    border-radius: 20px;
    background: var(--cream);
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  .site-nav.is-open {
    display: flex;
  }

  .featured-song {
    grid-template-columns: 1fr;
  }

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

  .artwork-placeholder {
    min-height: 260px;
  }
}
