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

/* ── BODY ──────────────────────────────────── */
body {
  background-color: #000;
  background-image: url('https://i-p.rmcdn.net/67d6192831725e928fe71c4e/5366469/image-aa7c2da5-1125-441d-ba47-b4dbbe4721ee.jpg?e=webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: 'Indie Flower', cursive;
  font-size: 1.55vw;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; }

/* ── NAV ───────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 3%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: all;
  gap: 2%;
}
.nav-name {
  font-size: 1.7vw;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 2vw; }
.nav-link {
  font-size: 1.4vw;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
}
.nav-link:hover { opacity: .55; }
.nav-link.active { color: rgba(190,144,255,1); }
.nav-socials { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-socials a { display: flex; align-items: center; opacity: .9; transition: opacity .15s; }
.nav-socials a:hover { opacity: .5; }
.nav-socials img { width: 22px; height: auto; }

/* ── SECTION HEADER ────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 44px;
}
.section-header::before,
.section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.4);
}
.section-title {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 3.6vw;
  color: #fff;
  letter-spacing: .06em;
  padding: 0 24px;
  white-space: nowrap;
}

.site-section { padding: 90px 6%; min-height: 100vh; }

/* ── HERO (index.html only) ──────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-name {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 7.2vw;
  line-height: 1;
  margin-bottom: .2em;
}
.hero-tagline { font-size: 2.1vw; color: rgba(255,255,255,.85); margin-bottom: .3em; }
.hero-location { font-size: 1.6vw; color: rgba(255,255,255,.55); margin-bottom: 1.2em; }
.hero-email {
  font-size: 1.5vw;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: opacity .15s;
}
.hero-email:hover { opacity: .6; }

/* ── MOBILE NAV (hamburger) — hidden on desktop ─ */
.nav-burger { display: none; }
.nav-mobile-menu { display: none; }

/* ── ANIMATION: video grid ─────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-embed.featured {
  grid-column: span 2;
}

/* ── ILLUSTRATION ───────────────────────────── */
.illu-featured {
  margin-bottom: 3vw;
  text-align: center;
}
.illu-featured img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.illu-carousels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
}
.illu-carousel {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  cursor: pointer;
  user-select: none;
  padding-bottom: 2vh;
}
.illu-track { display: flex; width: 100%; transition: transform .4s ease; }
.illu-slide { flex-shrink: 0; width: 100%; }
.illu-slide img { width: 100%; height: auto; display: block; pointer-events: none; }

.illu-zone { position: absolute; top: 0; bottom: 2vh; width: 50%; z-index: 4; cursor: pointer; }
.illu-zone.left { left: 0; } .illu-zone.right { right: 0; }

.illu-btn {
  position: absolute; top: calc(50% - 1vh); transform: translateY(-50%);
  z-index: 8; background: rgba(0,0,0,.45); color: #fff; border: none;
  border-radius: 50%; width: 2.4vw; height: 2.4vw; min-width: 32px; min-height: 32px;
  font-size: 1.4vw; line-height: 1; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .18s;
}
.illu-btn:hover { background: rgba(0,0,0,.8); }
.illu-btn-prev { left: 8px; } .illu-btn-next { right: 8px; }

.illu-dots { display: flex; justify-content: center; gap: 6px; margin-top: 8px; }
.illu-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s; }
.illu-dot.active { background: rgba(255,255,255,.9); }

/* ── NENA CASE STUDY ────────────────────────── */
.nena-intro { text-align: center; margin-bottom: 3vw; }
.nena-subtitle { font-size: 1.9vw; color: rgba(255,255,255,.8); margin-bottom: 2vw; }
.nena-video {
  position: relative; width: 68%; margin: 0 auto 2vw;
  padding-bottom: calc(68% * 0.5625); background: #111; overflow: hidden;
}
.nena-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.nena-credit { text-align: center; font-size: 1.45vw; color: rgba(255,255,255,.6); margin-bottom: 3vw; }

.nena-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
  margin-bottom: 3vw;
}
.nena-gallery img { width: 100%; height: auto; display: block; }
.nena-gallery figure { margin: 0; }
.nena-gallery figcaption {
  font-size: 1.2vw; color: rgba(255,255,255,.55); margin-top: 6px; text-align: center;
}

.nena-text {
  max-width: 900px;
  margin: 0 auto 3vw;
  font-size: 1.55vw;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
}
.nena-text p { margin-bottom: 1.1em; }
.nena-text .accent { color: rgba(190,144,255,1); }
.nena-text h4 {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 2.4vw;
  color: #fff;
  margin: 1.4em 0 .5em;
  letter-spacing: .04em;
}

.nena-wide-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
  margin-bottom: 3vw;
}
.nena-wide-gallery img { width: 100%; height: auto; display: block; }

.nena-outro {
  text-align: center;
  max-width: 800px;
  margin: 2vw auto 0;
  font-size: 1.55vw;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
}
.nena-outro .accent { color: rgba(255,148,250,1); }

/* ── ABOUT ME ────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6vw;
  align-items: start;
}
.about-text {
  font-size: 1.55vw;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
}
.about-text p { margin-bottom: 1.1em; }
.about-text .accent { color: rgba(190,144,255,1); }
.about-links {
  margin-top: 1.8em;
  padding-top: 1.4em;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 1.45vw;
  color: rgba(255,255,255,.8);
  line-height: 1.9;
}
.about-links a {
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.4);
  transition: opacity .15s;
}
.about-links a:hover { opacity: .6; }

.about-side { display: flex; flex-direction: column; align-items: center; }
.about-side img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
}
.about-side-label {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 2.4vw;
  color: rgba(255,255,255,.8);
  text-align: center;
}

footer {
  text-align: center;
  padding: 24px;
  font-size: 1.1vw;
  color: rgba(255,255,255,.2);
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ════════════════════════════════════════════
   MOBILE ≤ 768px
════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { font-size: 16px; }

  nav { height: 72px; padding: 0 5%; }
  .nav-name { font-size: 5.5vw; }

  /* hide the inline desktop links/socials — replaced by hamburger menu */
  .nav-links, .nav-socials { display: none; }

  /* hamburger button */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* dropdown menu */
  .nav-mobile-menu {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(0,0,0,.93);
    flex-direction: column;
    padding: 24px 6% 28px;
    pointer-events: all;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-links { display: flex; flex-direction: column; gap: 18px; }
  .nav-mobile-links a { font-size: 5.5vw; color: #fff; }
  .nav-mobile-socials { display: flex; gap: 18px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
  .nav-mobile-socials img { width: 24px; height: auto; }

  .site-section { padding: 56px 5%; }
  .section-title { font-size: 8vw; padding: 0 12px; }

  .hero-name { font-size: 13vw; }
  .hero-tagline { font-size: 5vw; }
  .hero-location { font-size: 4vw; }
  .hero-email { font-size: 3.8vw; }


  .video-grid { grid-template-columns: 1fr; gap: 24px; }
  .video-embed.featured { grid-column: span 1; }

  .illu-carousels { grid-template-columns: 1fr; gap: 24px; }
  .illu-btn { width: 9vw; height: 9vw; font-size: 6vw; }

  .nena-video { width: 100%; padding-bottom: 56.25%; }
  .nena-subtitle { font-size: 4.5vw; }
  .nena-credit { font-size: 3.6vw; }
  .nena-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .nena-gallery figcaption { font-size: 3vw; }
  .nena-wide-gallery { grid-template-columns: 1fr; gap: 14px; }
  .nena-text { font-size: 4vw; }
  .nena-text h4 { font-size: 6vw; }
  .nena-outro { font-size: 4vw; }

  .about-grid { display: flex; flex-direction: column; gap: 32px; }
  .about-grid .about-side { order: -1; }
  .about-text { font-size: 4vw; }
  .about-links { font-size: 3.6vw; }
  .about-side-label { font-size: 5vw; }

  footer { font-size: 12px; }
}
