/* ══════════════════════════════════════════════════════════
   JANE — Personal Portfolio
   Design: editorial, indie, type-first, sky blue palette
   No glassmorphism. No blobs. No SaaS vibes.
══════════════════════════════════════════════════════════ */

:root {
  /* Palette — lifted from the birthday site */
  --bg:         #09101C;
  --bg-mid:     #0F1A2C;
  --bg-surface: #132238;
  --blue:       #38BDF8;
  --blue-soft:  #BAE6FD;
  --blue-dim:   #7DD3FC;
  --blue-deep:  #0284C7;
  --white:      #F0F9FF;
  --muted:      rgba(186,230,253,0.45);
  --border:     rgba(56,189,248,0.15);

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --px: clamp(1.25rem, 5vw, 4rem);
  --section-gap: clamp(5rem, 12vw, 9rem);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }

/* ─── Utility ─── */
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-dim);
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════════════════════
   1. HERO — full-bleed photo with text overlay
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Photo fills entire hero */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient: dark at bottom so text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(9, 16, 28, 0.25) 0%,
    rgba(9, 16, 28, 0.15) 30%,
    rgba(9, 16, 28, 0.65) 70%,
    rgba(9, 16, 28, 0.95) 100%
  );
}

/* Content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: clamp(1.5rem, 4vw, 3rem) var(--px) 2.5rem;
}

.hero-top {
  display: flex;
  justify-content: flex-end;
}

.hero-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.6);
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Name — big, anchored to bottom */
.hero-name {
  font-family: var(--serif);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(0.7rem, 1.2vw, 0.82rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--blue-dim);
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}

.hero-micro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(186, 230, 253, 0.6);
  margin-bottom: 2rem;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}
.hero-socials a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.6);
  transition: color 0.2s ease;
}
.hero-socials a:hover { color: var(--blue); }



/* ══════════════════════════════════════════════════════════
   SAWERIA SUPPORT BAND
══════════════════════════════════════════════════════════ */
#support-band {
  display: block;
  background: var(--blue);
  color: var(--bg-darkest, #09101C);
  padding: 2rem var(--px);
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}
#support-band:hover {
  background: var(--blue-soft);
}

.support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.support-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.support-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.65;
}

.support-text {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.4;
}

.support-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.support-cta {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.support-arrow {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  transition: transform 0.2s ease;
}
#support-band:hover .support-arrow {
  transform: translate(4px, -4px);
}

@media (max-width: 600px) {
  .support-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .support-right {
    align-self: flex-end;
  }
}


/* ══════════════════════════════════════════════════════════
   2. ABOUT
══════════════════════════════════════════════════════════ */
#about {
  padding: var(--section-gap) var(--px);
}

.about-inner {
  max-width: 640px;
}

.bio-text {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
}

.bio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   3. CURRENTLY
══════════════════════════════════════════════════════════ */
#currently {
  padding: var(--section-gap) var(--px);
  border-top: 1px solid var(--border);
}

.currently-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

.currently-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-right: 1px solid var(--border);
  padding-right: 2rem;
}
.currently-item:last-child { border-right: none; }

.c-key {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-dim);
}
.c-val {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   4. CONTENT / STREAMING
══════════════════════════════════════════════════════════ */
#content {
  padding: var(--section-gap) var(--px);
}

.content-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.content-main-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.content-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  position: relative;
}

.content-caption {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  font-style: italic;
}

.tiktok-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.tiktok-link:hover { opacity: 0.65; }

/* ══════════════════════════════════════════════════════════
   5. SOCIALS — editorial list
══════════════════════════════════════════════════════════ */
#socials {
  padding: var(--section-gap) var(--px);
  border-top: 1px solid var(--border);
}

.socials-list {
  display: flex;
  flex-direction: column;
}

.social-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
  position: relative;
}
.social-row::after {
  content: '↗';
  position: absolute;
  right: 0;
  opacity: 0;
  color: var(--blue);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-6px);
}
.social-row:hover { color: var(--blue-soft); }
.social-row:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.social-num {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.social-platform {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1;
}
.social-handle {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--blue-dim);
  padding-right: 2rem;
}

/* ══════════════════════════════════════════════════════════
   6. RANDOM FACTS
══════════════════════════════════════════════════════════ */
#facts {
  padding: var(--section-gap) var(--px);
}

.facts-scatter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.fact {
  font-family: var(--sans);
  font-size: clamp(0.75rem, 1.5vw, 0.88rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s ease;
}
.fact:hover {
  border-color: var(--blue);
  color: var(--blue-soft);
}
.fact.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   7. GALLERY
══════════════════════════════════════════════════════════ */
#gallery {
  padding: var(--section-gap) var(--px);
  border-top: 1px solid var(--border);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 1rem;
  align-items: start;
}

.gallery-portrait {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.gallery-small-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem; /* Slight asymmetry */
}

.gallery-small {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.gallery-portrait img,
.gallery-small img {
  transition: transform 0.7s ease;
}
.gallery-portrait:hover img,
.gallery-small:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════
   8. FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  padding: 4rem var(--px) 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 2rem;
}
.footer-socials a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-socials a:hover { color: var(--blue); }

.footer-year {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(186,230,253,0.25);
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL — generic
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   MOBILE — 768px
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --px: 1.25rem; }

  /* Hero name slightly smaller on mobile */
  .hero-name {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .hero-socials {
    gap: 0.75rem 1.5rem;
  }

  /* Content: single column */
  .content-inner {
    grid-template-columns: 1fr;
  }

  /* Social rows: tighter grid */
  .social-row {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
  }
  .social-handle {
    grid-column: 2;
    padding-right: 1.5rem;
  }

  /* Gallery: single column */
  .gallery-layout {
    grid-template-columns: 1fr;
  }
  .gallery-portrait { aspect-ratio: 4/5; }
  .gallery-small-col {
    padding-top: 0;
    flex-direction: row;
  }
  .gallery-small { flex: 1; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE — 480px
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-name { font-size: clamp(3rem, 20vw, 5rem); }
  .hero-photo-wrap { width: 55vw; }
  .currently-grid { grid-template-columns: 1fr; }
  .facts-scatter { gap: 0.5rem; }
  .social-platform { font-size: clamp(1.25rem, 7vw, 2rem); }
  .footer-socials { gap: 1.25rem; }
}

