:root {
  --pink: #ef3f88;
  --pink-dark: #c8246a;
  --pink-soft: #ffe2ef;
  --yellow: #ffd84d;
  --yellow-soft: #fff6c9;
  --cream: #fffaf1;
  --brown: #5b3426;
  --green: #7caf59;
  --white: #ffffff;
  --text: #3f2a24;
  --muted: #735f58;
  --shadow: 0 18px 45px rgba(91, 52, 38, 0.13);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91, 52, 38, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--pink-dark);
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--pink);
  color: white;
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  min-height: 760px;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 100px);
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 216, 77, 0.45), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(239, 63, 136, 0.2), transparent 30%),
    linear-gradient(135deg, #fffaf1 0%, #fff1d2 55%, #ffe2ef 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.22;
}

.hero::before {
  width: 180px;
  height: 180px;
  right: 45%;
  top: -70px;
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -120px;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  letter-spacing: -0.04em;
}

h1 span {
  color: var(--pink);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-text {
  max-width: 640px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(239, 63, 136, 0.28);
}

.button.secondary {
  background: var(--white);
  color: var(--pink-dark);
  box-shadow: var(--shadow);
}

.hero-slogan {
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brown);
}

.logo-card {
  max-width: 610px;
  margin-inline: auto;
  padding: clamp(12px, 2vw, 22px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.logo-card img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.section {
  padding: clamp(80px, 9vw, 135px) clamp(20px, 7vw, 100px);
}

.story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 7vw, 110px);
  background: var(--white);
}

.story-copy {
  font-size: 1.15rem;
  color: var(--muted);
}

.menu-section {
  background:
    linear-gradient(rgba(255, 246, 201, 0.72), rgba(255, 246, 201, 0.72)),
    radial-gradient(circle at 20% 20%, white 0 3px, transparent 4px);
  background-size: auto, 34px 34px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.menu-card.featured {
  border-color: var(--pink);
  transform: translateY(-10px);
}

.menu-card.custom {
  background: var(--pink);
  color: var(--white);
}

.menu-icon {
  font-size: 2.8rem;
}

.menu-card p {
  color: var(--muted);
}

.menu-card.custom p {
  color: rgba(255,255,255,0.88);
}

.menu-card span,
.menu-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
}

.menu-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-note {
  max-width: 800px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--pink);
  color: var(--white);
}

.mission-card {
  position: sticky;
  top: 120px;
}

.mission .section-tag {
  color: var(--yellow-soft);
}

blockquote {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
}

.values {
  display: grid;
  gap: 18px;
}

.values article {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.values span {
  color: var(--yellow);
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  font-weight: 900;
}

.values h3 {
  margin: 8px 0;
}

.values p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(35px, 7vw, 95px);
  background: var(--white);
}

.booking-copy > p:not(.section-tag) {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-list {
  margin-top: 30px;
  padding: 22px;
  border-left: 6px solid var(--yellow);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--yellow-soft);
}

.contact-list p {
  margin: 6px 0;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid rgba(91, 52, 38, 0.12);
  border-radius: 14px;
  padding: 14px 15px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(239, 63, 136, 0.18);
  border-color: var(--pink);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.social-strip {
  padding: 70px 20px;
  text-align: center;
  background: var(--yellow);
}

.social-strip p,
.social-strip h2,
.social-strip span {
  margin: 0;
}

.social-strip h2 {
  color: var(--pink-dark);
  font-size: clamp(2.4rem, 5vw, 5rem);
}

footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 40px clamp(20px, 7vw, 100px);
  background: var(--brown);
  color: var(--white);
}

footer p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.76);
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: var(--cream);
    border-bottom: 1px solid rgba(91, 52, 38, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-text,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    order: -1;
  }

  .logo-card {
    max-width: 430px;
  }

  .story,
  .mission,
  .booking {
    grid-template-columns: 1fr;
  }

  .mission-card {
    position: static;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card.featured {
    transform: none;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--pink-dark);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(91, 52, 38, 0.12);
}

.social-links a:hover {
  transform: translateY(-2px);
}


/* Version 2.1 additions */
.payments-section {
  background: var(--white);
}

.payment-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.payment-card,
.qr-card,
.update-card,
.social-gallery-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.payment-card {
  padding: 28px;
  border: 2px solid var(--pink-soft);
}

.payment-card p {
  color: var(--muted);
}

.platform-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  font-size: 2rem;
  font-weight: 900;
}

.cashapp-icon {
  background: #00d632;
  color: white;
}

.tap-icon {
  background: var(--yellow-soft);
  color: var(--brown);
}

.tap-icon svg {
  width: 42px;
  height: 42px;
}

.cash-icon {
  background: var(--pink-soft);
}

.qr-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 28px;
  background: linear-gradient(145deg, var(--yellow-soft), var(--pink-soft));
}

.qr-card img {
  width: min(250px, 100%);
  margin: 0 auto 18px;
  padding: 12px;
  border-radius: 20px;
  background: white;
}

.qr-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.serving-section {
  background: linear-gradient(135deg, #fff7d6, #ffe8f2);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.area-chips span {
  padding: 13px 20px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 10px 26px rgba(91, 52, 38, 0.1);
  font-weight: 900;
}

.whats-new-section {
  background: var(--cream);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.update-card {
  padding: 30px;
  border-top: 7px solid var(--pink);
}

.update-card:nth-child(2) {
  border-top-color: var(--yellow);
}

.update-card:nth-child(3) {
  border-top-color: var(--green);
}

.update-card p {
  color: var(--muted);
}

.update-icon {
  font-size: 2.5rem;
}

.gallery-section {
  background: white;
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.social-gallery-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-gallery-card:hover {
  transform: translateY(-4px);
}

.social-gallery-card p {
  margin: 0 0 7px;
  color: var(--muted);
}

.social-gallery-card span {
  font-weight: 900;
  color: var(--pink-dark);
}

.social-logo {
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
}

.social-logo svg {
  width: 48px;
  height: 48px;
}

.tiktok-logo {
  color: white;
  background: #111;
}

.instagram-logo {
  color: white;
  background: linear-gradient(145deg, #833ab4, #fd1d1d, #fcb045);
}

.logo-links a {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.logo-links svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 980px) {
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .payment-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .qr-card {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .social-gallery {
    grid-template-columns: 1fr;
  }

  .social-gallery-card {
    align-items: flex-start;
    padding: 24px;
  }

  .social-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .social-logo svg {
    width: 38px;
    height: 38px;
  }
}
