/* =============================================
   NeonVR Rooms — Auxiliary Pages Stylesheet
   (about.html, privacy-policy.html,
    terms-of-service.html, cookie-policy.html)
   ============================================= */

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

/* ── CSS Variables ───────────────────────────── */
:root {
  --bg-primary:    #0a0a18;
  --bg-secondary:  #111128;
  --bg-card:       #161630;
  --color-cyan:    #00e5ff;
  --color-pink:    #ff006e;
  --color-white:   #ffffff;
  --text-primary:  #ffffff;
  --text-muted:    #8888aa;
  --border:        #2a2a4a;
  --border-accent: #00e5ff40;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --font-heading:  'Exo 2', sans-serif;
  --font-body:     'Inter', sans-serif;
}

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

/* ── Utilities ───────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.cyan { color: var(--color-cyan); }
.pink { color: var(--color-pink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-cyan);
  border-color: var(--color-cyan);
}

/* ── Header ──────────────────────────────────── */
.site-header {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-name span {
  color: var(--color-cyan);
}

.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header-nav a {
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
}

.header-nav a:hover {
  color: var(--color-cyan);
}

/* ── Page Hero ───────────────────────────────── */
.page-hero {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

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

.page-breadcrumb-sep {
  color: var(--border);
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}

.page-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Page Content ────────────────────────────── */
.page-content {
  padding: 72px 0 80px;
}

.page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar nav (About Us only) */
.page-sidebar-nav {
  position: sticky;
  top: 80px;
}

.page-sidebar-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-sidebar-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
}

.page-sidebar-nav a.active,
.page-sidebar-nav a:hover {
  color: var(--color-cyan);
  border-left-color: var(--color-cyan);
  background-color: var(--bg-card);
}

/* Content body */
.content-body {
  min-width: 0;
}

/* Content block */
.content-block {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 28px;
  text-align: center;
}

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

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

.block-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.block-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.block-text + .block-text {
  margin-top: 14px;
}

.block-divider {
  height: 1px;
  background-color: var(--border);
  margin: 20px 0;
}

/* About page photo */
.about-page-photo {
  width: 100%;
  height: 280px;
  background-color: var(--bg-secondary);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.about-page-photo svg { opacity: 0.4; }

/* Real photos for About Us */
.about-page-photo-real {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto 24px;
  display: block;
  border: 1px solid var(--border);
}

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

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

.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.team-photo svg { opacity: 0.3; }

.team-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* Empty/Placeholder block */
.empty-block {
  background-color: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.empty-block svg { opacity: 0.25; margin: 0 auto 16px; }

/* Policy Pages CSS */
.policy-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.policy-section {
  margin-bottom: 32px;
  text-align: left;
}

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

.policy-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-cyan);
}

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

.policy-list {
  margin: 12px 0;
  padding-left: 20px;
}

.policy-list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
  list-style: none;
}

.policy-list li:before {
  content: '◆ ';
  color: var(--color-cyan);
  margin-right: 8px;
}

.policy-link {
  color: var(--color-cyan);
  font-weight: 600;
}

.policy-link:hover {
  text-decoration: underline;
}

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
}

.footer-brand-name span {
  color: var(--color-cyan);
}

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

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

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

.footer-links a:hover {
  color: var(--color-cyan);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-sidebar-nav {
    position: static;
  }

  .page-sidebar-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content-block {
    padding: 24px 20px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header-nav {
    display: none;
  }
}

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

/* ── Cookie Banner ───────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner-text a {
  color: var(--color-cyan);
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.cookie-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-heading);
}

.cookie-btn-accept {
  background-color: var(--color-cyan);
  color: var(--bg-primary);
  border-color: var(--color-cyan);
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--text-muted);
}

.cookie-btn-reject:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-banner-text {
    width: 100%;
  }
}
