/* =========================
   BASIS
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body {
  overflow-x:hidden;
}

body{
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color:#fff;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   HERO / BACKGROUND
========================= */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  background:url('../img/cover.jpg') center/cover no-repeat fixed;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

/* =========================
   BG TEXT
========================= */
.bg-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
  max-width:100vw;

  font-weight:800;
  font-size:clamp(80px,12vw,220px);
  color:rgba(255,255,255,0.05);

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

  text-transform:uppercase;
  letter-spacing:4px;

  pointer-events:none;
  filter:blur(3px);
}

/* =========================
   CONTENT
========================= */
.content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.artist-name{
  font-size:clamp(24px,4vw,52px);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:3px;
  font-style:italic;
  text-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* =========================
   COVER
========================= */
.cover-wrap{
  position:relative;
  display:inline-block;
  margin:10px 0 20px;
}

.cover{
  width:220px;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
  transition:0.3s ease;
}

.cover:hover{
  transform:scale(1.05);
  box-shadow:0 30px 80px rgba(0,0,0,0.6);
}

.badge{
  position:absolute;
  top:-12px;
  right:-12px;
  background:linear-gradient(180deg,#ff7b2b,#ff2b2b);
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:bold;
  box-shadow:0 6px 20px rgba(0,0,0,0.4);
}

/* =========================
   TITELS
========================= */
.title{
  font-size:clamp(28px,4vw,50px);
  font-weight:800;
  margin-top:10px;
  text-shadow:0 8px 30px rgba(0,0,0,0.5);
}

.subtitle{
  color:#ccc;
  margin-bottom:20px;
}

/* =========================
   BUTTONS
========================= */
.cta-row{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:30px;
}

.pill{
  padding:14px 28px;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  color:#fff;
  transition:0.2s ease;
}
.pill-green{
  background:linear-gradient(180deg,#2fb85a,#3ecb6e);
}
.pill-blue{
  background:linear-gradient(180deg,#6bb8ff,#2f8cff);
  color:#fff;
  text-shadow:0 1px 3px rgba(0,0,0,0.3);
}
.pill-red{
  background:linear-gradient(180deg,#ff2b2b,#e01b1b);
}

.pill:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

/* =========================
   SPOTIFY
========================= */
.spotify-player{
  margin-top:30px;
  display:flex;
  justify-content:center;
}

.spotify-player iframe{
  width:100%;
  max-width:650px;
  height:152px;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-player iframe:hover{
  transform:translateY(-5px);
  box-shadow:0 30px 70px rgba(0,0,0,0.5);
}

/* =========================
   SOCIALS
========================= */
.social-row{
  display:flex;
  gap:18px;
  justify-content:center;
  margin-top:20px;
}

.social-btn{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-size:20px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 26px rgba(0,0,0,0.25);
  transition:0.2s ease;
}

.social-btn.instagram{
  background:linear-gradient(45deg,#feda75,#d62976);
}

.social-btn.facebook{
  background:linear-gradient(180deg,#3b82f6,#1b6fe8);
}

.social-btn.tiktok{
  background:#000;
}

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

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){

  .cover{
    width:170px;
  }

  .cta-row{
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    gap: 12px;
    margin-bottom: 20px;
  }

  .pill{
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  .bg-text{
    font-size:120px;
    filter:blur(4px);
  }

  .spotify-player{
    margin-top:20px;
  }

  .spotify-player iframe{
    width:90%;
    max-width:none;
    box-shadow:0 15px 35px rgba(0,0,0,0.4);
  }
}
