@charset "utf-8";

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BACKGROUND (scrolls with page) */
html, body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

body {
  background-color: #000;
  background-image: url("assets/melani-wallpaper-bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

/* CONTENT CAP */
.site-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Images never exceed container width */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* TOP BANNER */
.top-banner {
  position: relative;
  width: 100%;
}

.top-banner img {
  width: 100%;
}

/* DATE + BOOKINGS (24pt) */
.release-date,
.bookings-link {
  position: absolute;
  top: 14px;
  font-family: 'Allura', cursive;
  font-size: 24px; /* 24pt-ish for web */
  color: #fff;
  text-shadow:
    0 0 8px rgba(255,255,255,0.75),
    0 0 14px rgba(255,200,160,0.8);
}

.release-date {
  left: 20px;
}

.bookings-link {
  right: 20px;
  text-decoration: none;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.bookings-link:hover {
  transform: scale(1.06);
  filter: brightness(1.2);
}

/* SECTION SPACING */
.panel {
  display: flex;
  justify-content: center;
  margin: 22px 0;
}

/* EMBED CARDS */
.embed-card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* clean edges */
}

/* Spotify recommended height (352px). Width fits your 720px layout nicely. */
.music-embed {
  width: 560px;
  height: 352px;
}

/* YouTube recommended 16:9 player feel (640x360 is classic and crisp). */
.video-embed {
  width: 640px;
  height: 360px;
}

/* Iframes fill their embed-card */
.spotify-frame,
.youtube-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
}

/* SOCIAL ICONS (larger, to match panel presence) */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin: 22px 0;
}

.icon img {
  width: 72px; /* larger to match your panel dominance */
  height: 72px;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.65));
}

.icon:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.95));
}

.icon:active img {
  transform: scale(0.96);
}

/* FOOTER */
.footer {
  text-align: center;
  margin: 30px 0 20px;
}

.footer img {
  width: 240px;
  margin: 0 auto 10px;
}

.footer p {
  font-size: 12px;
  opacity: 0.85;
}

/* RESPONSIVE: keep embeds and icons beautiful on mobile */
@media (max-width: 720px) {
  .music-embed {
    width: 92%;
    height: 352px; /* Spotify stays consistent */
  }

  .video-embed {
    width: 92%;
    height: auto;
    aspect-ratio: 16 / 9; /* keeps perfect YouTube ratio */
  }

  .youtube-frame {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

@media (max-width: 420px) {
  .release-date,
  .bookings-link {
    font-size: 20px; /* keep readable without crowding */
    top: 10px;
  }

  .release-date { left: 14px; }
  .bookings-link { right: 14px; }

  .icon img {
    width: 64px;
    height: 64px;
  }
}
