/* ============================================================
   DELINA FAJARDO — Global Stylesheet
   Brand: Buttercup Yellow #F9E000 · Pain Red #E8222A · Black #0A0A0A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700;900&family=Lora:ital,wght@0,400;0,600;1,400&family=Great+Vibes&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --yellow:   #F9E000;
  --red:      #E8222A;
  --black:    #0A0A0A;
  --dark:     #111111;
  --dark2:    #181818;
  --white:    #FFFFFF;
  --gray:     #888888;
  --light:    #CCCCCC;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  font-size: 22px;
  line-height: 1;
  color: var(--red);
  text-shadow: 0 0 10px rgba(232,34,42,0.6);
  animation: heartbeat .9s ease-in-out infinite;
  user-select: none;
}
.cursor::after { content: '♥'; }
.cursor-ring { display: none; }

@keyframes heartbeat {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   }
  25%       { transform: translate(-50%,-50%) scale(1.3); }
  45%       { transform: translate(-50%,-50%) scale(1.05);}
  65%       { transform: translate(-50%,-50%) scale(1.2); }
}
}

/* ── GLITTER & SPOTLIGHTS ── */
.glitter-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1; overflow: hidden;
}
.sparkle {
  position: absolute;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0;
  animation: sparkleFade var(--dur, 3s) var(--delay, 0s) infinite;
}
.sparkle-star {
  position: absolute;
  width: 2px; background: transparent;
  opacity: 0;
  animation: starFade var(--dur, 4s) var(--delay, 0s) infinite;
}
.sparkle-star::before,
.sparkle-star::after {
  content: '';
  position: absolute;
  background: var(--yellow);
  border-radius: 2px;
}
.sparkle-star::before {
  width: var(--sz, 10px); height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 4px 1px rgba(249,224,0,.5);
}
.sparkle-star::after {
  width: 2px; height: var(--sz, 10px);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 4px 1px rgba(249,224,0,.5);
}
.spotlight {
  position: fixed;
  pointer-events: none;
  top: -20vh;
  width: var(--w, 180px); height: 110vh;
  background: var(--col, rgba(249,224,0,.03));
  transform-origin: top center;
  left: var(--left, 20%);
  clip-path: polygon(35% 0%, 65% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  mix-blend-mode: screen;
  animation: spotSweep var(--dur, 8s) var(--delay, 0s) ease-in-out infinite alternate;
}

@keyframes sparkleFade {
  0%   { opacity: 0; transform: scale(0) rotate(0deg); }
  15%  { opacity: 1; transform: scale(1) rotate(20deg); }
  40%  { opacity: .8; transform: scale(1.4) rotate(45deg); }
  70%  { opacity: .3; transform: scale(1.1) rotate(70deg); }
  100% { opacity: 0; transform: scale(.3) translateY(-15px) rotate(90deg); }
}
@keyframes starFade {
  0%   { opacity: 0; transform: scale(0) rotate(0deg); }
  20%  { opacity: .45; transform: scale(1) rotate(0deg); }
  50%  { opacity: .3; transform: scale(1.1) rotate(45deg); }
  80%  { opacity: .1; transform: scale(.8) rotate(80deg); }
  100% { opacity: 0; transform: scale(0) rotate(90deg); }
}
@keyframes spotSweep {
  0%   { transform: rotate(var(--rot-start, -8deg)); opacity: .6; }
  50%  { opacity: 1; }
  100% { transform: rotate(var(--rot-end, 8deg)); opacity: .5; }
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: linear-gradient(to bottom, rgba(10,10,10,.95) 0%, transparent 100%);
  transition: background .3s;
}
nav.scrolled { background: rgba(10,10,10,.98); }

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--white);
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--yellow);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 12px 28px;
  transition: box-shadow .3s, transform .2s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform .3s ease;
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta:hover { box-shadow: 0 8px 40px rgba(249,224,0,.25); }

/* Hamburger mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 28px; height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,10,10,.98);
  z-index: 99;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; letter-spacing: 4px;
  color: var(--white);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--yellow); }
.nav-mobile .close-btn {
  position: absolute; top: 28px; right: 60px;
  font-size: 32px; color: var(--white); cursor: pointer;
}

/* ── SECTION LABELS & HEADERS ── */
.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--yellow);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--yellow);
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 68px);
  line-height: .95; letter-spacing: 1px;
}
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 60px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 18px 48px;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .3s;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.2);
  transform: translateX(-101%);
  transition: transform .3s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(249,224,0,.25);
}

.btn-secondary {
  font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .2s;
}
.btn-secondary .arrow {
  width: 32px; height: 1px;
  background: currentColor;
  transition: width .3s;
}
.btn-secondary:hover { color: var(--yellow); }
.btn-secondary:hover .arrow { width: 48px; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--yellow); padding: 14px 0;
  overflow: hidden; position: relative; z-index: 2;
}
.marquee-inner {
  display: flex; gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 4px;
  color: var(--black);
  padding: 0 40px; white-space: nowrap;
  display: flex; align-items: center; gap: 40px;
}
.marquee-dot {
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%; opacity: .4;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FOOTER ── */
footer {
  padding: 60px;
  border-top: 1px solid #1a1a1a;
  display: flex; justify-content: space-between;
  align-items: center;
  position: relative; z-index: 2;
  background: var(--black);
}
.footer-logo {
  display: flex; align-items: center; gap: 14px;
}
.footer-heart {
  color: var(--red); font-size: 56px; line-height: 1;
  display: inline-block;
  transform: rotate(-20deg);
  text-shadow: 0 4px 20px rgba(232,34,42,.5);
  position: relative; top: -42px;
}
.footer-name {
  font-family: 'Great Vibes', cursive;
  font-size: 52px; color: var(--white);
  display: inline-block;
  transform: rotate(-12deg);
  transform-origin: left center;
}
.footer-links {
  display: flex; gap: 32px; list-style: none;
}
.footer-links a {
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gray);
  transition: color .2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-copy {
  font-size: 12px; letter-spacing: 2px; color: #333;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray);
  transition: color .2s;
}
.footer-social a:hover { color: var(--yellow); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  min-height: 40vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 140px 60px 80px;
  position: relative; overflow: hidden;
  background: var(--black);
  z-index: 2;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: #1a1a1a;
}
.page-hero-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--yellow);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.page-hero-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--yellow);
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 110px);
  line-height: .9; letter-spacing: 2px;
}
.page-hero-title .accent { color: var(--yellow); display: block; }
.page-hero-title .outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent; display: block;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ── UTILITY ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.text-yellow { color: var(--yellow); }
.text-red { color: var(--red); }
.font-bebas { font-family: 'Bebas Neue', sans-serif; }
.font-lora { font-family: 'Lora', serif; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  footer { flex-direction: column; gap: 32px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .page-hero { padding: 120px 24px 60px; }
  .container { padding: 0 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}