/* =============================================
   VIAN CREATIVES - Page Styles
   ============================================= */

/* Reuse shared base styles from style.css */

/* Page Hero */
.page-hero {
  background: var(--bg-dark);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(254,88,12,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-tag { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--bg-card-2);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--transition), transform var(--transition);
}
.team-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
}
.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo.img-placeholder {
  background: linear-gradient(135deg, rgba(254,88,12,0.1), rgba(18,18,18,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  min-height: 240px;
}
.team-info { padding: 24px; }
.team-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.team-info span {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-card-2);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 3px solid var(--orange);
}
.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.value-card p { font-size: 14px; color: var(--text-grey); line-height: 1.7; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* Light mode overrides for inner pages */
body.light-mode .page-hero {
  background: #F8F9FA;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
body.light-mode .page-hero h1 {
  color: #121212;
}
body.light-mode .page-hero p {
  color: #555555;
}

