/* ========================================
   VRSchoolFest UA — Auxiliary Pages Stylesheet
   (About Us, Privacy Policy, Terms, Cookie Policy)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-dark:        #0B1628;
  --bg-dark-2:      #111F3D;
  --bg-light:       #F0F4FF;
  --bg-white:       #FFFFFF;
  --color-primary:  #1D4ED8;
  --color-accent:   #06B6D4;
  --color-orange:   #F97316;
  --text-dark:      #0F172A;
  --text-muted:     #64748B;
  --text-light:     #F8FAFF;
  --text-light-dim: #CBD5E1;
  --border-light:   #E2E8F0;
  --border-dark:    #1E3A6E;
  --radius-sm:      6px;
  --radius-md:      12px;
  --max-w:          1160px;
  --font-head:      'Montserrat', sans-serif;
  --font-body:      'Inter', sans-serif;
  --shadow-card:    0 2px 16px rgba(11,22,40,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Page Header (shared with index) ---- */
.page-header {
  background: var(--bg-dark);
  padding: 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo img.logo-svg {
  width: 48px;
  height: auto;
}

.header-logo .brand-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.header-logo .brand-name span {
  color: var(--color-accent);
}

.page-nav {
  display: flex;
  gap: 28px;
}

.page-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light-dim);
}
.page-nav a:hover { color: var(--color-accent); }

/* ---- Page Hero Banner ---- */
.page-banner {
  background: var(--bg-dark-2);
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--border-dark);
}

.page-banner .breadcrumb {
  font-size: 13px;
  color: var(--text-light-dim);
  margin-bottom: 12px;
}

.page-banner .breadcrumb a { color: var(--color-accent); }

.page-banner h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
}

.page-banner p {
  font-size: 16px;
  color: var(--text-light-dim);
  margin-top: 10px;
  max-width: 560px;
}

/* ---- Main Content Area ---- */
.page-content {
  padding: 64px 0 80px;
  background: var(--bg-white);
}

.page-content-inner {
  max-width: 820px;
}

/* ---- About Page Blocks ---- */
.about-block {
  margin-bottom: 56px;
}

.about-block .block-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.about-block h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.about-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

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

.highlight-card .h-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-card .h-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

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

.team-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.team-photo {
  width: 100%;
  height: 180px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.team-info {
  padding: 16px;
}

.team-info .t-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-info .t-role {
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 600;
}

/* ---- Legal Pages (Privacy, Terms, Cookie) ---- */
.legal-placeholder {
  padding: 64px 0 80px;
  background: var(--bg-white);
}

.legal-empty-notice {
  max-width: 640px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
}

.legal-empty-notice .notice-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.legal-empty-notice h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.legal-empty-notice p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Shared Footer ---- */
.site-footer {
  background: #070E1C;
  padding: 32px 0;
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img { width: 32px; height: auto; }
.footer-logo .brand { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text-light); }
.footer-logo .brand span { color: var(--color-accent); }

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-links a:hover { color: var(--color-accent); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .page-nav { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about-highlights { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ---- Legal Content (filled policy pages) ---- */
.legal-content {
  padding: 64px 0 80px;
  background: var(--bg-white);
}

.legal-inner {
  max-width: 820px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: none;
  margin: 12px 0;
}

.legal-section li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.legal-section li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.legal-list {
  list-style: none;
  padding-left: 0;
}

.legal-list li {
  margin-bottom: 12px;
  padding-left: 24px;
}

.legal-list li:before {
  content: "→";
  margin-right: 8px;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-section a {
  color: var(--color-accent);
  font-weight: 500;
}

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

.center-align {
  text-align: center;
}
