/* ─── Lolek Productions Website Styles ───────────────────────────────────────── */
/* Light-theme site. Uses tokens from tokens.css; purple accent is site-specific. */

:root { --lolek-purple: oklch(0.4 0.2 295); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  padding: 4rem 1rem 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero { padding: 6rem 1rem 3rem; }
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
}

.mission {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.mission p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .mission p { font-size: 1.25rem; }
}

/* ── YouTube card ─────────────────────────────────────────────────────────────── */
.yt-card {
  margin-top: 4rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  background: var(--card);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px oklch(0 0 0 / 10%);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.yt-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.yt-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.yt-btn {
  display: inline-block;
  background: var(--destructive);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.yt-btn:hover { opacity: 0.85; }

/* ── Contact ──────────────────────────────────────────────────────────────────── */
.contact {
  margin-top: 4rem;
  text-align: center;
}
.contact h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

/* ── Journey / Timeline ───────────────────────────────────────────────────────── */
.journey {
  padding: 4rem 1rem;
}
.journey h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .journey h2 { font-size: 3rem; }
}
.journey > .container > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 4rem;
}

.timeline {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border);
}
@media (max-width: 767px) {
  .timeline::before { left: 1rem; }
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 3rem;
  }
}

.timeline-content {
  width: 45%;
  background: var(--card);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px oklch(0 0 0 / 10%);
  border: 1px solid var(--border);
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .timeline-content { width: 100%; }
}
.timeline-item:nth-child(odd)  .timeline-content { margin-right: 2rem; }
.timeline-item:nth-child(even) .timeline-content { margin-left:  2rem; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
@media (max-width: 767px) {
  .timeline-item:nth-child(odd)  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { margin: 0; }
  .timeline-item:nth-child(even) { flex-direction: column; }
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}
.timeline-content .year {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lolek-purple);
  text-align: center;
  margin-bottom: 1rem;
}
.timeline-content p { color: var(--muted-foreground); line-height: 1.6; }
.timeline-content a { color: var(--lolek-purple); text-decoration: none; }
.timeline-content a:hover { text-decoration: underline; }

.timeline-icon {
  position: relative;
  z-index: 10;
  width: 2.5rem;
  height: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .timeline-icon { position: absolute; left: 0; top: 1rem; }
}

.timeline-spacer { width: 45%; }
@media (max-width: 767px) {
  .timeline-spacer { display: none; }
}

/* ── Team ─────────────────────────────────────────────────────────────────────── */
.team {
  padding: 4rem 1rem;
}
.team h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .team h2 { font-size: 2.25rem; margin-bottom: 4rem; }
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.team-member { text-align: center; }
.team-member img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  background: var(--muted);
}
.team-member h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.team-member .role {
  color: var(--lolek-purple);
  font-weight: 500;
  margin-bottom: 1rem;
}
.team-member p { color: var(--muted-foreground); line-height: 1.6; }
