/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #151516;
  --panel: #1d1d1f;
  --panel-2: #1e1e1f;
  --border: #2b2b2d;
  --text: #eaeaea;
  --muted: #bdbdbd;
  --accent: #f6c90e; /* subtle yellow accent */
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

/* Links */
a { color: var(--accent); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .85; }

/* Navbar */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 2rem; position: sticky; top: 0; z-index: 10;
  background: rgba(21,21,22,0.85); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.logo { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.navbar nav a { margin-left: 1.5rem; font-weight: 500; }

/* Hero */
.hero {
  display: flex; align-items: center; justify-content: center;
  min-height: 74vh; text-align: center; padding: 0 2rem;
  background: radial-gradient(1200px 600px at 10% 5%, var(--panel-2), #111);
}
.hero-content h1 { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 700; }
.highlight { color: var(--accent); }

.tagline {
  margin-top: .8rem; font-size: 1.1rem; opacity: .9;
}

/* Quip chips */
.chips {
  margin: 1.2rem auto 0; max-width: 1000px;
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
}
.chip {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: .45rem .7rem; border-radius: 999px; font-size: .9rem;
  white-space: nowrap; opacity: .95;
}

/* CTAs */
.cta-row {
  margin-top: 1.6rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-block; padding: .7rem 1rem; border-radius: 10px;
  background: var(--accent); color: #111; font-weight: 700; border: 1px solid transparent;
}
.btn.ghost {
  background: transparent; color: var(--text); border-color: var(--border); font-weight: 600;
}
.btn.ghost:hover { border-color: var(--text); }

/* Sections */
.section {
  padding: 4rem 2rem; max-width: 900px; margin: 0 auto;
}
.section h2 {
  font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem; letter-spacing: .2px;
}
.section p { font-size: 1rem; color: var(--text); opacity: .92; }

/* Projects */
.project-list { list-style: none; margin-top: 1rem; }
.project-list li {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: transform .2s ease, border-color .2s ease;
}
.project-list li:hover { transform: translateY(-4px); border-color: #3a3a3c; }
.project-list h3 { margin-bottom: .4rem; }
.project-list p { color: var(--muted); }

.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .8rem; }
.tags span {
  font-size: .85rem; padding: .25rem .5rem;
  border: 1px dashed var(--border); border-radius: 8px; color: var(--text); opacity: .85;
}

/* Footer */
footer {
  text-align: center; padding: 2rem 1rem; font-size: .9rem;
  border-top: 1px solid var(--border); opacity: .85;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .navbar nav a { margin-left: 1rem; }
  .tagline { font-size: 1rem; }
}

/* Logo styling */
.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(81%) sepia(54%) saturate(2885%)
          hue-rotate(2deg) brightness(105%) contrast(97%);
  /* ^ gives the image a tint matching #f6c90e */
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo-img:hover {
  transform: scale(1.06);
  opacity: 0.9;
}
