@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

body {
  font-family: Arial, sans-serif;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  margin: 0; padding: 0;
  min-height: 100vh; overflow-y: auto;
  position: relative;
}
body::before {
  content: "";
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  z-index: -1;
}

/* —— Mobile Menu Toggle & Icon —— */
.menu-toggle { display: none; }
.menu-icon {
  display: none;
  position: absolute; top: 20px; left: 20px;
  font-size: 28px; color: white; cursor: pointer;
  z-index: 99;
}

/* —— Mobile Drawer —— */
.mobile-nav {
  position: fixed; top: 0; left: 0;
  width: 80%; max-width: 260px; height: 100%;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(10px);
  padding: 80px 20px; box-sizing: border-box;
  transform: translateX(-100%); transition: transform 0.3s ease;
  z-index: 98;
}
.mobile-links a {
  display: block; margin: 16px 0;
  font-size: 16px; color: white;
  text-decoration: none; text-transform: lowercase;
}
.mobile-socials {
  position: absolute; bottom: 40px; left: 0; width: 100%;
  display: flex; justify-content: space-around;
}
.mobile-socials img {
  width: 24px; filter: brightness(100%);
  transition: transform 0.2s;
}
.mobile-socials img:hover {
  transform: scale(1.1); filter: brightness(150%);
}
#menu-toggle:checked ~ .mobile-nav {
  transform: translateX(0);
}

/* —— Desktop Top Bar —— */
.top-bar {
  position: absolute; top: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 2;
}
.top-left img {
  height: 24px; width: auto;
  cursor: pointer; filter: brightness(100%);
  transition: transform 0.2s, filter 0.2s;
}
.top-right img {
  width: 26px; height: 26px;
  margin-left: 20px;
  cursor: pointer; filter: brightness(100%);
  transition: transform 0.2s, filter 0.2s;
}
.top-left img:hover,
.top-right img:hover {
  transform: scale(1.05); filter: brightness(150%);
}

/* —— Logo —— */
.logo-header { text-align: center; margin-top: 60px; }
.logo { width: 250px; cursor: pointer; }

/* 🎥 Video Section */
#video {
  padding: 80px 20px 60px; text-align: center;
}
.video-wrapper {
  max-width: 800px; margin: 40px auto;
  position: relative; aspect-ratio: 16/9;
}
.video-wrapper iframe {
  width: 100%; height: 100%;
  border: none; border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

/* 🎵 Discography Section */
.discography-section {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 30px;
  padding: 60px 20px;
}
.profile-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 20px; width: 200px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.profile-card.large {
  transform: scale(1.1); z-index: 1;
}
.profile-card:hover {
  transform: scale(1.1); z-index: 2;
  box-shadow: 0 0 30px rgba(255,255,255,0.25);
}
.profile-card img {
  width: 100%; border-radius: 8px; margin-bottom: 12px;
}
.profile-card .links {
  display: flex; flex-direction: column; gap: 6px;
}
.profile-card .links a {
  color: white; text-decoration: none; font-size: 14px;
  text-transform: lowercase; transition: color 0.2s;
}
.profile-card .links a:hover {
  color: #a2f5d5;
}

/* 🌼 EP Section */
.ep-section {
  max-width: 500px;
  margin: 120px auto 120px;
  text-align: center;
}
.ep-info {
  font-family: 'Adobe Caslon Pro', 'Big Caslon', 'Caslon', 'Times New Roman', serif;
  font-size: 18px;
  color: #f2f2f2;
  margin-bottom: 36px;
  line-height: 1.4;
  font-style: normal;
}
.ep-date {
  display: inline-block;
  font-size: 1.15em;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  margin-top: 4px;
}
.ep-image {
  width: 100%;
  border-radius: 0;           /* SHARP edges, not rounded */
  box-shadow: none;           /* No glow at all */
  margin-bottom: 20px;
}
.presave-btn {
  display: inline-block; background: #1db954; color: white;
  padding: 12px 24px; border-radius: 8px;
  text-decoration: none; font-size: 14px;
  transition: background-color 0.3s;
}
.presave-btn:hover {
  background: #1ed760;
}

/* —— Album Selection Section —— */
.album-selection-section {
  margin-top: 70px;
  margin-bottom: 40px;
  text-align: center;
}
.album-selection-title {
  font-family: 'Adobe Caslon Pro', 'Big Caslon', 'Caslon', 'Times New Roman', serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.01em;
  font-style: normal;
  margin-bottom: 44px;
}
.album-selection-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 0;
}
.album-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.album-item img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  background: #232323;
  transition: transform 0.3s;
  box-shadow: none;    /* REMOVE any glow for all album images by default */
}
/* Only for 'me dying is the world ending' album image: sharp edges, no glow */
.album-item img.album-image-square {
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: none;
}
.album-item img:hover {
  transform: scale(1.035);
}
.album-caption {
  margin-top: 18px;
  color: #eee;
  font-size: 16px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.92;
}
@media (max-width: 800px) {
  .album-selection-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .album-item img,
  .album-item img.album-image-square {
    width: 60vw;
    max-width: 220px;
    height: auto;
  }
}

/* —— Social Footer —— */
.social-footer {
  text-align: center; padding: 20px 0;
}
.social-footer a {
  display: inline-block; margin: 0 12px;
}
.social-footer img {
  width: 26px; height: 26px;
  filter: brightness(100%);
  transition: transform 0.2s, filter 0.2s;
  cursor: pointer;
}
.social-footer img:hover {
  transform: scale(1.1); filter: brightness(150%);
}

/* ========= Mobile Adjustments ========= */
@media (max-width: 768px) {
  .menu-icon { display: block; }
  .top-bar   { display: none; }

  .logo-header { margin-top: 40px; }
  .logo        { width: 180px; }

  .ep-section { margin: 80px auto 20px; padding: 0 10px; }
  .ep-info    { font-size: 16px; }
  .ep-image   { width: 100%; }
  .presave-btn {
    width: 100%; font-size: 16px; padding: 12px 0;
  }
  .album-item img,
  .album-item img.album-image-square {
    width: 60vw; max-width: 180px; height: auto;
  }
  .album-selection-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .album-caption {
    font-size: 14px;
    margin-top: 12px;
  }
}
