/* =============================================
   THE POTTER'S TEENS — teenverse.css
   Styles specific to teenverse.html
   ============================================= */

/* ── HERO ── */
.tv-hero {
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  border-bottom: var(--border);
}
.tv-hero-left {
  background: color-mix(in srgb, var(--teal) 15%, #000);
  border-right: 4px solid var(--teal);
  padding: 4rem 3rem 4rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.tv-hero-left::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,184,196,0.12) 2px, transparent 2px);
  background-size: 18px 18px; pointer-events: none;
}
.tv-hero-logo {
  width: 220px; max-width: 90%;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.tv-hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 3px; color: var(--teal);
  line-height: 0.95; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.tv-hero-left p {
  font-size: 1rem; font-weight: 800;
  color: rgba(255,255,255,0.8);
  line-height: 1.6; max-width: 380px;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.tv-hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.tv-hero-right {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem; gap: 2.5rem;
  position: relative; overflow: hidden;
  background: color-mix(in srgb, var(--teal) 8%, #000);
}
.tv-hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,184,196,0.08) 2px, transparent 2px);
  background-size: 22px 22px; pointer-events: none;
}

/* ── SPEECH BUBBLE ── */
.tv-bubble {
  background: var(--white); border: 4px solid var(--teal);
  border-radius: 20px; padding: 1.5rem 1.75rem;
  box-shadow: 6px 6px 0 var(--teal);
  position: relative; z-index: 2;
  max-width: 300px; transform: rotate(2deg);
}
.tv-bubble::after {
  content: '';
  position: absolute; bottom: -26px; left: 36px;
  border-left: 13px solid transparent;
  border-right: 8px solid transparent;
  border-top: 26px solid var(--teal);
}
.tv-bubble::before {
  content: '';
  position: absolute; bottom: -18px; left: 40px; z-index: 3;
  border-left: 10px solid transparent;
  border-right: 6px solid transparent;
  border-top: 20px solid var(--white);
}
.tv-bubble-text {
  font-family: var(--font-display);
  font-size: 1.45rem; letter-spacing: 1px;
  line-height: 1.2; color: var(--navy);
}
.tv-bubble-sub {
  font-size: 0.85rem; font-weight: 800;
  color: #888; margin-top: 5px;
}
.tv-hero-stamp {
  background: rgba(0,184,196,0.15);
  border: 4px solid var(--teal);
  padding: 1.5rem; max-width: 300px;
  position: relative; z-index: 2; text-align: center;
}
.tv-hero-stamp p {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 2px;
  color: var(--teal); margin: 0;
}
.tv-hero-stamp span {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--yellow);
  display: block; margin-top: 0.25rem;
}

/* ── HERO IMAGE SLOT ── */
.tv-hero-img {
  width: 260px; max-width: 100%;
  aspect-ratio: 4/3;
  border: 4px solid var(--teal);
  box-shadow: 8px 8px 0 var(--teal);
  overflow: hidden;
  position: relative; z-index: 2;
  transform: rotate(-1deg);
  transition: all 0.15s;
}
.tv-hero-img:hover {
  transform: rotate(-1deg) translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--teal);
}
.tv-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── ABOUT SECTION ── */
.tv-about { background: var(--white); border-bottom: var(--border); }
.tv-about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.tv-about-copy p {
  font-size: 0.95rem; font-weight: 700;
  line-height: 1.7; color: #444; margin-bottom: 0.9rem;
}
.tv-what-we-do {
  background: color-mix(in srgb, var(--teal) 10%, var(--white));
  border: 4px solid var(--teal);
  box-shadow: 6px 6px 0 var(--teal);
  padding: 2rem;
}
.tv-what-we-do h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 2px;
  color: var(--teal); margin-bottom: 1rem;
}
.tv-activity {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 0.75rem;
}
.tv-activity:last-child { margin-bottom: 0; }
.tv-activity-icon { font-size: 1.3rem; flex-shrink: 0; }
.tv-activity-text {
  font-size: 0.88rem; font-weight: 800;
  line-height: 1.5; color: var(--navy);
}

/* ── TOPICS SECTION ── */
.tv-topics {
  background: color-mix(in srgb, var(--teal) 7%, var(--white));
  border-bottom: var(--border);
}
.topics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.topic-card {
  background: var(--white);
  border: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.25rem;
  transition: all 0.12s; cursor: pointer;
}
.topic-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--navy);
  border-color: var(--teal);
}
.topic-icon { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.topic-title {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 1px;
  color: var(--navy); margin-bottom: 0.4rem;
}
.topic-desc { font-size: 0.85rem; font-weight: 700; line-height: 1.5; color: #555; }

/* ── CTA STRIP ── */
.tv-cta {
  background: var(--teal); border-bottom: var(--border);
  padding: 5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.tv-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.1) 2px, transparent 2px);
  background-size: 18px 18px; pointer-events: none;
}
.tv-cta-inner { position: relative; z-index: 1; }
.tv-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 4px; color: var(--white);
  line-height: 1; margin-bottom: 1rem;
}
.tv-cta p {
  font-size: 1rem; font-weight: 800;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ── TEENVERSE RESPONSIVE ── */
@media (max-width: 960px) {
  .tv-hero              { grid-template-columns: 1fr; min-height: unset; }
  .tv-hero-right        { display: none; }
  .tv-hero-left         { border-right: none; padding: 3rem 1.5rem; min-height: 75vh; }
  .tv-about-inner       { grid-template-columns: 1fr; }
  .topics-grid          { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .topics-grid { grid-template-columns: 1fr; }
}
