:root {
  --bg: #000;
  --card: #0b0b0b;
  --border: #1f1f1f;
  --text: #fff;
  --muted: #a1a1aa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img,
iframe {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 24px;
}

section {
  margin-top: 96px;
}

h1,
h2,
h3 {
  font-weight: 500;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ================= TOP BAR ================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.logo img {
  width: 28px;
}

nav a {
  margin-left: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
}

/* ================= HERO ================= */
.project-hero {
  display: grid;
  gap: 32px;
}

.project-meta {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.project-media img,
.project-media iframe {
  width: 100%;
  /*aspect-ratio: 16 / 9; */
  border-radius: 14px;
}

/* ================= SPLIT SECTIONS ================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse {
    direction: ltr;
  }
}

/* ================= INFO BOX ================= */
.info-box {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  gap: 12px;
  font-size: 0.85rem;
}

.info-box span {
  color: var(--muted);
}

/* ================= FOOTER ================= */
footer {
  margin-top: 120px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 14px;
}

.socials img {
  width: 18px;
  filter: invert(1);
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

html {
  scroll-behavior: smooth;
}
