/* ═══════════════════════════════════════════════════
   DIZarchitects — Shared Styles
   Loaded on all pages before page-specific styles.
   ═══════════════════════════════════════════════════ */

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

/* ── ROOT VARIABLES ── */
:root {
  --blue:  #0000CC;
  --black: #080808;
  --white: #ffffff;
  --font:  'Urbanist', 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;
}

/* ── HEADER ── */
/* Note: index.html has a simpler header (no background/backdrop/border) — left inline there. */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 52px;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

a.logo-wrap { display: flex; align-items: center; text-decoration: none; }

.logo-wrap img {
  height: 42px; width: auto;
  display: block; object-fit: contain;
  transition: opacity 0.3s;
}

.logo-wrap:hover img { opacity: 0.7; }

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 44px; }

nav a {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #6366f1;
  transition: width 0.3s ease;
}

nav a:hover { color: #6366f1; }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--white); }
nav a.active::after { width: 100%; background: var(--white); transition: none; }

/* ── FOOTER ── */
footer {
  flex-shrink: 0;
  background: rgba(255,255,255,0.02);
  padding: 20px 52px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy { font-size: 0.67rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.22); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
