body {
  background-color: #000000fa;
  font-family:  'Times New Roman', Times, serif
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 2rem 1rem;
  border-top: solid #162676;
  text-align: center;

  position: relative;
  z-index: 1; /* stays below navbar */
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;

  border-bottom: solid #ffffff28;
}

/* ============================= */
/* HERO TEXT */
/* ============================= */
.hero-heading {
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 6vw, 5rem);
}

.hero-text {
  color: #334ed1;
  font-size: 22px;
  margin-bottom: 30px;
}

.hero-subtext {
  color: #fff;
  font-size: 18px;
  margin: 1rem auto 30px;
  max-width: 900px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (min-width: 768px) {
  .brand-text { font-size: 22px; }
  .navbar-logo { width: 56px; }
}

@media (min-width: 992px) {
  .brand-text {
    font-size: 26px;
    letter-spacing: 1.5px;
  }

  .navbar-logo { width: 70px; }

  .navbar-links a {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .brand-text { font-size: 18px; }
  .navbar-logo { width: 42px; }
}





/* ============================= */
/* MEMBERSHIP SECTION (LISTENERS) */
/* ============================= */
.membership {
  padding: 2rem 0rem 5rem 0rem;
  text-align: center;
  justify-items: center;
}

.membership-container {
  border-style: solid;
  border-radius: 20px;
  border-color: #162676;
  padding: 60px 0px 40px 0px;
  max-width: 900px;
}

/* Main text */
.membership-text {
  font-size: 1.2rem;

  letter-spacing: 1px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1;
  padding: 0px 60px 0px 60px;
}

/* Button */
.membership-button {
  display: inline-block;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 8px;
  border-style: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #000;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.subscribe-btn:enabled:hover,
.purchase-btn:hover,
.membership-button:hover {
  background-color: #162676;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Plan options container */
.membership-options {
  margin-top: 3rem;
}

/* Individual plan option */
.membership-option {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

/* ============================= */
/* MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {
  .membership-text {
    font-size: 1.1rem;
  }

  .membership-button {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}

/* ============================= */
/* DESKTOP ENHANCEMENT */
/* ============================= */
@media (min-width: 992px) {
  .membership-text {
    font-size: 1.35rem;
  }
}




/* ============================= */
/* MEMBERSHIP SECTION (ARTISTS) */
/* ============================= */
.plans { 
  padding: 0rem 0rem 5rem 0rem;
}

/* HEADING */
.plans-heading {
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 1rem;

  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.plans-heading::after,
.plans-heading::before {
  content: "";
  flex: 1;
  height: 1px;
}

.plans-heading::before {
  background: linear-gradient(to right, transparent, rgb(255, 255, 255));
}

.plans-heading::after {
  background: linear-gradient(to left, transparent, rgb(255, 255, 255));
}

.plans-heading span {
  padding: 0 20px;
}


.plans-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-self: center;
  text-align: center;
  max-width: 1200px;
  padding: 0px 0px 50px 0px;
}

.plans-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;

  border-style: solid;
  border-color: #162676;
  border-radius: 10px;
  padding: 60px;
}

.plans-subheading {
  color: #ffffff;
  font-weight: 600;
  font-size: 34px;
}

.plans-text {
  color: #ffffff;
  font-size: 20px;
}

.contract-text {
  color: #ffffff;
}

.subscribe-btn {
  border-style: none;
  padding: 0.6rem;
  border-radius: 8px;
}

.subscribe-btn:enabled {
  font-size: 18px;
  font-weight: 600;
}

.additional-section {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  justify-self: center;
  text-align: center;

  border-style: solid;
  border-color: #162676;
  border-radius: 10px;
  padding: 60px;
}

.purchase-btn {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #000000;

  background-color: #ffffff;
  padding: 0.6rem;
  border-radius: 8px;
}