/* ============================================================
   ArtefactHunt VR Hub — pages.css
   Styles for auxiliary pages: About, Privacy, Terms, Cookie
   ============================================================ */

/* ============================================================
   Page Hero (mini hero for inner pages)
   ============================================================ */
.page-hero {
  padding: 56px 0 48px;
  background-image:
    linear-gradient(to bottom, rgba(0,212,255,0.02) 1px, transparent 1px),
    linear-gradient(to right, rgba(0,212,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  max-width: 680px;
}

.page-hero-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   Page Content Wrapper
   ============================================================ */
.page-main {
  padding: 64px 0 80px;
}

/* Center-aligned About page content */
.about-main {
  text-align: center;
}

.about-main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-main .about-block-inner {
  width: 100%;
}

/* ============================================================
   ABOUT PAGE — Content Blocks
   ============================================================ */
.about-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.about-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-block-inner {
  max-width: 860px;
  margin: 0 auto;
}

.about-block h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-white);
}

.about-block p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: center;
}

.about-block p:last-of-type {
  margin-bottom: 0;
}

/* About page image */
.about-block-photo {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
  border: 1px solid var(--border);
}

.about-block-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.value-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 16px;
}

.value-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0 !important;
  text-align: center;
}

/* Team row */
.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.team-card-photo {
  width: 100%;
  height: 200px;
}

.team-card-body {
  padding: 20px;
}

.team-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.team-card-body p {
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 0 !important;
  text-align: center;
}

/* ============================================================
   POLICY PAGES — Empty content block
   ============================================================ */
.policy-block {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content {
  background: transparent;
}

.policy-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.policy-section p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-section p strong {
  color: var(--text-white);
  font-weight: 600;
}

.policy-section p a {
  color: var(--primary);
  text-decoration: none;
}

.policy-section p a:hover {
  text-decoration: underline;
}

.policy-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius);
  padding: 64px 40px;
  text-align: center;
}

.policy-placeholder-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.policy-placeholder h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.policy-placeholder p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  opacity: 0.4;
}

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

  .team-row {
    grid-template-columns: 1fr;
  }

  .policy-placeholder {
    padding: 40px 20px;
  }
}

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