/* ========================================
   NEMUTUB.COM — Custom Styles
   Avant-Garde Color-Blocking
======================================== */

/* ---------- Marquee / Ticker ---------- */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
}

/* ---------- Fluid SVG shapes ---------- */
.svg-blob {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
}

/* ---------- Hero typography ---------- */
.hero-heading {
  font-size: clamp(3.5rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-heading {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.sub-heading {
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ---------- Body text ---------- */
.body-lg {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

/* ---------- Form inputs ---------- */
.form-field {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-field::placeholder {
  color: rgba(255,255,255,0.45);
}

.form-field:focus {
  border-color: #A7F3D0;
  background: rgba(255,255,255,0.13);
}

/* ---------- Cookie banner ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}

#cookie-banner.visible {
  transform: translateY(0);
}

/* ---------- Button pulse ---------- */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(167,243,208,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(167,243,208,0); }
  100% { box-shadow: 0 0 0 0 rgba(167,243,208,0); }
}

.btn-pulse {
  animation: pulse-ring 2.2s ease-out infinite;
}

/* ---------- Diagonal divider ---------- */
.clip-diagonal {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.clip-diagonal-rev {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
}

/* ---------- Nav link hover ---------- */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: #A7F3D0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- Scrollbar (optional branding) ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #1D4ED8; border-radius: 3px; }
