/* Main styles for Fineye Pixels */
:root {
  --bg: #0f0f10;
  --fg: #eaeaea;
  --muted: #b5b5b5;
  --primary: #00c2a8;
  --card: #151517;
  --border: #2a2a2d;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}
.site-header {
  position: sticky; top: 0;
  background: rgba(15,15,16,0.85); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 1rem; z-index: 1000;
}
.logo { height: 32px; margin-right: 0.5rem; }
.brand { display: flex; align-items: center; color: var(--fg); text-decoration: none; font-weight: 600; }
.nav ul { list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; }
.nav a { color: var(--fg); text-decoration: none; }
#menuToggle { display: none; }
@media (max-width: 768px) {
  #menuToggle { display: inline-block; background: none; border: 1px solid var(--border); color: var(--fg); padding: 0.25rem 0.5rem; border-radius: 6px;}
  .nav ul { display: none; position: absolute; right: 1rem; top: 3rem; background: var(--card); padding: 0.5rem; border: 1px solid var(--border); border-radius: 8px; flex-direction: column; }
  .nav ul.open { display: flex; }
}
main { max-width: 1100px; margin: 0 auto; padding: 1rem; }
.hero {
  display: grid; place-items: center; min-height: 50vh;
  background: radial-gradient(900px 500px at 10% 10%, rgba(0,194,168,0.25), transparent),
              radial-gradient(900px 500px at 90% 90%, rgba(0,194,168,0.15), transparent);
  text-align: center;
}
.hero h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.hero p { color: var(--muted); max-width: 60ch; margin: 0 auto 1rem; }
.btn { display: inline-block; padding: 0.6rem 1rem; border: 1px solid var(--border); border-radius: 10px; color: var(--fg); text-decoration: none; }
.btn.primary { background: var(--primary); color: #0b0e0f; border: none; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.75rem; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1rem; }
.site-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; border-top: 1px solid var(--border); padding: 1rem; margin-top: 2rem;
}
.site-footer .social a { color: var(--muted); margin-right: 0.75rem; }
/* Gallery */
.tag-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0 1rem; }
.tag-filters .chip { padding: 0.3rem 0.6rem; border: 1px solid var(--border); border-radius: 999px; cursor: pointer; }
.tag-filters .chip.active { background: var(--primary); color: #0b0e0f; border: none; }
.photo { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid var(--border); }
.photo img { width: 100%; height: 200px; object-fit: cover; display: block; }
.photo .caption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: #fff; padding: 0.5rem; font-size: 0.9rem; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: grid; place-items: center; }
.lightbox img { max-width: 90vw; max-height: 70vh; border-radius: 12px; }
.lightbox .close { position: absolute; top: 1rem; right: 1rem; background: var(--primary); color: #0b0e0f; border: none; border-radius: 8px; padding: 0.4rem 0.6rem; font-size: 1.2rem; }
/* About */
.about-content { display: grid; grid-template-columns: 240px 1fr; gap: 1rem; align-items: start; }
.about .portrait { width: 100%; border-radius: 12px; border: 1px solid var(--border); }
@media (max-width: 768px) { .about-content { grid-template-columns: 1fr; } }
/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
input, textarea { width: 100%; padding: 0.5rem; border-radius: 8px; border: 1px solid var(--border); background: #0c0c0d; color: var(--fg); }
label { display: grid; gap: 0.25rem; margin-bottom: 0.75rem; }
.form-note { color: var(--muted); font-size: 0.85rem; }
