/* Waves Worship — core styles */

html, body {
  height: 100vh;
  margin: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;

  /* Background image */
  background-image: url("/images/web-bg-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Fallback color while image loads */
  background-color: #000000;

  color: #1a1a1a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


/* Pill container */
.logo-pill {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 20;
}

/* Toggle button */
.pill-toggle {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);

  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.pill-logo {
  height: 36px;
  width: auto;
  display: block;
}

.chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.chevron svg {
  display: block;
}

/* Dropdown menu (closed by default) */
.pill-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  display: none;
  flex-direction: column;

  min-width: 170px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);

  border-radius: 8px;
  padding: 8px 0;
}

/* Open state */
.logo-pill.open .pill-menu {
  display: flex;
}

.logo-pill.open .chevron {
  transform: rotate(180deg);
  transition: transform 160ms ease;
}
.logo-pill .chevron {
  transition: transform 160ms ease;
}

/* Menu items */
.pill-menu a {
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.85;
}

.pill-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}



.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(720px, 92vw);
}

/* Logo spacing */
.logo {
  max-width: 70%;
  height: auto;
  margin-bottom: 56px;
}


/* Player container */
.player-box {
  width: min(560px, 92vw);
  padding: 18px 18px 18px;
  box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);  
}

/* Header-style note */
.release-note {
  font-size: 16px;
  opacity: 1;
  margin-bottom: 10px;
  color:#000000;
  font-weight: 600;
}

/* Track title */
.track-title {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 12px;
}

/* Native audio */
.player {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
}

/* Mobile + small screens */
@media (max-width: 640px) {
  /* Give the fixed pill breathing room */
  .logo-pill {
    top: 14px;
    left: 14px;
  }

  .pill-toggle {
    padding: 7px 12px;
    gap: 8px;
  }

  .pill-logo {
    height: 22px;
  }

  /* Keep your centered layout from feeling cramped */
  .logo {
    max-width: 82%;
    margin-bottom: 28px;
  }

  /* Player box: full-width, comfortable padding */
  .player-box {
    width: calc(100vw - 28px);
    padding: 14px 14px 16px;
  }

  /* Title hierarchy stays readable on small screens */
  .release-note {
    font-size: 14px;
    line-height: .75;
    margin-bottom: 8px;
  }

  .track-title {
    font-size: 12px;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  /* Ensure audio control never overflows */
  .player {
    width: 100%;
    max-width: 100%;
  }
}
