/* =========================
   Base site styles
   ========================= */

/* Base wrapper width */
.wrapper { max-width: 1100px; }

/* Avoid affecting hero headings */
.page-content .wrapper h1:first-of-type {
  text-align: center;
  font-size: 64px;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 40px;
  color: #333;
}

.year-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 14px 0;
  font-size: 28px;
  margin: 30px 0 20px;
}

/* Small global fixes */
body { overflow-x: hidden; }

.site-header {
  position: relative;
  z-index: 50;
}

/* =========================
   FULL-PAGE HERO + CIRCULAR PORTRAIT
   ========================= */

/* Full-bleed hero (ignores Minima wrapper constraints) */
.home-hero--fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
}

/* Full-page hero */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  padding: 6rem 1.25rem 4rem;
}

/* Hero overlay (lighter, airy) */
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.10);
}

/* Content layer */
.home-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin-top: 14vh; /* adjust 10–18vh */
}

/* BIG circular portrait */
.home-hero__avatar {
  width: clamp(360px, 32vw, 520px);
  height: clamp(360px, 32vw, 520px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto 2rem;

  border: 4px solid rgba(255,255,255,0.95);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

/* =========================
   Full-width blurred bands (gallery feel)
   ========================= */

/* Name + tagline band (full width, blurred) */
.home-hero__nameband {
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 1.15rem 1.5rem 1.35rem;

  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  text-align: center;
}

/* Ensure text stays above blur */
.home-hero__nameband .home-hero__title,
.home-hero__nameband .home-hero__tagline {
  position: relative;
  z-index: 1;
}

/* Title + tagline */
.home-hero__title {
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: #fff;

  /* soft but readable */
  text-shadow: 0 5px 18px rgba(0,0,0,0.55);
}

.home-hero__tagline {
  margin: 0 0 2rem; /* clear space below tagline */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.90);

  /* soft but readable */
  text-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

/* Bio band (full width, blurred like nameband) */
.home-hero__bioband {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 1.25rem 1.5rem 1.5rem;

  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  justify-content: center;
}

/* Bio text container (keeps line length readable) */
.home-hero__bio {
  max-width: 820px;
  width: 100%;

  /* keep spacing, remove the inner box look */
  padding: 0.85rem 1.05rem;
  border-radius: 0;
  background: transparent;
}

/* Bio text */
.home-hero__bio,
.home-hero__bio p {
  color: rgba(255,255,255,0.98);
  text-align: left;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.9;

  /* stronger for readability on foliage */
  text-shadow: 0 6px 24px rgba(0,0,0,0.85);
}

.home-hero__bio p {
  margin: 0.9rem 0;
}

/* =========================
   Mobile adjustments
   ========================= */

@media (max-width: 600px) {
  .home-hero { padding-top: 6.5rem; }
  .home-hero__content { margin-top: 10vh; }

  .home-hero__avatar {
    width: clamp(220px, 55vw, 320px);
    height: clamp(220px, 55vw, 320px);
  }

  .home-hero__nameband {
    padding: 0.95rem 1rem 1.1rem;
  }

  .home-hero__bioband {
    padding: 1rem 1rem 1.1rem;
  }

  .home-hero__bio {
    padding: 0.65rem 0.85rem;
  }
}
