

* {
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #372819;
  font-family: 'Poppins', sans-serif;
  background: #fff7ea;
}

body.menu-page {
  position: relative;
  background: radial-gradient(circle at top left, #fff9d8 0%, #fff2dc 28%, #f7e6c8 52%, #fff7ea 100%);
  overflow-x: hidden;
}

body.menu-page::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -20%;
  width: 180%;
  height: 420px;
  background: radial-gradient(circle at 22% 30%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 48%),
    linear-gradient(180deg, rgba(255,238,165,0.95) 0%, rgba(255,255,255,0.16) 100%);
  clip-path: polygon(0 58%, 14% 48%, 32% 54%, 50% 40%, 66% 46%, 81% 38%, 100% 45%, 100% 100%, 0 100%);
  z-index: -1;
}



h1,
h2,
h3,
p {
  font-family:'League Spartan', sans-serif;
  font-weight:500px;
}

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

body,
section,
div,
header,
nav,
footer,
a,
button,
h1,
h2,
h3,
p,
.hero-card,
.menu-card,
.flavor-card,
.loc-card,
.loyalty-card,
.site-header,
.site-nav,
.dropdown-menu,
.scroll-top-btn,
.dark-toggle {transition:background-color 0.45s ease,background 0.45s ease,color 0.45s ease,border-color 0.45s ease,box-shadow 0.45s ease;
}


.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  width: min(1120px, calc(100% - 32px));

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.92);

  box-shadow: 0 12px 30px rgba(66, 37, 12, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 1024px) {

  .site-header {
    width: calc(100% - 24px);

    padding: 12px 16px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 15px;
  }
}

.dark-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 10000;
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  cursor: pointer;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.16),
    inset 0 1px 1px rgba(255,255,255,0.28);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  background: rgba(120, 170, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.14),
    inset 0 1px 1px rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(120, 170, 255, 0.32);
}

body:not(.dark-mode) .scroll-top-btn {
  color: #06449d;
}

body.dark-mode .scroll-top-btn {
  color: white;
}

body.dark-mode .flavor-section h1,
body.dark-mode .flavor-section h2,
body.dark-mode .flavor-section h3,
body.dark-mode .flavor-section .section-heading h2 {
  color: #ffffff;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.dark-toggle:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255,255,255,0.22);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.22),
    inset 0 1px 1px rgba(255,255,255,0.35);
}

body.dark-mode {
  background: #101827;
  color: #ffffff;
}

body.dark-mode.menu-page {
  background: #101827;
}

body.dark-mode .site-header {
  background: rgba(20, 28, 44, 0.95);
}

body.dark-mode .site-nav a,
body.dark-mode .brand,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3 {
  color: #ffffff;
}

body.dark-mode p,
body.dark-mode .lead,
body.dark-mode .description {
  color: #d1d5db;
}

body.dark-mode .hero-card,
body.dark-mode .menu-card,
body.dark-mode .loc-card,
body.dark-mode .loyalty-card,
body.dark-mode .flavor-card {
  background: #1f2937;
  color: #ffffff;
}

body.dark-mode .slider,
body.dark-mode .flavor-section,
body.dark-mode .experience-section {
  background: #101827;
}

body.dark-mode .menu-section {
  background: #111827;
}

body.dark-mode .menu-section .section-heading h2 {
  color: #ffffff;
  text-shadow:
    -3px -3px 0 #111827,
     3px -3px 0 #111827,
    -3px  3px 0 #111827,
     3px  3px 0 #111827,
     0px  8px 18px rgba(0,0,0,0.35);
}

body.dark-mode .dropdown-menu {
  background: rgba(20, 28, 44, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
}

body.dark-mode .dropdown-menu a {
  color: #092eff;
}

body.dark-mode .dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #00eeff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #06449d;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: #372819;
  font-weight: 700;
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 12px 0;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.dropdown-menu a {
  padding: 12px 18px;
  color: #372819;
  font-weight: 700;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #fff4df;
  color: #00eeff;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #00eeff;
}

.menu-button {
  display: none;
  border: 0;
  background: #266afd;
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 22px;
  cursor: pointer;
}

main {
  overflow: hidden;
}

section {
  padding: 90px 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 86vh;
  width: min(1120px, 100%);
  margin: 0 auto;
}
.hero h1{
  color: #ff6b00;
}

.eyebrow {
  margin: 0 0 14px;
  color: #0400ff;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 760px;
  color: #2c2017;
  font-size: clamp(44px, 8vw, 90px);
  line-height: 0.9;
  text-transform: uppercase;
}

.lead,
.hero-card p,
.cake-copy p,
.loc-card p,
.menu-card p {
  color: #6a5543;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  background: #0041f3;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.25);
}

.secondary {
  background: #ffffff;
  color: #06449d;
  border: 2px solid #06449d;
}

.hero-card {
  position: relative;
  min-height: 590px;
  padding: 37px;
  border-radius: 48px;
  text-align: center;
  background: radial-gradient( #6eabce 39%, #fdfdff 100%);
  box-shadow: 0 30px 70px rgba(83, 45, 9, 0.16);
  overflow: hidden;
}

.hero-card img {
  width: min(320px, 80%);
  max-height: 360px;
  object-fit: contain;
  margin: 52px auto 16px;
  filter: drop-shadow(0 22px 20px rgba(0, 38, 255, 0.25));
  transition:
  opacity 0.35s ease,
  transform 0.35s ease;
}

.hero-card h2 {
  margin: 0;
  background: linear-gradient(90deg, #0400fc, #091114);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(26px, 4vw, 46px);
  text-transform: uppercase;
}




.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.cake-copy h2,
.loc-card h2 {
  margin: 0;
  color: #2c2017;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}


.menu-section {
  position: relative;
  min-height: 900px;
  padding: 120px 24px;
  overflow: hidden;
  background: #8EB6F2;
}

.wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.wave-middle,
.wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 600px;
  will-change: transform;
  backface-visibility: hidden;
}

.wave-middle {
  top: -80px;
  animation: floatWave2 1s ease-in-out infinite alternate;
}

.wave-bottom {
  bottom: -90px;
  animation: floatWave3 2s ease-in-out infinite alternate;
}

.wave-middle svg,
.wave-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-middle path {
  fill: #2d96ec;
  opacity: 0.9;
}

.wave-bottom path {
  fill: #1e46c9;
  opacity: 0.95;
}

@keyframes floatWave1 {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-70px, 20px, 0);
  }
}

@keyframes floatWave2 {
  from {
    transform: translate3d(-60px, 0, 0);
  }

  to {
    transform: translate3d(60px, -20px, 0);
  }
}

@keyframes floatWave3 {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(80px, 18px, 0);
  }
}

.section-heading,
.menu-grid {
  position: relative;
  z-index: 2;
}

.section-heading h2 {
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 900;

  color: #2b170d;

  text-transform: uppercase;

  text-shadow:
    -3px -3px 0 #fff,
     3px -3px 0 #fff,
    -3px  3px 0 #fff,
     3px  3px 0 #fff,
     0px  8px 18px rgba(0,0,0,0.18);

  letter-spacing: -2px;

  margin: 18px auto 28px;

  max-width: 1200px;
}

.eyebrow {
  color: #00aeff;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.describe-text {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 18px 24px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255,255,255,0.5);
  border-radius: 22px;
  color: #003e98;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.6;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.how-to-cup {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}

.how-to-cup img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}


.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading .eyebrow {
  margin: 0 0 14px;
  color: #ff6b00;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 auto 24px;
  color: #2c2017;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.12;
  text-transform: uppercase;
  text-align: center;
  max-width: 1000px;
  letter-spacing: -1px;
}

.slider {
  cursor: grab;
  touch-action: pan-y;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.menu-card {
  padding: 28px;
  border-radius: 34px;
  text-align: center;
}

.menu-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.menu-card h3 {
  margin: 18px 0 8px;
  color: #06449d;
  font-size: 25px;
}

.menu-card p {
  color: #6a5543;
  line-height: 1.7;
}

@media (max-width: 850px) {
  .menu-section {
    padding: 90px 16px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
  .wave-top,
  .wave-middle,
  .wave-bottom {
    height: 280px;
  }
}


.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.menu-card {
  padding: 24px;
  border-radius: 34px;
  background: #fff7ea;
  box-shadow: 0 18px 45px rgba(62, 33, 10, 0.10);
}

.menu-card img {
  height: 280px;
  width: 100%;
  object-fit: contain;
}

.menu-card h3 {
  margin: 18px 0 8px;
  color: #06449d;
  font-size: 25px;
}

  body:not(.dark-mode) .dropdown-menu {
    border: 1.5px solid rgba(0, 68, 157, 0.14);
    border-radius: 22px;
    padding: 14px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body:not(.dark-mode) .dropdown-menu a {
    border: none;
    background: transparent;
    margin-bottom: 6px;
    color: #372819;
  }

  body:not(.dark-mode) .dropdown-menu a:hover {
    background: rgba(0, 217, 255, 0.08);
    border-radius: 14px;
    color: #00cfff;
  }


.feature-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.menu-showcase {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  margin-bottom: 80px;
}

.menu-row:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.menu-row .menu-text {
  max-width: 560px;
  padding: 36px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg, #00d9ff9c, #ff460281);
  box-shadow: 0 30px 60px rgba(60, 32, 12, 0.14);
}

.menu-row .menu-text h1,
.menu-row .menu-text h2 {
  margin: 0 0 18px;
  color: #ff6600;
  line-height: 1.05;
}

.menu-row .menu-text h1 {
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.08em;
}

.menu-row .menu-text h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  text-transform: uppercase;
  color: #d86f19;
}

.menu-row .menu-text p {
  margin: 0;
  color: #5a4632;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.8;
}

.menu-row .image-design {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.menu-row .image-design::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.7;
  transform: scale(0.95);
}

.menu-row.smoothie .image-design::before {
  background: radial-gradient(circle at top, rgba(255, 198, 40, 0.32), transparent 58%);
}

.menu-row.bowls .image-design::before {
  background: radial-gradient(circle at top right, rgba(0, 167, 255, 0.28), transparent 52%);
}

.menu-row.cakes .image-design::before {
  background: radial-gradient(circle at top left, rgba(252, 207, 58, 0.24), transparent 52%);
}

.menu-row .image-design img {
  width: min(460px, 100%);
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px);
}

@media (max-width: 980px) {
  .menu-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .menu-row .menu-text {
    padding: 28px 24px;
  }
}

@media (max-width: 680px) {
  .menu-row .menu-text h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .menu-row .menu-text h2 {
    font-size: clamp(24px, 5vw, 34px);
  }

  .menu-row .image-design {
    min-height: auto;
  }
}

.cake-copy {
  position: relative;
  z-index: 1;
}

.cake-frame {
  min-height: 560px;
  border-radius: 46px;
  background: #e9f1d7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(62, 33, 10, 0.12);
}

.cake-frame img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 25px 20px rgba(62, 33, 10, 0.22));
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.experience-section {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

.experience-section h2 {
  margin: 0;
  color: #4b2e20;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
}

.experience-section > p {
  color: #6a5543;
  font-size: 18px;
  margin: 14px 0 42px;
}

.auto-scroll {
  width: 100%;
  overflow: hidden;
}

.scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollLeft 24s linear infinite;
}

.post-card {
  position: relative;
  width: 320px;
  flex: 0 0 auto;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.post-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #ff0000,
    #ff9900,
    #ffee00,
    #33ff00,
    #00ffee,
    #0066ff,
    #aa00ff,
    #ff0088,
    #ff0000
  );
  background-size: 300% 100%;
  animation: slideRainbow 3s linear infinite;
  z-index: -2;
}

.post-card::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 17px;
  background: white;
  z-index: -1;
}


@keyframes slideRainbow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 300% 50%;
  }
}

.post-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.post-card h3 {
  margin: 18px 0 10px;
  color: #6a5543;
  font-size: 22px;
  font-weight: 800;
}

.post-card p {
  min-height: 44px;
  color: #6a5543;
  font-size: 15px;
  line-height: 1.5;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .post-card {
    width: 260px;
  }

  .post-card img {
    height: 210px;
  }
}

.follow-us {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.follow-us h2 {
  margin: 0;
  color: #3b2418;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(38, 0, 255, 0.377);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-8px) scale(1.08);
}

.social-icons img {
  width: 34px;
  height: 34px;

  object-fit: contain;
}

.location {
  position: relative;
  padding: 90px 24px;
  overflow: hidden;
}

.loc-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 28px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 30px;
  border-radius: 44px;
  background: rgba(201, 182, 182, 0.377);
  border: 3px solid rgb(255, 255, 255);
  box-shadow: 0 24px 60px rgba(62, 33, 10, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.loc-card h2{
  color: orangered;
  
}
.loc-card p {
  color: #f07501;
}

.loc-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 32px;
}

.site-footer {
  position: relative;
  width: 100%;
  margin: 0px auto;
  padding: 50px 0 0;
  background: #ffe8cc;
  display: block;
}
.site-footer::before {
  position: absolute;
  top: -70px;
  left: 50%;
  width: 460px;
  height: 140px;
  background: #ffe8cc;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.footer-logo {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(52px, 6vw, 72px);
  height: clamp(52px, 6vw, 72px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 5;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.footer-inner {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 58px;
  border-radius: 18px 18px 0 0;
  background: #f5f5f5;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 28px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.footer-socials a:hover {
  transform: translateY(-4px);
}

.footer-copy {
  text-align: center;
  color: #5d4b3d;
  font-size: 14px;
}

.footer-copy p {
  margin: 7px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
}

.footer-links a {
  color: #6d00d3;
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;

    text-align: center;

    padding: 50px 24px 32px;
  }

  .footer-socials,
  .footer-links {
    justify-content: center;
  }
}



.is-changing {
  opacity: 0;
  transform: scale(0.92) rotate(-3deg);
}

.menu-page { 
  background: #fffaf1;
}


.slider {
  padding-top: 140px;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fffaf1;
}

.slider-headings {
  position: absolute;
  top: 90;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  text-align: center;
  pointer-events: none;
}

.slider-headings .eyebrow {
  margin: 0;
  color: #3b2418;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
}

.slider-headings h1 {
  margin: 0;
  color: #ff9816;
  font-size: clamp(86px, 18vw, 260px);
  line-height: 0.75;
  letter-spacing: -0.08em;
}


.slide {
  position: absolute;
  overflow: visible;
  border-radius: 28px;
  will-change: transform, width, height;
  z-index: 5;
}

.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 320%;
  height: 320%;
  object-fit: cover;
  opacity: 0;
  transform: translate(-50%, - 50%) scale(0.8);
  z-index: 1;
  transition:
  opacity 0.4s ease,
  transform 0.4s ease;
}

.slide.active .slide-bg-img {
  opacity: 1;
  transform:scale(1);
}

.slide-product-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.4s ease;
}

.slide:hover .slide-product-img {
  transform: scale(1.08);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.slide-copy {
  position: absolute;
  bottom: 9svh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(900px, 92%);
  text-align: center;
}

#slide-title {
  margin-top: 40px;
  margin-bottom: 0;
  color: #3b1f0f;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
}

.description {
  margin: 24px auto 0;
  max-width: 850px;
  color: #4e392d;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  font-weight: 500;
}

.slider {
  position: relative;
  min-height: 760px;
  padding-top: 70px;
  text-align: center;
}

.slider::after {
  position: absolute;
  top: 36px;
  right: -10px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #ff7c28 0 9px, transparent 10px);
  background-size: 45px 45px;
  transform: rotate(18deg);
  opacity: 0.65;
}

.slider .eyebrow {
  color: #3b2418;
  font-size: clamp(24px, 3vw, 42px);
  padding-top: 3%;
}

.slider h1 {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: #ff9816;
  font-size: clamp(86px, 18vw, 260px);
  line-height: 1;
  letter-spacing: -0.08em;
}


.froyo-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 0;
  width: min(980px, 100%);
  margin: -58px auto 18px;
}

.froyo-row img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 22px 16px rgba(91, 43, 15, 0.2));
}

.menu-intro {
  width: min(540px, 100%);
  margin: 0 auto;
  color: #5d4b3d;
  line-height: 1.7;
}

.flavor-section {
  padding-top: 40px;
  background: #ffffff;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 28px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.flavor-card {
  position: relative;
  min-height: 430px;
  padding: 18px;
  border: 0;
  border-radius: 42px;
  background: #ffffff;
  overflow: hidden;
  isolation: isolate;
  outline: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.35s ease;
}

.flavor-card::before,
.flavor-card::after {
  display: none;
}

.hover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 0;
}

.fallback-bg {
  background: radial-gradient(circle at 50% 34%, var(--flavor-color-soft), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--flavor-color-pale) 100%);
}

.flavor-art {
  position: relative;
  z-index: 2;
  height: 295px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.flavor-art img {
  max-height: 290px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 14px rgba(71, 40, 22, 0.16));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.flavor-label {
  position: relative;
  z-index: 3;
  width: min(300px, 92%);
  margin: -4px auto 0;
  padding: 0 12px;
  background: transparent;
  box-shadow: none;
  color: #3b1f0f;
  text-align: center;
  opacity: 1;
  transform: none;
  transition: color 0.35s ease, transform 0.35s ease, text-shadow 0.35s ease;
}

.flavor-label span {
  display: block;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease, max-height 0.35s ease, margin 0.35s ease;
}

.flavor-label h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.flavor-card:hover,
.flavor-card:focus-visible {
  transform: translateY(-12px);
}

.flavor-card:hover .hover-bg,
.flavor-card:focus-visible .hover-bg {
  opacity: 1;
  transform: scale(1);
}

.flavor-card:hover .flavor-art img,
.flavor-card:focus-visible .flavor-art img {
  transform: translateY(-22px) scale(1.12);
  filter: drop-shadow(0 24px 18px rgba(71, 40, 22, 0.18));
}

.flavor-card:hover .flavor-label,
.flavor-card:focus-visible .flavor-label {
  color: var(--flavor-color);
  transform: translateY(-10px);
  text-shadow: 0 8px 20px var(--flavor-shadow);
}

.flavor-card:hover .flavor-label span,
.flavor-card:focus-visible .flavor-label span {
  max-height: 28px;
  margin-bottom: 8px;
  opacity: 1;
}

.flavor-strawberry {
  --flavor-color: #ff5c3c;
  --flavor-color-soft: #ffc2cc;
  --flavor-color-pale: rgba(255, 194, 204, 0.45);
  --flavor-shadow: rgba(255, 92, 60, 0.25);
}

.flavor-mango {
  --flavor-color: #f6a51d;
  --flavor-color-soft: #ffe188;
  --flavor-color-pale: rgba(255, 225, 136, 0.45);
  --flavor-shadow: rgba(246, 165, 29, 0.25);
}

.flavor-chocolate {
  --flavor-color: #7a3f20;
  --flavor-color-soft: #c78a54;
  --flavor-color-pale: rgba(199, 138, 84, 0.35);
  --flavor-shadow: rgba(122, 63, 32, 0.25);
}

.flavor-matcha {
  --flavor-color: #7f9d31;
  --flavor-color-soft: #cfdf86;
  --flavor-color-pale: rgba(207, 223, 134, 0.45);
  --flavor-shadow: rgba(127, 157, 49, 0.25);
}

.flavor-banana {
  --flavor-color: #d8a742;
  --flavor-color-soft: #ffe7a8;
  --flavor-color-pale: rgba(255, 231, 168, 0.5);
  --flavor-shadow: rgba(216, 167, 66, 0.25);
}

.flavor-float {
  --flavor-color: #319f89;
  --flavor-color-soft: #a6ebd8;
  --flavor-color-pale: rgba(166, 235, 216, 0.45);
  --flavor-shadow: rgba(49, 159, 137, 0.25);
}

.toppings-showcase {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background-color: rgba(245, 245, 220, 0.473);
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.toppings-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.big-number {
  margin: 0;
  color: #25bceb;
  font-size: clamp(140px, 28vw, 430px);
  font-weight: 900;
  line-height: 0.75;
}

.toppings-content h2 {
  margin: 0;
  color: #3b1f0f;
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.topping {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 14px rgba(70, 35, 15, 0.18));
}

.topping-springkle {
  width: 280px;
  top: -20px;
  left: 80px;
  filter: blur(2px) drop-shadow(0 18px 14px rgba(70, 35, 15, 0.12));
  position: absolute;
}

.topping-minim {
  width: 360px;
  top: 20px;
  right: 340px;
  position: absolute;
}

.topping-banana {
  width: 400px;
  top: 20px;
  right: -30px;
  filter: blur(2px) drop-shadow(0 18px 14px rgba(70, 35, 15, 0.12));
}

.topping-crushg {
  width: 500px;
  bottom: 60px;
  left: -40px;
  position: absolute;
}

.topping-grapes {
  width: 300px;
  left: 80px;
  top: 10px;
}

.topping-nips{
  width: 330px;
  right: 40px;
  bottom: 70px;
}

.topping-mangt {
  width: 320px;
  right: 420px;
  bottom: 70px;
}

.more-menu {
  display: grid;
  gap: 70px;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.more-menu article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}


.more-menu article img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background:
  linear-gradient(180deg,#a5eb03 0%,#ffffff 100%);
  padding: 30px;
  filter:
  drop-shadow(0 24px 18px rgba(81, 46, 21, 0.18));
}

.more-menu article h2 {
  margin: 0;
  color: #3b2418;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.more-menu article p:not(.eyebrow) {
  color: #5d4b3d;
  line-height: 1.8;
}

.slide,
.slide img,
.slide-product-img,
.slide-bg-img,
.slider-headings,
.slide-copy,
.slider h1,
.slider p,
.slider h2,
.slider span {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

@media (max-width: 850px) {
  

  .site-header {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    margin: 0;
    padding: 10px 14px;
    border-radius: 999px;
    z-index: 99999;
  }
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    gap: 12px;

    padding: 20px;
    border-radius: 24px;

    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);

    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0 0;
  }

  .hero,
  .feature-section,
  .loc-card {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .cake-frame {
    min-height: 450px;
  }

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

  .froyo-row,
  .flavor-grid,
  .more-menu article {
    grid-template-columns: 1fr;
  }
    body.dark-mode .site-nav {
    background: rgba(20, 28, 44, 0.98);
  }

  body.dark-mode .site-nav a {
    color: #ffffff;
  }

  body.dark-mode .dropdown-menu {
    background: transparent;
  }

  body.dark-mode .dropdown-menu a {
    color: #ffffff;
  }

  body.dark-mode .site-nav a:hover {
    background: rgba(255,255,255,0.08);
    color: #00eeff;
  }
}

@media (max-width: 560px) {
  section {
    padding: 70px 16px;
  }

  .site-header {
    width: calc(100% - 20px);
  }

  .brand span {
    font-size: 15px;
  }

  .hero-card {
    padding: 20px;
    border-radius: 32px;
  }

  .froyo-row,
  .flavor-grid,
  .more-menu article {
    grid-template-columns: 1fr;
  }

  .menu-hero h1 {
    letter-spacing: -0.04em;
  }

  .flavor-card {
    min-height: 410px;
  }

  .flavor-label h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .slider {
    height: 100svh;
    min-height: 720px;
    padding-top: 90px;
  }

  .slider-headings {
    top: 85px;
  }

  .slider-headings .eyebrow {
    font-size: 22px;
  }

  .slider-headings h1 {
    font-size: clamp(80px, 30vw, 140px);
  }

  .slide-copy {
    bottom: 4svh;
    width: 92%;
  }

  #slide-title {
    font-size: clamp(36px, 12vw, 56px);
    line-height: 0.95;
  }

  .description {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .slide-bg-img {
    width: 100%;
    height: 100%;
  }

  .slide-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.loyalty-section {
  padding: 70px 20px;
  background: #ffe8cc
  
}

.loyalty-card {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 50px 40px;
  border-radius: 28px;
  border-radius: 44px;
    background:
    linear-gradient(
      180deg,
      #ee9247 0%,
      #7ff7ed 45%,
      rgb(122, 147, 255) 100%
    );
  border: 3px solid rgba(240, 56, 0, 0.418);
  box-shadow: 0 24px 60px rgba(62, 33, 10, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

.loyalty-eyebrow {
  color: #3400f1;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 13px;
}

.loyalty-card h2 {
  margin: 0;
  color: #3a1705;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.loyalty-text {
  max-width: 620px;
  margin-top: 22px;
  color: #4b2a12;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.7;
}

@media (max-width:768px){

  .topping-banana,
  .topping-crushg,
  .topping-springkle,
  .topping-minim,
  .topping-grapes,
  .topping-nips,
  .topping-mangt{
    left:auto;
    right:auto;
    max-width:40vw;
  }

  .topping-banana{
    right:-10px;
    top:40px;
  }

  .topping-crushg{
    left:-10px;
    bottom:40px;
  }

  .topping-springkle{
    left:10px;
  }

  .topping-minim{
    right:10px;
  }
}

.reward-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.reward-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: #ff7a00;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.loyalty-icon {
  position: absolute;
  right: 30px;
  bottom: -10px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #05b6b6a9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border: 6px solid rgba(0, 255, 221, 0.568);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .loyalty-card {
    padding: 34px 24px 90px;
  }
  .loyalty-card h2 {
    font-size: 38px;
  }
  .loyalty-text {
    font-size: 14px;
  }
  .loyalty-icon {
    width: 85px;
    height: 85px;
    right: 16px;
    font-size: 36px;
  }
}

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

@media (max-width:768px){
  .slider{
    width:100vw;
    max-width:100vw;
    overflow:hidden;
  }

  .slide{
    max-width:100vw;
    overflow:hidden;
  }

  .slide-bg-img{
    width:100%;
    height:100%;
  }

  .slide-product-img,
  .slide img{
    max-width:100%;
  }
}


