/* RESET & ROOT */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f0ede0;
  --cream-light: #f5f2e8;
  --white: #ffffff;
  --ink: #2d3047;
  --ink-light: #6b6b66;
  --ink-muted: #9e9e98;
  --accent: #d4603a;
  --accent-hover: #c04e28;
  --sage: #81b29a;
  --sage-light: #b8ccb4;
  --sage-dark: #7a9e74;
  --border: #e2ddd0;
  --card-bg: #faf8f0;
  --sidebar-bg: #2d3047;
  --radius: 16px;
  --radius-sm: 8px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  min-height: 100vh;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
}

.container,
.footer {
  margin-left: 220px;
}

/* SIDEBAR */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background-color: var(--sidebar-bg);
  color: #fff;
  padding: 28px 20px;
  overflow-y: auto;
  z-index: 100;
}

#sidebar h1 {
  font-size: 2em;
  font-family: "Lora", Georgia, serif;
  margin-bottom: 4px;
  letter-spacing: 1px;
  color: #fff;
}

#sidebar span.o {
  color: var(--accent);
}

#sidebar .subtitle {
  font-size: 0.78em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
  line-height: 1.4;
}

hr {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 18px 0;
}

#sidebar ul li {
  margin: 4px 0;
}

#sidebar a {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  transition: all 0.2s ease;
}

#sidebar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 14px;
}

#sidebar h3 {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  font-weight: 600;
}

#sidebar p {
  font-size: 0.82em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
  line-height: 1.5;
}

/* HOME */
.home-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0ede0 0%, #f5f0d8 50%, #ede8d0 100%);
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}

.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
}

.home-text {
  max-width: 520px;
  z-index: 2;
}

#home-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sage);
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.home-title {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  font-family: "Lora", Georgia, serif;
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.home-description {
  font-size: 1em;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 36px;
}

.home-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95em;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.primary-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 96, 58, 0.35);
}

.secondary-btn {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.secondary-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

/* Circles */
.home-visual {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 30%;
  top: 14%;
  left: 16%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(6px);
}

.circle-large {
  width: 240px;
  height: 240px;
  top: 0;
  right: 30px;
  background: radial-gradient(circle at 32% 28%, #f4a8a8, #e87878 55%, #d06060);
  box-shadow:
    inset -18px -18px 36px rgba(0, 0, 0, 0.12),
    inset 10px 10px 24px rgba(255, 255, 255, 0.2);
}

.circle-medium {
  width: 185px;
  height: 185px;
  top: 130px;
  right: 200px;
  background: radial-gradient(circle at 32% 28%, #faf6ee, #f0e8d8 55%, #ddd0bc);
  box-shadow:
    inset -14px -14px 28px rgba(0, 0, 0, 0.08),
    inset 10px 10px 20px rgba(255, 255, 255, 0.35);
}

.circle-small {
  width: 200px;
  height: 200px;
  top: 160px;
  right: 20px;
  background: radial-gradient(circle at 32% 28%, #a8d4c0, #81b29a 55%, #5f8f7a);
  box-shadow:
    inset -16px -16px 32px rgba(0, 0, 0, 0.12),
    inset 10px 10px 22px rgba(255, 255, 255, 0.18);
}

/* SECTION SHARED */
.section {
  padding: 90px 80px;
  min-height: 100vh;
  background: var(--cream-light);
}

.section--alt {
  background: var(--white);
}

/* Section headers shared style */
.section-subtitle,
.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title,
.section__title {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc,
.section__desc {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 460px;
}

/* FLAVORS */
.flavors-section {
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--white);
}

.section__header {
  max-width: 600px;
  margin: 0 0 52px;
  padding: 0 80px;
}

/* Marquee */
.marquee {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll-left 38s linear infinite;
}

.marquee__track--reverse {
  animation: scroll-right 42s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* Flavor Card */
.flavor-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 18px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 300px;
  flex-shrink: 0;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  cursor: default;
}

.flavor-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.flavor-card__swatch {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow:
    inset 0 -4px 10px rgba(0, 0, 0, 0.14),
    inset 4px 4px 8px rgba(255, 255, 255, 0.3);
}

.flavor-card__info {
  flex: 1;
  min-width: 0;
}

.flavor-card__type {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 3px;
}

.flavor-card__name {
  font-family: "Lora", Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flavor-card__desc {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flavor-card__tag {
  position: absolute;
  top: -1px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}

/* BUILD YOUR OWN */
#build,
.build-section {
  padding: 90px 80px;
  background: var(--cream-light);
}

#build > p.section-subtitle,
.build-section .section-subtitle {
  color: var(--accent);
}

.build-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.build-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.build-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: box-shadow 0.2s;
}

.build-step:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.build-step__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.build-step__text h4 {
  font-family: "Lora", Georgia, serif;
  font-size: 1em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.build-step__text p {
  font-size: 0.88em;
  color: var(--ink-light);
  line-height: 1.6;
}

/* Build right panel */
.build-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.build-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.build-bowl {
  position: relative;
  width: 180px;
  height: 140px;
  margin: 0 auto 24px;
}

.build-bowl svg {
  width: 100%;
  height: 100%;
}

.build-card h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.1em;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 600;
}

.build-card .price {
  font-family: "Lora", Georgia, serif;
  font-size: 2.2em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.build-card .price-note {
  font-size: 0.85em;
  color: var(--ink-muted);
}

/* CATERING */
.catering-section {
  background: var(--white);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(30, 30, 30, 0.75);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 22px 22px 28px;
}

.card-body h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.card-body > p {
  font-size: 0.88em;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.features span {
  font-size: 11px;
  color: var(--ink);
  background: rgba(45, 48, 71, 0.08);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-weight: 500;
}

.card-body .price {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--accent);
}

.card-body .price span {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--ink-muted);
  background: none;
  border: none;
  padding: 0;
}

/* SEASONAL */
.seasonal-section {
  background: var(--cream-light);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 36px 0 32px;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.88em;
  color: var(--ink-light);
  font-weight: 500;
  transition: all 0.2s;
}

.tab .tab-icon {
  font-size: 1.4em;
}

.tab:hover {
  background: var(--white);
  color: var(--ink);
}

.tab.active {
  background: #e07a8a;
  border-color: #e07a8a;
  color: #fff;
}

.season-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  height: 480px;
}

.season-image {
  position: relative;
  overflow: hidden;
}
#season-content {
  transition: opacity 0.3s ease;
}

.fade {
  opacity: 0;
}

.season-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.season-image-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 30, 0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.season-details {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.small-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.season-details h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.8em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.season-details > p {
  font-size: 0.92em;
  color: var(--ink-light);
  line-height: 1.7;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
}

.season-details .btn {
  width: fit-content;
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
}

.season-details .btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* REWARDS */
.rewards-section {
  background: var(--cream-light);
}

.rewards-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.rewards-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.reward-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.reward-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.reward-item p {
  font-size: 0.9em;
  color: var(--ink-light);
  line-height: 1.6;
  padding-top: 3px;
}

.reward-item p strong {
  color: var(--ink);
}

.rewards-text .btn {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  padding: 13px 28px;
}

.rewards-text .btn:hover {
  background: #1a1c30;
  transform: translateY(-2px);
}

/* Stamp Card */
.stamp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stamp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stamp-card-header h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.05em;
  font-weight: 600;
  color: var(--ink);
}

.stamp-count {
  font-size: 0.88em;
  color: var(--ink-muted);
  font-weight: 500;
}

.stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.stamp {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stamp svg {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

.stamp.milestone {
  background: var(--sage);
}

.stamp.empty {
  background: transparent;
  border: 2px dashed var(--border);
}

.stamp.empty svg {
  opacity: 0.3;
}

.stamp.free {
  background: transparent;
  border: 2px dashed var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.stamp-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 16px;
}

/* FOOTER */
.footer {
  background: var(--sidebar-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 80px 28px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-about h3 span {
  color: var(--accent);
}

.footer-about p {
  font-size: 0.88em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 240px;
}

.footer-links h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-links ul li {
  font-size: 0.88em;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-links ul li.highlight-link a {
  color: var(--accent);
}

.footer-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.copyright {
  text-align: center;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.35);
}

.copyright a {
  color: var(--accent);
}
