/* ═══════════════════════════════════════
   Happy Hour Media — Vibrant & Playful
   ═══════════════════════════════════════ */

:root {
  --teal: #00897b;
  --teal-light: #b2dfdb;
  --teal-deep: #00695c;
  --gold: #f5a623;
  --gold-light: #ffe0a1;
  --coral: #e85d4a;
  --coral-light: #ffab91;
  --navy: #1b3a4b;
  --navy-light: #2d5f7a;
  --bg: #fffaf0;
  --text: #1a1a1a;
  --muted: #5c6366;
  --white: #fff;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --max-w: 1140px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 2rem, var(--max-w)); margin: 0 auto; }

/* TYPOGRAPHY */
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.025em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }
p + p { margin-top: 0.8rem; }

.label {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.label--gold { background: var(--gold-light); color: #8b5e00; }
.label--coral { background: var(--coral-light); color: #8b2500; }
.label--light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,137,123,0.35);
}
.btn--primary:hover { box-shadow: 0 14px 36px rgba(0,137,123,0.45); }
.btn--hero {
  background: var(--white);
  color: var(--teal-deep);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  font-size: 1.05rem;
}
.btn--hero:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.25); }
.btn--full { width: 100%; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header--scrolled {
  background: rgba(255,250,240,0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}
.nav a:hover { color: var(--white); }
.header--scrolled .nav a { color: var(--muted); }
.header--scrolled .nav a:hover { color: var(--text); }
.nav__cta {
  padding: 0.55rem 1.4rem !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  color: var(--white) !important;
  transition: background 0.3s, border-color 0.3s;
}
.nav__cta:hover { background: rgba(255,255,255,0.3); }
.header--scrolled .nav__cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  border-color: transparent !important;
  box-shadow: 0 6px 18px rgba(232,93,74,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}
.header--scrolled .hamburger span { background: var(--text); }
.hamburger[aria-expanded="true"] span { background: var(--text); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero picture { position: absolute; inset: 0; z-index: 0; }
.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center 42%, rgba(0,0,0,0.38) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}
.hero__logo {
  height: clamp(80px, 14vw, 130px);
  width: auto;
  margin: 0 auto 1.2rem;
  filter: brightness(0) invert(1) drop-shadow(0 4px 30px rgba(0,0,0,0.5));
}
.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  animation: bounce 2.2s ease-in-out infinite;
}

/* animated blobs in hero */
.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
  opacity: 0.08;
  mix-blend-mode: soft-light;
}
.blob--1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  right: -80px;
  animation-delay: 0s;
}
.blob--2 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  bottom: -80px;
  left: -60px;
  animation-delay: -4s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* ─── REVEAL ─── */
.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.js .reveal--visible { opacity: 1; transform: translateY(0); }
.js .reveal--d1 { transition-delay: 0.12s; }
.js .reveal--d2 { transition-delay: 0.24s; }

/* ─── SECTIONS ─── */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section__head { max-width: 38rem; margin-bottom: 2.5rem; }
.section__head h2 { margin-top: 0.4rem; }

/* ─── INTRO ─── */
.intro {
  background:
    radial-gradient(circle at 80% 20%, rgba(245,166,35,0.12), transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(0,137,123,0.1), transparent 40%),
    var(--bg);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.intro__text { max-width: 540px; }
.intro__text h1 { margin: 0.6rem 0 1rem; }
.intro__doodle {
  width: 200px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.12));
  animation: tilt 6s ease-in-out infinite;
}
@keyframes tilt {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  padding: 1.6rem 1.2rem;
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform 0.3s var(--ease);
  box-shadow: var(--shadow);
}
.stat:hover { transform: translateY(-6px) scale(1.02); }
.stat--teal { background: linear-gradient(135deg, #e0f7fa, #b2dfdb); }
.stat--gold { background: linear-gradient(135deg, #fff8e1, #ffe0a1); }
.stat--coral { background: linear-gradient(135deg, #fbe9e7, #ffccbc); }
.stat--navy { background: linear-gradient(135deg, #e1eef5, #b3d4e8); }
.stat strong {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.stat span { font-size: 0.84rem; color: var(--muted); }

/* ─── SERVICES ─── */
.services {
  background:
    linear-gradient(135deg, rgba(0,137,123,0.04), rgba(245,166,35,0.06) 50%, rgba(232,93,74,0.04));
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  padding: 2rem 1.8rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.15;
  transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scale(1.8); }

.card--teal { background: linear-gradient(180deg, #e0f2f1 0%, var(--white) 100%); }
.card--teal::before { background: var(--teal); }
.card--gold { background: linear-gradient(180deg, #fff3e0 0%, var(--white) 100%); }
.card--gold::before { background: var(--gold); }
.card--coral { background: linear-gradient(180deg, #fbe9e7 0%, var(--white) 100%); }
.card--coral::before { background: var(--coral); }

.card__img {
  width: 72px;
  height: 72px;
  margin-bottom: 1.2rem;
}
.card__img img { width: 100%; height: 100%; object-fit: contain; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; }

/* ─── WHY US ─── */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.why-us__media { position: relative; }
.why-us__photo {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.why-us__float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px;
  background: var(--white);
  border-radius: var(--r);
  padding: 0.6rem;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  transition: transform 0.4s var(--ease);
}
.why-us__float:hover { transform: rotate(0deg) scale(1.05); }
.why-us__copy h2 { margin: 0.4rem 0 1rem; }

.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease);
}
.pill:hover { transform: scale(1.05); }
.pill--teal { background: #e0f2f1; color: var(--teal-deep); }
.pill--gold { background: #fff3e0; color: #8b5e00; }
.pill--coral { background: #fbe9e7; color: #8b2500; }
.pill--navy { background: #e1eef5; color: var(--navy); }

/* ─── PROOF ─── */
.proof {
  background:
    linear-gradient(135deg, var(--navy) 0%, #234e63 40%, var(--teal-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.proof::before,
.proof::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.proof::before {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -200px;
  right: -100px;
}
.proof::after {
  width: 350px;
  height: 350px;
  background: var(--coral);
  bottom: -150px;
  left: -80px;
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.proof__item {
  text-align: center;
  padding: 1.5rem;
}
.proof__word {
  height: 40px;
  width: auto;
  margin: 0 auto 1rem;
  filter: invert(1);
}
.proof__item p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.proof__doodle {
  width: 50px;
  height: 50px;
  margin: 1rem auto 0;
  filter: invert(1);
  opacity: 0.5;
  animation: wiggle 4s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}

/* ─── PLATFORMS ─── */
.platforms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.platforms__copy h2 { margin: 0.4rem 0 1rem; }
.platforms__visual { position: relative; display: flex; justify-content: center; }
.platforms__circle {
  width: 70%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff8e1, #ffe082);
}
.platforms__squiggle {
  position: absolute;
  top: -20px;
  right: 10%;
  width: 250px;
  opacity: 0.6;
  animation: wiggle 5s ease-in-out infinite;
  animation-delay: -2s;
}

/* ─── CONTACT ─── */
.contact__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact__copy h2 { margin: 0.4rem 0 1rem; }
.contact__copy p { color: rgba(255,255,255,0.7); margin-bottom: 1.8rem; }
.contact__btn { font-size: 1rem; }
.contact__visual { display: flex; justify-content: center; }
.contact__img {
  width: 280px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.25));
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__info p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255,255,255,0.7);
}
.footer__info p + p { margin-top: 0.15rem; }
.footer__links {
  text-align: right;
}
.footer__links a {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  padding-top: 1.5rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav--open {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    gap: 1.8rem;
    background: #fffaf0;
    z-index: 105;
    animation: fadeIn 0.3s var(--ease-out);
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Confetti */
  .confetti {
    position: fixed;
    top: -10px;
    width: 8px;
    height: 8px;
    z-index: 106;
    pointer-events: none;
    border-radius: 2px;
    animation: confettiFall linear forwards;
  }
  @keyframes confettiFall {
    0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(105vh) rotate(720deg); opacity: 0; }
  }
  .nav--open a { color: var(--text) !important; font-size: 1.4rem; font-weight: 700; }
  .nav--open .nav__cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    text-align: center;
    padding: 0.8rem 2.5rem !important;
    font-size: 1.1rem !important;
    margin-top: 0.5rem;
  }
  .hamburger { display: flex; }
  .header { justify-content: flex-end; }

  .intro__grid { grid-template-columns: 1fr; }
  .intro__doodle { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; max-width: 420px; }
  .why-us__grid,
  .platforms__grid,
  .contact__card { grid-template-columns: 1fr; }
  .contact__visual { order: -1; }
  .contact__img { width: 200px; }
  .proof__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand img { margin: 0 auto; }
  .footer__links { text-align: center; }

  .blob--1 { width: 250px; height: 250px; top: -60px; right: -50px; }
  .blob--2 { width: 180px; height: 180px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat { padding: 1.2rem 0.8rem; }
  .hero__logo { height: 60px; }
}
