/* ===========================================
   COLART REQUESTS — Karaoke & Entertainment Hub
   requests.colartdigitalmarketingagency.com
   Built on the Colart brand tokens (style.css)
=========================================== */
:root {
  /* Brand colors (from Colart's official style.css) */
  --purple:     #642878;
  --purple-dk:  #4a1d59;
  --magenta:    #c81478;
  --magenta-lt: #e64497;
  --teal:       #50a0b4;
  --mint:       #64a08c;
  --lime:       #8cb43c;
  --yellow:     #dcdc3c;
  --whatsapp:   #25d366;

  --ink:      #1a1424;
  --bg:       #ffffff;
  --bg-soft:  #faf8fb;
  --line:     rgba(26, 20, 36, .12);
  --muted:    rgba(26, 20, 36, .6);

  --font-display: 'Lato', system-ui, sans-serif;
  --font-body:    'Lato', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--ink); overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===========================================
   HEADER
=========================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 36px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }
.nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .3s, transform .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--magenta); transform: translateY(-1px); }
@media (max-width: 600px) {
  header { padding: 12px 20px; }
  .logo img { height: 36px; }
  .nav-cta { padding: 9px 16px; font-size: 12.5px; }
}

/* ===========================================
   HERO / INTRO
=========================================== */
.hero {
  position: relative;
  padding: 150px 36px 90px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, var(--purple-dk) 0%, var(--purple) 45%, var(--magenta) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(220, 220, 60, .14) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(80, 160, 180, .18) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #fff;
  margin-bottom: 30px;
}
.hero-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 26px;
}
.hero-title .accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--yellow) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, .88);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--purple);
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .3s, background .3s, color .3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}
.btn-primary:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }
.btn-primary .arrow { transition: transform .3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .3s, border-color .3s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

@media (max-width: 600px) {
  .hero { padding: 120px 22px 70px; }
}

/* ===========================================
   SHARED SECTION HEAD
=========================================== */
.section { padding: 100px 36px; }
@media (max-width: 880px) { .section { padding: 70px 24px; } }

.section-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-eyebrow-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--magenta);
  margin-bottom: 16px;
  padding: 7px 18px;
  background: rgba(200, 20, 120, .08);
  border-radius: 999px;
}
.section-head h2 {
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head h2 .magenta { color: var(--magenta); }
.section-head > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ===========================================
   PARTNER LOGO WALL
=========================================== */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}
.logo-wall-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 24px;
  box-shadow: 0 4px 24px rgba(26, 20, 36, .05);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s, border-color .35s;
}
.logo-wall-item:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 40, 120, .25);
  box-shadow: 0 20px 44px rgba(100, 40, 120, .14);
}
.logo-wall-item img { height: 46px; width: auto; max-width: 100%; }
.logo-wall-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.logo-wall-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(200, 20, 120, .1);
  color: var(--magenta);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 11px;
  border-radius: 999px;
}
.logo-wall-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  transition: gap .25s, color .25s;
}
.logo-wall-item:hover .logo-wall-cta { gap: 10px; color: var(--magenta); }
.logo-wall-cta i { font-size: 10px; transition: transform .3s; }
.logo-wall-item:hover .logo-wall-cta i { transform: translateX(3px); }

.logo-wall-note {
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  font-size: 13.5px;
  color: var(--muted);
}

/* ===========================================
   BUTTONS (shared pill styles)
=========================================== */
.btn-pill-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 16px rgba(26, 20, 36, .1);
}
.btn-pill-gradient i { font-size: 12px; transition: transform .3s; }
.btn-pill-gradient:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(26, 20, 36, .16); }
.btn-pill-gradient:hover i { transform: translateX(4px); }

/* ===========================================
   FOOTER
=========================================== */
footer {
  background: linear-gradient(135deg, #f5eef7 0%, #faf5fa 50%, #f7eef3 100%);
  padding: 56px 36px 26px;
  text-align: center;
}
.foot-logo img { height: 40px; margin: 0 auto 14px; }
.foot-tagline {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 20px;
}
.foot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--purple);
  padding-bottom: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(100, 40, 120, .12);
}
.foot-link:hover { color: var(--magenta); }
.foot-bottom {
  font-size: 12.5px;
  color: var(--muted);
}

/* ===========================================
   ANIMATIONS + ACCESSIBILITY
=========================================== */
.reveal { opacity: 0; transform: translateY(24px); animation: reveal .9s cubic-bezier(.2, .7, .2, 1) forwards; }
.reveal.d1 { animation-delay: .12s; }
.reveal.d2 { animation-delay: .24s; }
.reveal.d3 { animation-delay: .36s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }
