html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

/* --- Base Page Layout --- */
.page {
  position: relative;
  display: table;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: normal;
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 1.1em;
  color: #fff;
  background: #f0f0f0 no-repeat fixed 50% 50% / cover;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.3;
  font-weight: normal;
}

.bg-position-top {
  background-position: 50% 0;
}

.bg-position-middle {
  background-position: 50% 50%;
}

.bg-position-bottom {
  background-position: 50% 100%;
}

.page:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

img {
  max-width: 100%;
  height: auto;
}

a,
a:link {
  color: inherit;
  opacity: 0.85;
}

a:hover,
a:focus,
a:active {
  opacity: 1;
  transition: all .3s ease-in-out;
}

ul,
ol {
  display: inline-block;
  text-align: left;
  max-width: 50%;
}


.container {
  position: relative;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  padding: 1em 2em;
  z-index: 1;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
}

.social-links {
  padding: 1em 0;
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.8;
}

.hosting-info {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
  font-size: 0.5em;
}

.overlay-dark,
.overlay-dark:before {
  background-color: #333;
}

/* --- Mobile Base Adjustments --- */
@media screen and (max-width: 640px) {
  h1 {
    font-size: 2em;
  }

  ul,
  ol {
    max-width: none;
  }

  .page {
    min-width: 300px;
  }

  .page .container {
    padding: 3em;
  }
  
}

/* --- Mobile Improvements (≤680px) --- */
@media screen and (max-width: 680px) {
  .site-logo img {
    max-width: 180px !important;
  }

  h1 {
    font-size: 1.5em !important;
    letter-spacing: 1px !important;
  }

  .project-description p {
    font-size: 0.95em !important;
    line-height: 1.5 !important;
  }

  .container {
    padding: 1.5em 1em !important;
  }

  .content {
    padding: 0 0.5rem;
  }
  
}

/* Long email fix */
@media screen and (max-width: 640px) {
  .contact-email {
    font-size: 0.75em !important;
    word-break: break-all;
  }
  
}

.contact-banner {
  padding: 1.2rem 1.8rem;
  margin: 2.5rem auto;
  max-width: 750px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  color: #e0f7ff;
  text-shadow: 0 0 6px rgba(0, 220, 255, 0.25);
}

/* --- Pastel Background Overlay --- */
.pastel-waves {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 150, 200, 0.45),
      rgba(120, 180, 255, 0.45),
      rgba(140, 255, 200, 0.45));
  background-size: 200% 200%;
  animation: pastelShift 12s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes pastelShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* --- Artist Cards --- */
.artist-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem auto;
  flex-wrap: wrap;
  z-index: 2;
}

.artist-card {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 120px;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  color: #e0f7ff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  text-align: center;
  text-shadow: 0 0 6px rgba(0, 220, 255, 0.35);
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 1.5s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.artist-card:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.12);
  text-shadow:
    0 0 12px rgba(0, 220, 255, 0.9),
    0 0 22px rgba(0, 220, 255, 0.6);
  box-shadow:
    0 0 14px rgba(0, 220, 255, 0.45),
    0 0 28px rgba(0, 220, 255, 0.25);
}

.artist-name {
  font-family: 'Audiowide', sans-serif;
  font-size: 1.05em;
  letter-spacing: 1px;
  opacity: 0.95;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

@media screen and (max-width: 640px) {
  .artist-card {
    width: 160px;
    height: 90px;
  }

  .artist-name {
    white-space: normal !important;
    text-align: center;
  }
  
}

.artist-section-title {
  margin: 2rem 0 1rem;
  font-family: 'Monoton', cursive;
  font-size: 1.7em;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* --- Fade‑in Animation --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.fade-in-1 {
  animation-delay: 0.2s;
}

.fade-in-2 {
  animation-delay: 0.4s;
}

.fade-in-3 {
  animation-delay: 0.6s;
}

.fade-in-4 {
  animation-delay: 0.8s;
}

.fade-in-5 {
  animation-delay: 1.0s;
}

/* --- Logo Glow --- */
.site-logo {
  position: relative;
  z-index: 9999;
}

.site-logo img {
  transition:
    transform 1.35s ease,
    filter 0.35s ease,
    box-shadow 0.35s ease;
}

.site-logo img:hover {
  transform: scale(1.2);
  filter:
    drop-shadow(0 0 10px rgba(0, 220, 255, 0.55)) drop-shadow(0 0 20px rgba(0, 220, 255, 0.35));
}

/* --- Artist Page Layout --- */
.artist-page {
  position: relative;
  max-width: 1300px;
  margin: 1rem auto;
  padding: 2rem;
  z-index: 2;
}

.artist-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.artist-left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

/* --- Profile Picture --- */
.artist-photo-placeholder {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0f7ff;
  font-family: 'Audiowide', sans-serif;
  text-shadow: 0 0 6px rgba(0, 220, 255, 0.35);
  transition: all 0.3s ease;
  padding: 0;
  line-height: 0;
}

.artist-photo-placeholder:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 12px rgba(0, 220, 255, 0.5),
    0 0 24px rgba(0, 220, 255, 0.3);
}

.artist-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

/* --- Shared Box Style --- */
.artist-box {
  position: relative;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  padding: 1.5rem 1.8rem;
  border-radius: 10px;
  color: #e0f7ff;
  text-shadow: 0 0 6px rgba(0, 220, 255, 0.25);
  max-width: 750px;
}

.artist-box h2 {
  font-family: 'Monoton', cursive;
  font-size: 1.4em;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

/* --- Listen Box --- */
.artist-listen {
  position: relative;
  margin-left: -40px;
  margin-top: -40px;
  max-width: 250px;
  z-index: 1;
}

.artist-listen h2,
.artist-listen-back {
  font-family: 'Monoton', cursive;
  font-size: 1.3em;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.artist-listen-back {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
}

.listen-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.listen-links li {
  margin: 0.3rem 0;
  font-family: 'Audiowide', sans-serif;
  opacity: 0.9;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    text-shadow 0.3s ease,
    color 0.3s ease;
}

.listen-links li:hover {
  transform: scale(1.1);
  color: #fff;
  text-shadow:
    0 0 12px rgba(0, 220, 255, 0.9),
    0 0 22px rgba(0, 220, 255, 0.6);
}

/* --- Bio Box --- */
.artist-bio {
  position: relative;
  margin-left: -40px;
  margin-top: 60px;
  z-index: 1;
}

/* --- Mobile Artist Layout --- */
@media screen and (max-width: 700px) {
  .artist-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .artist-photo-placeholder {
    width: 180px;
    height: 180px;
  }

  .artist-bio {
    margin-left: 0;
    margin-top: 1rem;
  }

  .artist-left-column {
    align-items: center;
  }


}

/* Diagonal ribbon */
.coming-soon-ribbon {
  position: absolute;
  top: 400px;
  right: 100px;
/* translucent background */
  background: rgba(230, 57, 70, 0.65); /* adjust opacity as needed */
  
  color: white;
  padding: 8px 60px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;

  /* rounded edges */
  border-radius: 12px;

  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  pointer-events: none;
  z-index: 10;

}

/* Adjust for small screens */
@media (max-width: 700px) {
  .coming-soon-ribbon {
    top: 300px;
    right: 20px;   /* pull it closer so it stays aligned */
    padding: 6px 40px;
    font-size: 12px;
  }
}