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

@font-face {
  font-family: 'Attila';
  src: url('lib/attila-font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Apply to whole site */
body {
  font-family: 'Attila', sans-serif;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* ---- HERO SECTION ---- */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

.title {
  margin-top: 2rem;
  font-size: 6.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ---- CENTER CONTENT ---- */

.center-content {
  margin-top: 2rem;
}

.artist {
  max-width: 320px;
  width: 70%;
}

.follow {
  margin-top: -1.5rem;
  font-size: 4.5rem;
  text-shadow: 8px 8px 0 #000, -8px -8px 0 #000, 8px -8px 0 #000, -8px 8px 0 #000;
}

.social-row {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-row img {
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-row img:hover {
  transform: scale(1.1);
}

/* ---- BOTTOM LINKS ---- */

.bottom-left,
.bottom-right {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 2.8rem;
}

.bottom-left {
  left: 2rem;
}

.bottom-right {
  right: 2rem;
}

a.text {
  text-decoration: none;
  color: white;
  transition: opacity 0.2s;
}

a.text:hover,
a:hover {
  opacity: 0.7;
}

a.afflink {
  font-size: 2.5rem;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .title {
    font-size: 3.6rem;
    margin-top: 0;
  }

  .follow {
    font-size: 2.5rem;
  }

  .social-row img {
    width: 38px;
    height: 38px;
  }

  .bottom-left,
  .bottom-right {
    position: static;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.4rem;
  }

  .hero-bg {
    width: 150%;
    height: 150%;
    top: -35%;
    left: -25%;
  }

  a.afflink {
  font-size: 1.8rem;
}
}
