/* Minimal, clean, and readable styles */
:root {
  --bg: #0f1221;
  --panel: #12162a;
  --text: #e6e8f0;
  --muted: #a0a5b8;
  --accent: #6aa9ff;
  --accent-2: #a56bff;
  --ring: hsl(220 90% 60% / 0.2);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, #1a1f3a 0%, transparent 50%),
              radial-gradient(1000px 600px at 110% 10%, #1b1533 0%, transparent 45%),
              var(--bg);
  line-height: 1.6;
}
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px); background: linear-gradient(to bottom, rgba(15,18,33,0.85), rgba(15,18,33,0.6)); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.logo { font-size: 1.1rem; letter-spacing: 0.5px; margin: 0; }
.nav { display: flex; gap: 16px; align-items: center; }
.nav a, .nav .linklike { color: var(--text); text-decoration: none; opacity: 0.9; font-weight: 600; }
.linklike { background: none; border: 0; padding: 0; cursor: pointer; }
.nav a:hover, .nav .linklike:hover { opacity: 1; color: white; }

/* Hero */
.hero { padding: 56px 0 24px; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.hero-card h2 { margin: 0 0 8px; font-size: 1.8rem; }
.intro-text { margin: 0 0 16px; color: var(--muted); font-size: 1.05rem; }

.cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  --b: rgba(255,255,255,0.1);
  background: var(--panel);
  border: 1px solid var(--b);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: transform 0.06s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.22); }
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-color: transparent; color: #0a0f1f; }
.btn.primary:hover { filter: brightness(1.08); }

/* Cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 12px 0 36px; }
.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px; }
.card h3 { margin: 0 0 6px; }
.card p { margin: 0; color: var(--muted); }
@media (min-width: 720px) { .cards { grid-template-columns: 1fr 1fr; } }

/* Buttons/links */
.icon-button, .icon-link { background: none; border: 1px solid rgba(255,255,255,0.12); color: var(--text); padding: 6px 10px; border-radius: 8px; cursor: pointer; text-decoration: none; }
.icon-button:hover, .icon-link:hover { border-color: rgba(255,255,255,0.24); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; color: var(--muted); }
.footer-contact { margin-top: 8px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-contact a { color: var(--text); text-decoration: none; opacity: 0.85; }
.footer-contact a:hover { opacity: 1; text-decoration: underline; }

/* Studio block */
.studio .studio-content { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: center; }
@media (min-width: 880px) { .studio .studio-content { grid-template-columns: 1.2fr 1fr; } }
.studio-media { margin: 0; }
/* Buttons/links */
.icon-button, .icon-link { background: none; border: 1px solid rgba(255,255,255,0.12); color: var(--text); padding: 6px 10px; border-radius: 8px; cursor: pointer; text-decoration: none; }
.icon-button:hover, .icon-link:hover { border-color: rgba(255,255,255,0.24); }

.studio-img { width: 100%; height: auto; display: block; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.35); background: #0b0f1f; }
/* Footer */

/* Photos / Gallery */
.section-subtitle { color: var(--muted); margin: 4px 0 12px; }
.photos .card { overflow: hidden; }
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0f1f;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: zoom-in;
}
.gallery img:hover { transform: translateY(-2px) scale(1.01); border-color: rgba(255,255,255,0.18); box-shadow: 0 10px 28px rgba(0,0,0,0.45); }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.7); z-index: 1000; padding: 24px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-content { max-width: min(92vw, 1200px); max-height: 86vh; position: relative; }
.lightbox-img { width: 100%; height: auto; max-height: 86vh; border-radius: 12px; border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; top: -10px; right: -10px; background: var(--panel); color: var(--text);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; width: 36px; height: 36px; cursor: pointer;
}
