/* ====== ROOT & RESET ====== */

:root {
  --bg: #050406;
  --bg-alt: #101018;
  --card-bg: #171721;
  --accent: #ff4fa3;
  --accent-soft: #ff82c0;
  --accent-dark: #c11f6d;
  --text-main: #f6f6fb;
  --text-muted: #b8b8d4;
  --border-subtle: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.8);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #171721 0, #050406 45%, #000000 100%);
  color: var(--text-main);
}

/* nicer scrollbars on desktop */
body {
  scrollbar-color: var(--accent-dark) #050406;
  scrollbar-width: thin;
}

/* ====== LAYOUT UTILS ====== */

.max-width {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: "Bangers", system-ui, sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-bottom: 0.8rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -0.4rem;
  width: 80%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 16px rgba(255, 79, 163, 0.8);
}

.section-subtitle {
  max-width: 560px;
  margin: 0.6rem auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ====== HEADER ====== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
      120deg,
      rgba(255, 79, 163, 0.08),
      transparent 60%
    ),
    rgba(5, 4, 6, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.brand-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 3px;
  background: radial-gradient(circle at 30% 20%, var(--accent-soft), var(--accent));
  box-shadow: 0 0 12px rgba(255, 79, 163, 0.8);
}

.brand-avatar-inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 25%, #f7f7fb 0, #aaa 40%, #333 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* NAV */

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-main);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

/* Hamburger */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 4, 6, 0.9);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ====== HERO ====== */

.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 79, 163, 0.14), transparent 55%),
    radial-gradient(circle at 80% 15%, rgba(255, 130, 192, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-kicker {
  font-size: 0.8rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(255, 79, 163, 0.75);
}

.hero-desc {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

/* Hero art */

.hero-art {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.hero-art-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  background:
    radial-gradient(circle at 10% 0, var(--accent-soft), transparent 55%),
    radial-gradient(circle at 90% 100%, var(--accent-dark), transparent 55%);
  box-shadow: var(--shadow-soft);
}

.hero-art-frame::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-art-frame::after {
  /* pink splatter-ish halo */
  content: "";
  position: absolute;
  inset: -14%;
  background:
    radial-gradient(circle at 30% 10%, rgba(255, 130, 192, 0.28), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(255, 79, 163, 0.35), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.7;
  z-index: -1;
}

.hero-art-frame img {
  display: block;
  border-radius: calc(var(--radius-lg) - 8px);
  width: min(495px, 100%);
  height: auto;
  animation: float 4.2s ease-in-out infinite;
}

/* ====== BUTTONS ====== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #050406;
  box-shadow: 0 10px 24px rgba(255, 79, 163, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 79, 163, 0.8);
}

.btn.ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn.ghost:hover {
  border-color: var(--accent-soft);
  background: rgba(255, 79, 163, 0.08);
}

.btn.full-width {
  width: 100%;
}

/* ====== GALLERY ====== */

.gallery {
  background: radial-gradient(circle at top, #171721 0, #050406 60%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}

.gallery-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.gallery-image-wrap {
  border-radius: calc(var(--radius-md) - 4px);
  overflow: hidden;
  position: relative;
}

.gallery-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, transparent, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.22s ease;
}

.gallery-item figcaption {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 163, 0.8);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-image-wrap::after {
  opacity: 1;
}

/* ====== ABOUT ====== */

.about {
  position: relative;
  background: #05040600; /* fallback color if video can't load */
  overflow: hidden;
}

.about-bg-video {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35); /* darken so text stays readable */
}

/* subtle overlay to improve contrast */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
  z-index: -1;
}


.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-text p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.highlight {
  color: var(--accent-soft);
  font-weight: 700;
}

.about-card {
  background: radial-gradient(circle at 20% 0, rgba(255, 79, 163, 0.26), transparent 60%),
    var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.about-card li {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

/* ====== CONTACT ====== */

.contact {
  background: radial-gradient(circle at bottom, #171721 0, #050406 55%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.field-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.field {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: #0c0c13;
  color: var(--text-main);
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(255, 79, 163, 0.4);
  background: #080810;
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* contact aside */

.contact-aside {
  padding: 1.4rem 0.8rem;
}

.contact-aside h3 {
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin: 0.9rem 0 1.4rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-main);
  background: rgba(255, 79, 163, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #050406;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(255, 79, 163, 0.7);
}

.contact-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 79, 163, 0.14);
}

.chip-soft {
  background: rgba(184, 184, 212, 0.12);
}

/* ====== FOOTER ====== */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #050406;
  padding: 1.2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-brand {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ====== ANIMATIONS ====== */

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ====== RESPONSIVE ====== */

@media (max-width: 840px) {
  .hero-inner {
    flex-direction: column-reverse;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .about-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    gap: 0.6rem;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    background: radial-gradient(circle at top, #171721 0, #050406 55%);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1.5rem 1.4rem;
  }

  .site-nav ul {
    flex-direction: column;
  }

  .site-nav li {
    padding-block: 0.15rem;
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .section {
    padding-inline: 0;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
