:root {
  --bg: #fff6fa;
  --bg-soft: #ffeef7;
  --bg-card: #ffffff;
  --accent: #ff8bb3;
  --accent-2: #ffcf6f;
  --accent-3: #8ed4ff;
  --text-main: #432a3d;
  --text-soft: #7a5b70;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --shadow-tiny: 0 6px 16px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: radial-gradient(circle at top, #ffe3f2 0, #fff6fa 50%, #ffeef7 100%);
  color: var(--text-main);
}

/* DARK MODE VARIABLE OVERRIDES */
body.dark-mode {
  background: radial-gradient(circle at top, #2b1635 0, #1a0f24 50%, #110919 100%);
  --bg: #1a0f24;
  --bg-soft: #22142b;
  --bg-card: #2a1832;
  --accent: #ff9ad5;
  --accent-2: #ffd27e;
  --accent-3: #8ed4ff;
  --text-main: #fceeff;
  --text-soft: #c7a9d0;
}

/* Links & general */
a {
  color: inherit;
  text-decoration: none;
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(255, 245, 252, 0.98),
    rgba(255, 245, 252, 0.92),
    transparent
  );
  border-bottom: 1px solid rgba(255, 182, 212, 0.4);
}

body.dark-mode .nav {
  background: linear-gradient(
    to bottom,
    rgba(21, 10, 31, 0.98),
    rgba(21, 10, 31, 0.92),
    transparent
  );
  border-bottom-color: rgba(159, 116, 191, 0.55);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-moon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffe29f, #ffa99f 50%, #ff719a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-tiny);
}

body.dark-mode .logo-moon {
  background: radial-gradient(circle at 30% 20%, #ffb4e0, #f98ac2 50%, #d366ff);
}

.moon-face {
  font-size: 1.3rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: background var(--transition), color var(--transition),
    transform var(--transition), box-shadow var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: var(--shadow-tiny);
  transform: translateY(-1px);
}

body.dark-mode .nav-links a.active,
body.dark-mode .nav-links a:hover {
  background: #2a1832;
}

/* CTA */
.nav-cta {
  padding: 7px 14px;
  font-size: 0.84rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9abc, #ffc98f);
  color: #4b2332;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255, 145, 179, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 145, 179, 0.6);
}

/* Night mode toggle button */
.mode-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 182, 212, 0.8);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-tiny);
  padding: 0;
}

body.dark-mode .mode-toggle {
  border-color: rgba(159, 116, 191, 0.8);
  background: #2a1832;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
}

/* LAYOUT */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 60px;
}

/* HERO (HOME) */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  padding: 40px 0 20px;
  align-items: center;
}

/* Section separation – more spacing & subtle divider */

.section {
  padding: 60px 0 30px;
  margin-top: 24px;
  border-top: 1px dashed rgba(214, 160, 187, 0.7);
}

.section-divider {
  text-align: center;
}

.section:first-of-type {
  border-top: none;
  margin-top: 0;
}

/* Alternate background section */
.section-alt {
  background: radial-gradient(circle at top left, #fff9ff 0, #fff6fa 35%, #ffeef7 100%);
  border-radius: 22px;
  padding-inline: 18px;
}

body.dark-mode .section-alt {
  background: radial-gradient(circle at top left, #2b1635 0, #1a0f24 35%, #110919 100%);
}

/* HEADINGS */

.section-header {
  max-width: 520px;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c26080;
  margin-bottom: 4px;
}

body.dark-mode .section-kicker {
  color: #ffb4e0;
}

.section-title {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 1.8rem;
  margin: 4px 0 8px;
}

.section-subtitle {
  font-size: 0.94rem;
  color: var(--text-soft);
}

/* HERO TEXT & BUTTONS */

.hero-title {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 8px 0 12px;
}

.hero-text {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8bb3, #ffcf6f);
  color: #412536;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255, 149, 188, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 149, 188, 0.6);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px dashed rgba(141, 116, 136, 0.6);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition),
    border-color var(--transition);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: rgba(141, 116, 136, 0.9);
  transform: translateY(-1px);
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-tiny);
  font-size: 0.8rem;
  color: var(--text-soft);
}

body.dark-mode .hero-badge {
  background: #2a1832;
}

.hero-badge span {
  font-size: 1rem;
}

/* HERO ILLUSTRATION */

.hero-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cup-card {
  position: relative;
  width: 260px;
  height: 230px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffe6f6, #ffe8c7);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.dark-mode .cup-card {
  background: linear-gradient(135deg, #43204f, #2b1635);
}

.cup-body {
  position: relative;
  width: 130px;
  height: 90px;
  border-radius: 30px 30px 24px 24px;
  background: #fff;
  border: 3px solid #ffb0c8;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .cup-body {
  background: #2a1832;
  border-color: #ffb4e0;
}

.cup-face {
  font-size: 1rem;
  color: #ff8bb3;
}

.cup-saucer {
  position: absolute;
  bottom: 50px;
  width: 160px;
  height: 18px;
  border-radius: 999px;
  background: #fff7fd;
  border: 2px solid #fdc9da;
}

body.dark-mode .cup-saucer {
  background: #2a1832;
  border-color: #ffb4e0;
}

.cup-shadow {
  position: absolute;
  bottom: 40px;
  width: 150px;
  height: 10px;
  border-radius: 999px;
  background: rgba(206, 146, 160, 0.35);
}

/* Steam */
.cup-steam {
  position: absolute;
  top: 48px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 60%);
  filter: blur(4px);
  animation: floatSteam 3.5s ease-in-out infinite;
}

@keyframes floatSteam {
  0% { transform: translateY(4px); opacity: 0.7; }
  50% { transform: translateY(-4px); opacity: 1; }
  100% { transform: translateY(4px); opacity: 0.7; }
}

/* Floating doodles */
.floating-doodle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.8;
  animation: floatDoodle 4s ease-in-out infinite;
}

.doodle-1 { top: 20px; left: 22px; animation-delay: 0s; }
.doodle-2 { top: 14px; right: 22px; animation-delay: 0.4s; }
.doodle-3 { bottom: 20px; right: 34px; animation-delay: 0.8s; }

@keyframes floatDoodle {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.hero-tag {
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  box-shadow: var(--shadow-tiny);
}

body.dark-mode .hero-tag {
  background: #2a1832;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffeef7;
  color: #c26080;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Card grid (home menu preview etc.) */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

/* Menu cards preview */

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.menu-card h3 {
  margin: 4px 0 6px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 1.1rem;
}

.menu-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.menu-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff6fe;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

body.dark-mode .menu-icon {
  background: #40224d;
}

.menu-tag {
  display: inline-flex;
  margin-top: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #fff2f7;
  color: #c26080;
}

.menu-tag-pink {
  background: #ffe1f2;
}

.menu-tag-gold {
  background: #fff4d5;
  color: #b18125;
}

/* ABOUT section */

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: flex-start;
}

.about-list {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.about-list li {
  margin-bottom: 5px;
}

.about-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-panel-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
}

.about-panel-card h3 {
  margin: 0 0 6px;
  font-family: "Baloo 2", system-ui, sans-serif;
}

.about-panel-card p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.about-pill {
  font-size: 0.78rem;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff2f7;
  color: #c26080;
}

/* About doodles */

.about-panel-doodles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.about-doodle-card {
  background: #fffafd;
  border-radius: 16px;
  padding: 10px 10px;
  box-shadow: var(--shadow-tiny);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.dark-mode .about-doodle-card {
  background: #2a1832;
}

.doodle-emoji {
  font-size: 1.4rem;
}

/* VISIT section */

.section-visit {
  padding-bottom: 40px;
}

.visit-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.visit-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-soft);
  font-size: 0.94rem;
}

.visit-card h3 {
  margin: 0 0 6px;
  font-family: "Baloo 2", system-ui, sans-serif;
}

.visit-note {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-top: 6px;
}

.visit-hours {
  list-style: none;
  padding: 0;
  margin: 6px 0;
  font-size: 0.9rem;
}

.visit-hours li {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
}

.visit-contact {
  margin: 6px 0 10px;
  font-size: 0.9rem;
}

/* MENU PAGE STYLES */

.menu-body {
  background: radial-gradient(circle at top, #ffe3f2 0, #fff6fa 50%, #ffeef7 100%);
}

body.dark-mode.menu-body {
  background: radial-gradient(circle at top, #2b1635 0, #1a0f24 50%, #110919 100%);
}

.menu-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 60px;
}

.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
  gap: 30px;
  padding: 40px 0 10px;
  align-items: center;
}

.menu-hero-text .section-title {
  font-size: 2.1rem;
}

.menu-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.menu-hero-art {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.menu-hero-badge {
  background: #ffffff;
  border-radius: 18px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
}

body.dark-mode .menu-hero-badge {
  background: #2a1832;
}

.badge-emoji {
  font-size: 1.5rem;
}

.badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c26080;
  margin: 0;
}

body.dark-mode .badge-label {
  color: #ffb4e0;
}

.badge-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.menu-hero-doodles {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
}

/* Seasonal specials strip */

.section-seasonal {
  background: linear-gradient(135deg, #ffe7f4, #fff4d8);
  border-radius: 22px;
  padding-inline: 18px;
  box-shadow: var(--shadow-soft);
}

body.dark-mode .section-seasonal {
  background: linear-gradient(135deg, #3a1c4b, #49305d);
}

.section-seasonal .section-header {
  max-width: 540px;
}

.seasonal-strip {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.seasonal-strip::-webkit-scrollbar {
  height: 6px;
}

.seasonal-strip::-webkit-scrollbar-thumb {
  background: rgba(207, 150, 176, 0.5);
  border-radius: 999px;
}

.seasonal-card {
  min-width: 210px;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 12px 10px;
  box-shadow: var(--shadow-tiny);
  font-size: 0.9rem;
}

body.dark-mode .seasonal-card {
  background: #2a1832;
}

.seasonal-card h3 {
  margin: 4px 0 4px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 1rem;
}

.seasonal-card p {
  margin: 0 0 8px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.seasonal-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5fb;
  margin-bottom: 4px;
  font-size: 1.3rem;
}

body.dark-mode .seasonal-icon {
  background: #40224d;
}

.seasonal-tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: #fff2f7;
  color: #c26080;
}

.seasonal-tag-blue {
  background: #e5f4ff;
  color: #357199;
}

.seasonal-tag-pink {
  background: #ffe1f2;
}

/* Category jump */

.menu-category-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.menu-filter-label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.menu-chip-group .chip {
  cursor: pointer;
}

/* Icons next to section titles */

.section-title-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-title-with-icon .section-icon {
  font-size: 1.3rem;
}

/* Menu list layout */

.section-menu-block {
  margin-top: 32px;
}

.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.menu-list-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow-tiny);
}

body.dark-mode .menu-item {
  background: rgba(42, 24, 50, 0.98);
}

.menu-item-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.menu-item h3 {
  margin: 0;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 1rem;
}

.menu-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #c26080;
}

body.dark-mode .menu-price {
  color: #ffb4e0;
}

.menu-item p {
  margin: 4px 0 4px;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.menu-item-tags {
  margin-top: 2px;
}

.menu-footnote {
  font-size: 0.86rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
}

/* Floating Order Now button */

.order-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8bb3, #ffcf6f);
  color: #412536;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 16px 32px rgba(255, 149, 188, 0.7);
  z-index: 60;
}

body.dark-mode .order-fab {
  background: linear-gradient(135deg, #ff9ad5, #ffd27e);
  color: #1a0f24;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 182, 212, 0.6);
  padding: 14px 18px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero-illustration {
    order: -1;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .menu-hero {
    grid-template-columns: 1fr;
  }

  .menu-hero-art {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding-inline: 14px;
    gap: 8px;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    right: 14px;
    background: #fff8fb;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  body.dark-mode .nav-links {
    background: #1b0f26;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 182, 212, 0.7);
    align-items: center;
    justify-content: center;
    background: #ffffff;
    cursor: pointer;
  }

  body.dark-mode .nav-toggle {
    background: #2a1832;
    border-color: rgba(159, 116, 191, 0.7);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: #ff8bb3;
    position: relative;
  }

  .nav-toggle span::before {
    position: absolute;
    top: -4px;
  }

  .nav-toggle span::after {
    position: absolute;
    top: 4px;
  }

  main,
  .menu-page {
    padding-inline: 16px;
  }

  .order-fab {
    bottom: 72px;
    right: 16px;
  }
}
