@font-face {
  font-family: "Peristyle";
  src: url("fonts/Peristyle-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #07100b;
  color: #f3ead7;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  background-image: url("images/background-desktop.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.02) 42%, rgba(0,0,0,.25) 100%),
    linear-gradient(90deg, rgba(0,0,0,.16), transparent 50%, rgba(0,0,0,.12));
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  margin: auto auto 7vh;
  text-align: center;
}

.site-title {
  position: absolute;
  z-index: 1;
  top: 5.2vh;
  left: 50%;
  transform: translateX(-50%);
  width: 92vw;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-family: "Peristyle", Georgia, serif;
  font-weight: 400;
  font-size: clamp(62px, 7vw, 116px);
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,.18);
}

.socials {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5vw, 72px);
}

.socials a {
  color: #f3ead7;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: opacity .2s, transform .2s;
}

.socials a:hover {
  opacity: .72;
  transform: translateY(-3px);
}

.icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(243,234,215,.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 27px;
  line-height: 1;
}

.spotify-icon {
  font-size: 22px;
  position: relative;
}
.spotify-icon::before,
.spotify-icon::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 7px;
  border-top: 2px solid #f3ead7;
  border-radius: 50%;
  left: 17px;
}
.spotify-icon::before { top: 20px; transform: rotate(5deg); }
.spotify-icon::after { top: 27px; transform: rotate(5deg); }

.apple-icon { font-size: 30px; }
.play-icon { font-size: 17px; padding-left: 3px; }
.instagram-icon { font-size: 39px; }

.divider {
  height: 1px;
  background: rgba(243,234,215,.55);
  width: 100%;
  margin: 38px auto 30px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.action {
  min-width: 185px;
  min-height: 82px;
  border: 1px solid rgba(243,234,215,.9);
  border-radius: 13px;
  color: #f3ead7;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .2s;
}

.action:hover {
  background: #f3ead7;
  color: #111;
  transform: translateY(-2px);
}

.action-icon {
  font-size: 30px;
  line-height: 1;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 30px 26px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

footer a {
  color: rgba(243,234,215,.78);
  text-decoration: none;
}

footer a:hover {
  color: #f3ead7;
}

.footer-separator {
  opacity: .55;
}

@media (max-width: 700px) {
  .hero {
    background-image: url("images/background-mobile.jpg");
    background-position: center center;
    min-height: 100svh;
  }

  .overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.03) 45%, rgba(0,0,0,.38) 100%);
  }

  .site-title {
    top: 4.2vh;
    width: 96vw;
    max-width: none;
    white-space: nowrap;
    font-size: clamp(28px, 7.7vw, 36px);
    line-height: .9;
    letter-spacing: .005em;
  }

  .content {
    width: calc(100vw - 40px);
    margin-bottom: 6vh;
  }

  h1 {
    font-size: clamp(39px, 11vw, 54px);
    line-height: .9;
    margin-bottom: 38px;
    letter-spacing: .01em;
  }

  .desktop-break {
    display: none;
  }

  .socials {
    gap: 16px;
    justify-content: space-between;
  }

  .socials a {
    font-size: 8px;
    letter-spacing: .09em;
    gap: 9px;
  }

  .icon {
    width: 45px;
    height: 45px;
  }

  .spotify-icon::before,
  .spotify-icon::after {
    left: 11px;
    width: 19px;
  }

  .spotify-icon::before { top: 14px; }
  .spotify-icon::after { top: 20px; }

  .instagram-icon { font-size: 29px; }
  .apple-icon { font-size: 23px; }
  .play-icon { font-size: 13px; }

  .divider {
    margin: 28px auto 22px;
  }

  .actions {
    gap: 8px;
    flex-wrap: wrap;
  }

  .action {
    min-width: 0;
    width: calc(50% - 4px);
    min-height: 68px;
    padding: 9px 8px;
    gap: 9px;
    border-radius: 10px;
    font-size: 9px;
    letter-spacing: .11em;
  }

  .action-icon {
    font-size: 24px;
  }

  .action:last-child {
    width: 100%;
  }

  footer {
    padding: 12px 15px 18px;
    gap: 13px;
    font-size: 7px;
    letter-spacing: .09em;
  }
}


.music-note {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

/* Fine-tuning for shorter mobile screens (e.g. iPhone):
   keep the social icons lower so they sit below the portrait's face,
   while leaving the larger Pixel/mobile layout unchanged. */
@media (max-width: 700px) and (max-height: 880px) {
  .content {
    transform: translateY(58px);
  }
}
