/* ============================================================
   GENERAL
============================================================ */
body {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  background: #F9F6F0 !important;
  color: #4A3F35;
}

main {
  margin: 0;
  padding: 0;
}

body.player-visible main {
  padding-bottom: 80px;
}

/* ============================================================
   HEADER
============================================================ */
header {
  background: linear-gradient(to right, #E8DCC4, #AFC7D9) !important;
  border-bottom: 1px solid rgba(74,63,53,0.25);
  margin: 0;
}

/* ============================================================
   HERO (FIXED — NO GAP)
============================================================ */
.hero {
  height: calc(100vh - 80px);
  position: relative;
  margin: 0;
  padding: 0;
}

/* restore original placement */
.hero-overlay {
  position: absolute;
  top: 90px; /* 🔥 this is the key */
  left: 50%;
  transform: translateX(-50%);

  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);

  padding: 18px 24px;
  border-radius: 8px;

  width: fit-content;
  max-width: 480px;
  text-align: center;

  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);

  padding: 18px 24px;
  border-radius: 8px;

  width: fit-content;
  max-width: 480px;
  text-align: center;

  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* text */
.hero h1 {
  font-size: 2.2rem;
  margin: 0;
}

.hero p {
  font-size: 1rem;
  opacity: 0.85;
  margin: 10px 0 0;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none !important;
  border: none !important;
  transition: all 0.2s ease;
}

.btn-primary {
  background: rgba(255,255,255,0.65) !important;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* ============================================================
   SECTIONS
============================================================ */
section {
  padding: 60px 20px;
  text-align: center;
}

.latest-release,
.about,
.shop {
  background: transparent !important;
}

/* ============================================================
   ALBUM GRID
============================================================ */
.release-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.album {
  width: 280px;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.album:hover {
  transform: translateY(-6px);
}

.album img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* strip */
.album-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #E8DCC4, #AFC7D9);
  padding: 6px 10px;
  border-radius: 0 0 10px 10px;
}

.album-title {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}

.album-meta {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-left: 10px;
}

.album-strip .btn-secondary {
  margin-left: auto;
  padding: 3px 10px;
  font-size: 0.75rem;
}

/* ============================================================
   SHOP
============================================================ */
.shop-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.shop-grid img {
  width: 200px;
  border-radius: 8px;
}

/* ============================================================
   BACKGROUND
============================================================ */
.home-bg {
  background: url("/assets/img/hero.jpg") center/cover no-repeat;
}

/* ============================================================
   MINI PLAYER (FINAL CLEAN)
============================================================ */
#mini-player {
  position: fixed;
  left: 0;
  bottom: -80px;
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 20px 16px;
  box-sizing: border-box;

  z-index: 9999;

  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(10px);

  color: #fff;

  transition: bottom 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

#mini-player.visible {
  bottom: 0;
  opacity: 1;
}

/* layout */
.player-left,
.player-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}

/* cover */
#mini-cover {
  width: 55px;
  height: 55px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* info */
#mini-info {
  display: flex;
  flex-direction: column;
}

#mini-title {
  font-size: 0.95rem;
  font-weight: 600;
}

#mini-meta {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* controls */
.player-btn {
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;

  width: 38px;
  height: 38px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.2s ease;
}

.player-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.player-btn.play {
  width: 48px;
  height: 48px;
  background: white;
  color: black;
}

/* progress */
.player-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

#mini-progress {
  width: 100%;
  height: 4px;
  appearance: none;
  background: rgba(255,255,255,0.25);
}

#mini-progress::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  margin-top: -3px;
}

/* volume */
#mini-volume {
  width: 80px;
  height: 4px;
  appearance: none;
  background: rgba(255,255,255,0.3);
}

#mini-volume::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}
section:last-of-type {
  padding-bottom: 0;
}