/* =====================================================
   MOY-MOY WEBSITE — GLOBAL STYLES
   Brand by MOY-MOY | Built with ❤️
   ===================================================== */

@font-face { font-family: 'Adigiana'; src: url('fonts/AdigianaUltra-vqo4.ttf'); }
@font-face { font-family: 'Garet'; src: url('fonts/Garet-Book.ttf'); font-weight: 400; }
@font-face { font-family: 'Garet'; src: url('fonts/Garet-Heavy.ttf'); font-weight: 700; }

/* ── BRAND TOKENS ────────────────────────────────── */
:root {
  --misty-cloud:    #FFFFFF;
  --vanilla-cream:  #FFE2A6;
  --cherry-milk:    #C0281F;
  --burnt-toffee:   #FFC536;
  --midnight-boba:  #000000;
  --toasted-tapioca:#430A08;

  /* Typography — swap Comfortaa → Adigiana, Nunito → Garet when fonts are ready */
  --font-heading: 'Adigiana', cursive;
  --font-body:    'Garet', sans-serif;

  /* Spacing */
  --nav-height: 72px;
  --section-pad: 80px;
  --container-max: 1200px;

  /* Radii */
  --pill: 999px;
  --radius: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(67,10,8,0.10);
  --shadow-md: 0 8px 32px rgba(67,10,8,0.15);
  --shadow-lg: 0 20px 60px rgba(67,10,8,0.20);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--midnight-boba);
  background: var(--misty-cloud);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  { font-size: 1rem; color: var(--midnight-boba); }

/* ── UTILITY ─────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: var(--section-pad) 0; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cherry-milk);
  color: var(--misty-cloud);
}
.btn-primary:hover {
  background: var(--burnt-toffee);
  color: var(--midnight-boba);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--toasted-tapioca);
  color: var(--misty-cloud);
}
.btn-secondary:hover {
  background: var(--burnt-toffee);
  color: var(--midnight-boba);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-toffee {
  background: var(--burnt-toffee);
  color: var(--midnight-boba);
}
.btn-toffee:hover {
  background: var(--cherry-milk);
  color: var(--misty-cloud);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-cream {
  background: var(--vanilla-cream);
  color: var(--toasted-tapioca);
}
.btn-cream:hover {
  background: var(--burnt-toffee);
  color: var(--midnight-boba);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--misty-cloud);
  border: 2px solid var(--misty-cloud);
}
.btn-outline:hover {
  background: var(--misty-cloud);
  color: var(--midnight-boba);
}

/* ── ANNOUNCEMENT STRIP ──────────────────────────── */
.announce-strip {
  background: var(--burnt-toffee);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── NAVIGATION ──────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--misty-cloud);
  border-bottom: 2px solid var(--vanilla-cream);
  height: var(--nav-height);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  max-height: none;
}
.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--toasted-tapioca);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--toasted-tapioca);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--toasted-tapioca);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.18s ease;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--vanilla-cream);
  color: var(--midnight-boba);
}
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight-boba);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--misty-cloud);
  padding: 16px 24px 24px;
  border-bottom: 2px solid var(--vanilla-cream);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--toasted-tapioca);
  padding: 14px 8px;
  border-bottom: 1px solid var(--vanilla-cream);
  transition: color 0.18s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--cherry-milk); }
.mobile-cta { margin-top: 16px; width: 100%; text-align: center; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--toasted-tapioca);
  color: var(--misty-cloud);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--misty-cloud);
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  color: var(--misty-cloud);
}
.footer-social a:hover {
  background: var(--burnt-toffee);
  color: var(--midnight-boba);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--burnt-toffee);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 8px;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--burnt-toffee); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

/* ── EMAIL SIGNUP STRIP ──────────────────────────── */
.email-signup {
  background: var(--vanilla-cream);
  padding: 64px 0;
  text-align: center;
}
.email-signup h2 {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--cherry-milk);
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.email-signup p {
  color: var(--midnight-boba);
  margin-bottom: 28px;
  font-size: 1rem;
}
.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border: 2px solid rgba(192,40,31,0.2);
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--misty-cloud);
  outline: none;
  transition: border-color 0.2s;
}
.email-form input:focus {
  border-color: var(--cherry-milk);
}

/* ── SOCIAL STRIP ────────────────────────────────── */
.social-strip {
  background: var(--vanilla-cream);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(192,40,31,0.1);
}
.social-strip h3 {
  font-family: var(--font-heading);
  color: var(--cherry-milk);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.social-icons a {
  width: 48px; height: 48px;
  background: var(--cherry-milk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--misty-cloud);
  font-size: 1.2rem;
  transition: all 0.2s;
}
.social-icons a:hover {
  background: var(--toasted-tapioca);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── LOCATION HOURS STRIP ────────────────────────── */
.location-strip {
  background: var(--vanilla-cream);
  padding: 40px 0;
  border-top: 1px solid rgba(192,40,31,0.08);
}
.location-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.location-item h4 {
  font-family: var(--font-heading);
  color: var(--burnt-toffee);
  font-size: 1rem;
  margin-bottom: 6px;
}
.location-item p, .location-item a {
  font-size: 0.9rem;
  color: var(--toasted-tapioca);
  font-weight: 600;
}

/* ── IMAGE PLACEHOLDER ───────────────────────────── */
.img-placeholder {
  width: 100%;
  background: var(--burnt-toffee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--toasted-tapioca);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  background: var(--burnt-toffee);
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  color: var(--misty-cloud);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--midnight-boba);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 600;
}

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-up { animation: fadeUp 0.7s ease both; }
.animate-up-1 { animation: fadeUp 0.7s 0.1s ease both; }
.animate-up-2 { animation: fadeUp 0.7s 0.2s ease both; }
.animate-up-3 { animation: fadeUp 0.7s 0.3s ease both; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  :root { --section-pad: 56px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  :root { --section-pad: 40px; }
}
