/* =========================================================
   RESET
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: "arno-pro", serif;
  text-transform: uppercase;
  color: #fff;
}

/* =========================================================
   CONTAINER
   ========================================================= */
.container {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}

.socials {
  display: flex;
  gap: 22px;
  font-size: 1.4rem;
}

.socials a {
  color: #8d91a7;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  opacity: 0.7;
  color: #ffffff;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  background-image: url("img/BG.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 6vw;
}

.hero-left {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 80px; /* prevents nav collision */
}

.hero-left h1 {
  font-size: 4rem;
  letter-spacing: 10px;
  margin-bottom: 18px;
}

.single {
  font-size: 2.1rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

.single span {
  opacity: 0.85;
}

/* =========================================================
   ALBUM BLOCK
   ========================================================= */
.album-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.album-block img {
  width: 100%;
  max-width: 440px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.stream-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

.primary {
  background: #fff;
  color: #111;
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* =========================================================
   SMALL DEVICES (PHONES)
   ========================================================= */
@media (max-width: 767px) {
  .hero {
    background-position: center top;
  }

  .hero-inner {
    padding-left: 0;
    justify-content: center;
  }

  .hero-left {
    align-items: center;
    text-align: center;
    padding-top: 100px;
  }

  .hero-left h1 {
    font-size: 2.2rem;
    letter-spacing: 6px;
  }

  .single {
    font-size: 1.6rem;
  }

  .album-block {
    align-items: center;
  }

  .stream-buttons {
    justify-content: center;
  }
}

/* =========================================================
   MEDIUM DEVICES (TABLETS / SMALL LAPTOPS)
   ========================================================= */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-inner {
    padding-left: 4vw;
  }

  .hero-left h1 {
    font-size: 3.4rem;
  }
}

/* =========================================================
   LARGE DEVICES (15–16" MACBOOKS)
   ========================================================= */
@media (min-width: 1200px) {
  .hero-inner {
    padding-left: 6vw;
  }

  .hero-left h1 {
    font-size: 4rem;
  }
}

/* =========================================================
   EXTRA LARGE DEVICES (27–32" MONITORS)
   ========================================================= */
@media (min-width: 1800px) {
  .hero-inner {
    padding-left: 8vw;
  }

  .hero-left {
    max-width: 720px;
  }

  .hero-left h1 {
    font-size: 5rem;
  }
}

