

/* =========================================================
   HOME GLOBAL
========================================================= */
.home-header {
  text-align: center;
  margin: 0 auto 40px auto;
}

.home-button-holder{
  display: flex;
  justify-content: center;
}

/* DESKTOP LAYOUT */
@media (min-width: 900px) {
  .home-header {
  text-align: left;
}

.home-button-holder{
  display: flex;
  justify-content: flex-start;
}
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: 45px;
  padding-bottom: 45px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-name {
  position: relative;
  display: inline-block;
}

/* layout anchor */
.hero-name::before {
  content: "Seth\A Abstract";
  white-space: pre;
  visibility: hidden;

  display: block;

  font-family: "ltr-beowolf-r21", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.85;
}

/* stacked layers */
.hero-font-layer {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  line-height: 0.85;
  letter-spacing: -0.02em;

  opacity: 0;

  transform-origin: center;
}

.hero-font-layer.is-active {
  opacity: 1;
}

/* text sizing */
.hero-line {
  font-size: clamp(4rem, 10vw, 8rem);
  white-space: nowrap;
}

.hero-tagline {
  font-family: var(--font-header);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.4;
  color: var(--color-text);
  opacity: 0.85;
  max-width: 700px;
  margin: 0;
  padding-top: 5px;
}

/* Mobile safety */
@media (max-width: 600px) {
  .hero-line {
    font-size: clamp(3.2rem, 12vw, 5rem);
  }
}

/* Hero Visual Grid */
.hero-visual-grid {
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(5, 1fr);

  width: 100%;
  max-width: 65%;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  /* .hero-visual-grid {
    grid-template-columns: repeat(3, 1fr);
  } */

  /* hide extras */
  /* .hero-img:nth-child(n+4) {
    display: none;
  } */
   .hero-visual-grid {
  max-width: 85%;
}
}



/* =========================================================
   FEATURED MUSIC
========================================================= */

.music{
  background:
    radial-gradient(circle at top left, rgba(255, 94, 91, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(76, 201, 240, 0.10), transparent 35%),
    linear-gradient(135deg, rgba(122, 74, 90, 0.35), rgba(58, 31, 53, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 20px 20px 30px 20px;
}

.music-subtext {
  opacity: 0.8;
}

/* MAIN LAYOUT */
.music-feature {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

/* IMAGE */
.music-image {
  width: 100%;
  max-width: 55%;
}

.music-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* TEXT */
.music-info {
  text-align: center;
  max-width: 500px;
}

.music-poem {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 6px;
}

.music-desc {
  opacity: 0.85;
  margin: 10px 0 25px;
}

/* DESKTOP LAYOUT */
@media (min-width: 900px) {
  .music-feature {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    padding-left: 50px;
  }

  .music-info {
    text-align: left;
    align-items: center;
  }

  .home-header {
  text-align: left;
}

.music-image {
  width: 100%;
  max-width: 30%;
}
}

/* =========================================================
   MEDIA ARCHIVE SECTION
========================================================= */

.media-header{
  margin-bottom: 20px;
}

.media-text{
  margin: 10px 0 0 0;
}

/* =========================================================
   BIO SECTION
========================================================= */

.section.bio{
  margin-top: -20px;
}

.home-header.bio{
  margin-bottom: 20px;
}

/* CARD LAYOUT */
.bio-card {
  display: flex;
  flex-direction: column;
  gap: 24px;

  max-width: 800px;
  margin: 0 auto;
}

/* IMAGE */
.bio-image {
  width: 100%;
  max-width: 220px;
  margin: 20px auto 0;
}

.bio-image img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 20px;
}

/* TEXT */
.bio-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.bio-content p {
  margin-bottom: 16px;
  opacity: 0.85;
}

.bio-card {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.08);
}

@media (min-width: 900px) {
  .bio-card {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .bio-image {
    margin: 0;
    flex-shrink: 0;
  }

  .bio-content {
    text-align: left;
    margin: 0;
  }
}


