/* ── TheatreBase — Home Page ── */

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 58px;
  padding: 0 40px;
  background: rgba(24,24,26,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(50,50,55,.5);
}
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 13px;
  color: var(--text2);
  padding: 5px 10px;
  border-radius: var(--r);
  transition: color .1s;
}
.nav-link:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px 60px;
  position: relative;
  /* Subtle radial glow behind the hero content */
  background: radial-gradient(ellipse 60% 45% at 50% 40%,
    rgba(47,158,82,.055) 0%, transparent 70%);
}

/* Big logo animation */
.hero-logo {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .5s ease .1s forwards;
}
.hero-logo svg {
  display: block;
}

/* stroke draw-on */
.logo-frame {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawStroke .7s ease .15s forwards;
}
.logo-left {
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  animation: drawStroke .5s ease .75s forwards;
}
.logo-right {
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  animation: drawStroke .5s ease .95s forwards;
}
.logo-leg1 {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  animation: drawStroke .3s ease 1.2s forwards;
}
.logo-leg2 {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  animation: drawStroke .3s ease 1.3s forwards;
}
.logo-base {
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
  animation: drawStroke .35s ease 1.4s forwards;
}
@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}

/* Hero text stagger */
.hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .55s ease .6s forwards;
}
.hero-title .green { color: var(--go-txt); }
.hero-tagline {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto 36px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp .55s ease .8s forwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .5s ease 1s forwards;
}
.hero-cta .btn { padding: 11px 26px; font-size: 14px; }

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn .5s ease 1.6s forwards;
}
.scroll-hint span { font-size: 10px; color: var(--text3); letter-spacing: .08em; text-transform: uppercase; }
.scroll-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--text3), transparent);
  animation: scrollPulse 1.8s ease-in-out 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.15); }
}

/* ── ABOUT ── */
.about {
  border-top: 1px solid var(--div);
  padding: 96px 40px;
}
.about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-heading {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-body {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-cta { margin-top: 28px; }
.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-point {
  padding: 20px 22px;
  background: var(--chrome2);
  border: 1px solid var(--div);
  border-left: 2px solid var(--go);
  border-radius: var(--r2);
  transition: border-color .15s, background .15s;
}
.about-point:hover {
  background: var(--chrome3);
  border-color: var(--div2);
  border-left-color: var(--go-hi);
}
.about-point h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.about-point p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.6;
}
.point-marker {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--go-txt);
  margin-bottom: 8px;
  letter-spacing: .04em;
}

/* ── FOOTER ── */
footer {
  padding: 28px 40px;
  border-top: 1px solid var(--div);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--text3); }
.footer-links a:hover { color: var(--text2); }

/* ── Shared animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .nav { padding: 0 20px; }
  .hero { padding: 80px 24px 60px; }
  .about { padding: 64px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 24px; }
}
