@charset "utf-8";

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* BACKGROUND SCROLLS */
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: -60% 0%;
  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;
}

img { display: block; max-width: 100%; height: auto; }

/* TOP BANNER */
.top-banner { position: relative; width: 100%; }
.top-banner img { width: 100%; }

/* DATE + BOOKINGS (24pt-ish) */
.release-date,
.bookings-link {
  position: absolute;
  top: 14px;
  font-family: 'Allura', cursive;
  font-size: 24px;
  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); }

/* SPACING */
.panel { display: flex; justify-content: center; margin: 22px 0; }

/* EMBED CARDS: fixed sizes */
.embed-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.music-embed { width: 560px; height: 352px; }
.video-embed { width: 640px; height: 360px; }

/* Placeholder image fills card */
.embed-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

/* Iframe sits on top, but with blank src it often looks empty.
   Once you add real src URLs, it will show normally. */
.spotify-frame,
.youtube-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 2;
  background: transparent;
}

/* Helpful hint overlay (shows even if iframe is blank) */
.embed-hint {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  font-size: 12px;
  opacity: 0.85;
  text-align: center;
}

/* SOCIAL ICONS */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin: 22px 0;
}

.icon img {
  width: 72px;
  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));
}

/* 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 */
@media (max-width: 720px) {
  .music-embed { width: 92%; height: 352px; }
  .video-embed { width: 92%; height: auto; aspect-ratio: 16 / 9; }
  .youtube-frame { height: 100%; }
}

@media (max-width: 420px) {
  .release-date, .bookings-link { font-size: 20px; top: 10px; }
  .release-date { left: 14px; }
  .bookings-link { right: 14px; }
  .icon img { width: 64px; height: 64px; }
}

  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;
  }
}
