: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.7rem, 6vw, 5.2rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  line-height: 1.7;
}

a {
  color: inherit;
}

.hidden_title{
	display: none;
}

.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,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.page-hero {
  position: relative;
  padding: 110px clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(rgba(16, 24, 47, 0.64), rgba(16, 24, 47, 0.75)),
    radial-gradient(circle at 72% 22%, rgba(217, 183, 111, 0.45), transparent 20%),
    linear-gradient(135deg, #10182f 0%, #243b73 62%, #7fa7d9 100%);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -34%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.55), transparent 65%);
  filter: blur(18px);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.86);
  font-size: 1.15rem;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 800;
}

.section {
  padding: 80px clamp(20px, 5vw, 70px);
  max-width: 1250px;
  margin: 0 auto;
}

.music-player-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.playlist-box {
    width: 360px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.9),
            rgba(255,250,240,0.72)
        );
    box-shadow: var(--shadow);
}

.playlist-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.playlist-header h2 {
    margin-bottom: 0;
}

.playlist-header .eyebrow {
    margin-top: 0;
    margin-bottom: 5px;
}

.playlist-count {
    margin-top: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(217, 183, 111, 0.15);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| Playlist carousel
|--------------------------------------------------------------------------
*/

.playlist-carousel {
    position: relative;
}

/*
 * This determines how many songs are visible at once.
 *
 * Each song is roughly 94px high, plus the 12px gap.
 * 4 tracks therefore needs approximately 412px.
 */
.playlist-window {
    height: 412px;
    overflow-y: auto;

    /*
     * Native scroll is retained so users can still use a mouse wheel,
     * trackpad, keyboard, or touch screen.
     */
    scroll-behavior: smooth;

    /*
     * Hide normal scrollbar where supported.
     */
    scrollbar-width: none;

    /*
     * Gives snapping a pleasant carousel feel.
     */
    scroll-snap-type: y proximity;
}

.playlist-window::-webkit-scrollbar {
    display: none;
}

.playlist-list {
    display: grid;
    gap: 12px;
}

.playlist-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;

    width: 100%;
    min-height: 94px;

    padding: 15px 16px;

    border: 1px solid rgba(217, 183, 111, 0.25);
    border-radius: 20px;

    background: rgba(255,255,255,0.62);
    color: var(--text);

    text-align: left;

    cursor: pointer;

    scroll-snap-align: start;

    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.playlist-item:hover {
    background:
        linear-gradient(
            135deg,
            rgba(217, 183, 111, 0.18),
            rgba(220, 236, 255, 0.65)
        );

    border-color: rgba(217, 183, 111, 0.55);

    transform: translateX(2px);
}

.playlist-item.is-active {
    background:
        linear-gradient(
            135deg,
            rgba(217, 183, 111, 0.28),
            rgba(220, 236, 255, 0.88)
        );

    border-color: rgba(217, 183, 111, 0.85);

    box-shadow:
        inset 3px 0 0 var(--gold),
        0 7px 18px rgba(16, 24, 47, 0.08);
}

.playlist-number {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.2;
}

.playlist-text {
    min-width: 0;
}

.playlist-text strong {
    display: block;

    margin-bottom: 5px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.25;
}

.playlist-text small {
    display: -webkit-box;
    overflow: hidden;

    color: var(--muted);

    font-size: 0.82rem;
    line-height: 1.4;

    /*
     * Keep every playlist item approximately the same height.
     */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*
|--------------------------------------------------------------------------
| Up / down controls
|--------------------------------------------------------------------------
*/

.playlist-scroll-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 34px;

    border: 0;

    color: var(--navy);
    background: transparent;

    font-size: 1.45rem;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.playlist-scroll-button:hover:not(:disabled) {
    color: var(--gold);
    background: rgba(217, 183, 111, 0.08);
}

.playlist-scroll-button:disabled {
    opacity: 0.22;
    cursor: default;
}

.playlist-scroll-up {
    margin-bottom: 7px;
    border-radius: 16px 16px 8px 8px;
}

.playlist-scroll-down {
    margin-top: 7px;
    border-radius: 8px 8px 16px 16px;
}

.player-column {
  min-width: 0;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-player {
  margin: 0 0 28px;
  box-shadow: var(--shadow);
}

.now-playing-card {
  padding: 34px;
}

.now-playing-top {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.now-playing-art {
  width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(217, 183, 111, 0.5), transparent 35%),
    linear-gradient(145deg, #162044, #496fa8);
}

.song-details-grid {
  display: grid;
  grid-template-columns: 1.2fr;
  gap: 24px;
}

.song-detail-box {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(217, 183, 111, 0.25);
}

.song-detail-box h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.song-detail-box pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  line-height: 1.8;
}

.site-footer {
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(217, 183, 111, 0.25);
}

@media (max-width: 950px) {
  .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;
  }

  .music-player-grid {
    grid-template-columns: 1fr;
  }

  .playlist-box {
    width: 100%;
  }
  
  .playlist-window {
	height: 300px;
  }

  .song-details-grid,
  .now-playing-top {
    grid-template-columns: 1fr;
  }

  .now-playing-art {
    width: 100%;
    max-width: 260px;
  }
}
