/* ================= FLAMINGO HITMIX ================= */
:root {
  --pink: #ff2d95;
  --pink-soft: #ff6fb5;
  --cyan: #16e0e0;
  --purple: #7b2ff7;
  --bg: #0a0612;
  --bg-2: #140b1f;
  --text: #f6f0ff;
  --muted: #b39ccb;
  --max: 1100px;
  /* Instagram brand gradient */
  --insta: linear-gradient(45deg, #f58529 0%, #feda77 22%, #dd2a7b 55%, #8134af 78%, #515bd4 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--bg);
  /* Site-wide colour gradient — fixed to the viewport so it stays smooth
     across the whole page with no repeat seams */
  background-image:
    radial-gradient(ellipse 70% 45% at 15% 8%, rgba(123, 47, 247, 0.40), transparent 60%),
    radial-gradient(ellipse 70% 45% at 88% 30%, rgba(22, 224, 224, 0.26), transparent 60%),
    radial-gradient(ellipse 80% 45% at 30% 62%, rgba(255, 45, 149, 0.34), transparent 60%),
    radial-gradient(ellipse 80% 45% at 75% 92%, rgba(123, 47, 247, 0.34), transparent 60%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 45, 149, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255, 45, 149, 0.55); }
.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
/* Instagram-styled button: gradient border, fills with the gradient on hover */
.btn-insta {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--insta) border-box;
  color: #fff;
}
.btn-insta:hover {
  transform: translateY(-3px);
  color: #fff;
  background: var(--insta) border-box;
  box-shadow: 0 10px 30px rgba(221, 42, 123, 0.45);
}

/* ---------- Nav ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  z-index: 10;
}
.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--pink-soft);
}
.nav-links { display: flex; gap: 1.6rem; font-weight: 600; font-size: 0.95rem; }
.nav-links a { color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.lang-toggle {
  font: inherit;
  font-weight: 800;
  color: var(--cyan);
  background: transparent;
  border: 2px solid rgba(22, 224, 224, 0.4);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-toggle:hover { background: var(--cyan); color: var(--bg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  overflow: hidden;
  padding: 7rem 0 2rem;
}
.hero-inner { position: relative; z-index: 2; max-width: var(--max); width: 100%; padding: 0 1.5rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 16vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.hero-title span {
  background: linear-gradient(120deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 1.5rem auto 2.2rem;
  max-width: none;
  font-size: 1.15rem;
  color: var(--muted);
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
}
.section-lead { color: var(--muted); font-size: 1.1rem; margin-top: 0.4rem; margin-bottom: 2.5rem; }

/* ---------- About ---------- */
.bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 0;
}

/* ---------- Video ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
  justify-items: center;
}
.video-item { margin: 0; width: 100%; display: flex; justify-content: center; }
.video-item video {
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  background: #000;
}
.video-item.landscape video {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-item.portrait video {
  width: auto;
  height: min(72vh, 620px);
  max-width: 100%;
  aspect-ratio: 9 / 16;
}

/* ---------- Photos ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 360px;
  gap: 1rem;
}
.photo {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo:hover img { transform: scale(1.06); }
/* Anchor to the left edge so narrow viewports crop only on the right */
.photo img.crop-left { object-position: left center; }
.photo-tall { grid-row: span 2; }
.photo-wide { grid-column: span 2; }

/* ---------- Book ---------- */
.section-book { text-align: center; }
.book-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .photo-grid { grid-template-columns: repeat(1, 1fr); grid-auto-rows: 300px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-item.portrait video { height: min(80vh, 560px); }
  .section { padding: 1.5rem 1.25rem; }
  .hero { padding: 6rem 0 1.5rem; }
}
