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

:root {
  --orange: #FF6B00;
  --yellow: #FFD200;
  --white: #FFFFFF;
  --black: #0B0B0B;
  --cream: #FFFBF0;
  --light-grey: #FFFBF0;
  --text-dark: #0B0B0B;
  --text-muted: rgba(11, 11, 11, 0.65);
  --text-light: #FFFFFF;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 20px;
  --shadow: 0 12px 40px rgba(11, 11, 11, 0.05);
  --shadow-yellow: 0 10px 30px rgba(255, 210, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: #0c0705;
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}


/* ===== SECTION FRAMES ===== */
section:not(.split-hero) {
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;

  /* ── POSITION CONTROLS ── */
  top: 0px;
  /* ↕ distance from TOP of screen — increase to move it down */
  left: 0px;
  /* ↔ distance from LEFT — e.g. 20px to offset from edge */
  right: 0px;
  /* ↔ distance from RIGHT — usually keep same as left */

  /* ── WIDTH ── */
  width: 100%;
  /* full width = 100% | narrower = e.g. 90%, auto-centered below */

  /* ── HEIGHT (via padding) ── */
  padding: 24px 0;
  /* top/bottom padding = controls navbar height */

  z-index: 1000;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(12, 7, 5, 0.95);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  /* ── MAX WIDTH (how wide the inner content stretches) ── */
  max-width: 1440px;
  /* decrease e.g. 1200px to make links closer together */

  margin: 0 auto;

  /* ── INNER SIDE PADDING ── */
  padding: 0 40px;
  /* increase for more space on left/right inside the bar */

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  left: -20px;
  /* shift left by 20px */
}

.logo-cake-icon {
  width: 38px;
  height: 38px;
  transition: transform var(--transition);
  filter: brightness(0) invert(1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  transition: color var(--transition);
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--yellow);
  opacity: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  gap: 36px;
  margin: 0 auto;
  position: relative;
  left: 300px;
  /* ← adjust this to move links left(-) or right(+) */
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--yellow);
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}


.hamburger,
.hamburger-new {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span,
.hamburger-new span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

#navbar.scrolled .hamburger span,
#navbar.scrolled .hamburger-new span {
  background: var(--white);
}

/* ===== SPLIT HERO (GSAP Pinning & Morphing) ===== */
.split-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  z-index: 10;
}


.hero-left-dark {
  width: 28%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 80px 60px 80px;
  background: #0c0705;
  position: relative;
  z-index: 2;
}

.hero-left-content-wrapper {
  position: relative;
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.hero-slide-text {
  position: absolute;
  top: auto;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.hero-slide-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-title-split {
  font-family: var(--font-head);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.split-sub-italic {
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--yellow);
  text-transform: none;
  margin-bottom: 8px;
}

.split-main-bold {
  display: block;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

/* Chef hat row layout */
.hero-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  /* ← space between text and chef hat — increase to push hat further right */
}

.hero-chef-hat {
  /* ── SIZE ── */
  font-size: 5rem;
  /* ← change this to make hat bigger or smaller */

  /* ── POSITION (nudge up/down/left/right) ── */
  position: relative;
  top: 40px;
  /* ← move UP (negative) or DOWN (positive) */
  left: -102px;
  /* ← move LEFT (negative) or RIGHT (positive) */

  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(255, 210, 0, 0.3));
  animation: chef-float 3s ease-in-out infinite;
}

@keyframes chef-float {

  0%,
  100% {
    transform: translateY(0px) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.hero-desc-split {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 480px;
}

.hero-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
}

.scroll-down-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
}

.scroll-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: translateX(-100%);
  animation: scroll-line-anim 2s infinite;
}

@keyframes scroll-line-anim {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scroll-wheel-anim 1.5s infinite;
}

@keyframes scroll-wheel-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

.btn-explore-cakes {
  /* ── MANUAL POSITION CONTROLS ── */
  position: relative;
  top: 0px;
  /* ↕ move UP (negative) or DOWN (positive) */
  left: 125px;
  /* ↔ move LEFT (negative) or RIGHT (positive) */
  /* ───────────────────────────── */

  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 210, 0, 0.2);
  transition: all var(--transition);
}

.btn-explore-cakes:hover {
  background: var(--white);
  color: #4b2a1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

.btn-explore-cakes:hover .btn-arrow-circle {
  background: #4b2a1e;
  color: var(--white);
}

.hero-right-image {
  width: 80%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-image-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  z-index: 1;
  will-change: opacity;
}

.hero-image-slide.initial-active {
  opacity: 1;
  z-index: 2;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 10;
}

/* Responsive Split Hero */
@media (max-width: 1024px) {
  .hero-left-dark {
    padding: 100px 40px 40px 40px;
  }
}

@media (max-width: 768px) {
  .split-hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .hero-left-dark {
    width: 100%;
    height: auto;
    min-height: 60vh;
    padding: 120px 24px 40px 24px;
    background: rgba(0, 0, 0, 0.55);
    order: 2;
  }

  .hero-right-image {
    width: 100%;
    height: 40vh;
    order: 1;
  }

  .hero-left-content-wrapper {
    height: 300px;
  }

  .hero-bottom-actions {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}

/* ===== CAKE ASSEMBLY ANIMATION ===== */
.cake-anim-container {
  position: relative;
  width: 240px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.cake-stand {
  width: 180px;
  height: 12px;
  background: linear-gradient(to right, #d4af37, #f5d060, #d4af37);
  border-radius: 6px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.cake-stand::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 30px;
  background: linear-gradient(to right, #b38728, #d4af37, #b38728);
}

.cake-stand::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: linear-gradient(to right, #d4af37, #f5d060, #d4af37);
  border-radius: 3px;
}

.cake-layer {
  position: absolute;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-180px) scaleY(1.4);
  /* Animation only starts once .cake-visible is applied to parent */
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-name: none;
}

.cake-visible .cake-layer {
  animation-name: assemble-layer;
}

.cake-sponge-1 {
  width: 140px;
  height: 32px;
  background: linear-gradient(to right, #5c3a21, #7d5230, #5c3a21);
  bottom: 12px;
  z-index: 11;
  animation-delay: 0.5s;
}

.cake-cream-1 {
  width: 136px;
  height: 10px;
  background: linear-gradient(to right, #ffffff, #fffdf0, #ffffff);
  bottom: 44px;
  z-index: 12;
  border-radius: 3px;
  animation-delay: 1.2s;
}

.cake-sponge-2 {
  width: 120px;
  height: 28px;
  background: linear-gradient(to right, #ff9e4f, #ffb875, #ff9e4f);
  bottom: 50px;
  z-index: 13;
  animation-delay: 1.9s;
}

.cake-cream-2 {
  width: 116px;
  height: 10px;
  background: linear-gradient(to right, #ffffff, #fffdf0, #ffffff);
  bottom: 78px;
  z-index: 14;
  border-radius: 3px;
  animation-delay: 2.6s;
}

.cake-sponge-3 {
  width: 100px;
  height: 26px;
  background: linear-gradient(to right, #5c3a21, #7d5230, #5c3a21);
  bottom: 84px;
  z-index: 15;
  animation-delay: 3.3s;
}

.cake-glaze {
  width: 100px;
  height: 12px;
  background: linear-gradient(to right, #ff7a18, #ffb070, #ff7a18);
  bottom: 106px;
  z-index: 16;
  border-radius: 6px 6px 0 0;
  animation-delay: 4.0s;
}

.decor {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  transform: translateY(-100px);
  z-index: 20;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-name: none;
}

.cake-visible .decor {
  animation-name: assemble-layer;
}

.topping-1 {
  left: 70px;
  bottom: 116px;
  animation-delay: 4.7s;
}

.topping-2 {
  left: 106px;
  bottom: 120px;
  animation-delay: 5.1s;
}

.topping-3 {
  left: 142px;
  bottom: 116px;
  animation-delay: 5.5s;
}

.cake-sparkles {
  position: absolute;
  inset: 0;
  z-index: 22;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  font-size: 1rem;
  opacity: 0;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-name: none;
}

.cake-visible .sparkle {
  animation-name: pulse-sparkle;
}

.s-1 {
  left: 30px;
  bottom: 60px;
  animation-delay: 6.0s;
}

.s-2 {
  right: 30px;
  bottom: 100px;
  animation-delay: 6.3s;
}

.s-3 {
  left: 100px;
  bottom: 140px;
  animation-delay: 6.6s;
}

@keyframes assemble-layer {
  0% {
    opacity: 0;
    transform: translateY(-180px) scaleY(1.4);
  }

  6%,
  84% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }

  88%,
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
}

@keyframes pulse-sparkle {

  0%,
  10% {
    opacity: 0;
    transform: scale(0.5);
  }

  15%,
  80% {
    opacity: 1;
    transform: scale(1.2) rotate(15deg);
  }

  85%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-placeholder-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-circle-yellow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--yellow);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
}

.ph-inner-dashed {
  position: relative;
  width: 100%;
  height: 100%;
  border: 3px dashed rgba(255, 210, 0, 0.4);
  border-radius: var(--radius);
  background: rgba(11, 11, 11, 0.7);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.ph-icon-large {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 210, 0, 0.4));
}

.ph-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ph-inner-dashed p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 4;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-path {
  fill: var(--cream);
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-up:nth-child(1) {
  animation-delay: 0.3s;
}

.animate-up:nth-child(2) {
  animation-delay: 0.5s;
}

.animate-up:nth-child(3) {
  animation-delay: 0.7s;
}

.animate-up:nth-child(4) {
  animation-delay: 0.9s;
}

.animate-up:nth-child(5) {
  animation-delay: 1.1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

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

/* ===== SECTION COMMONS ===== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--white-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

.mt-1 {
  margin-top: 20px;
}

.full-width {
  width: 100%;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #140808;
  /* Premium deep cocoa background */
  color: #ebdcd0;
  position: relative;
  overflow: hidden;
}

/* Clear overlay styling since background is now a solid premium dark color */
.about .about-content {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.about .about-desc {
  color: #ebdcd0 !important;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: none;
}

.about .af-item p {
  color: #c9b9ae !important;
  font-size: 1rem;
  line-height: 1.6;
}

.about .af-item strong {
  color: #dfb76c !important;
  /* Elegant gold */
  font-size: 1.15rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  border-radius: var(--radius);
  /* Default height fallback */
  height: var(--manual-frame-height, 550px);
  background: transparent;
  /* Transparent to blend with the premium dark background */
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.custom-cake-container {
  /* =========================================================
     MANUAL FRAME ADJUSTMENTS
     Change these values to perfectly fit your custom image!
  ========================================================= */
  --manual-frame-height: 465px;
  /* Adjust this to make the frame taller or shorter */
  --manual-frame-width: 55%;
  /* Adjust this to make the frame wider or narrower (e.g., 400px, 80%) */
  --border-thickness: 4px;
  /* Thickness of the pink frame */
  --glow-intensity: 25px;
  /* How far the pink glow spreads */

  width: var(--manual-frame-width);
  height: var(--manual-frame-height);
  border: none;
  background: transparent;
  box-shadow: none;
  margin: 0 auto;
  /* Keeps the frame centered if you make it smaller than 100% */
}

.story-cake-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Shows full image */
  border-radius: var(--radius);
  border: var(--border-thickness) solid #dfb76c;
  /* Elegant warm gold border */
  position: relative;
  z-index: 2;
  transform: translateZ(20px);
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.6));
  box-shadow: 0 0 var(--glow-intensity) rgba(223, 183, 108, 0.4), inset 0 0 15px rgba(223, 183, 108, 0.2);
  /* Soft warm gold glowing effect */
  transition: transform 0.4s ease-out, box-shadow 0.3s ease;
}

/* 3D Butterfly Setup */
.butterfly {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 5;
  pointer-events: none;
  transform-style: preserve-3d;
}

.wing {
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  background-size: cover;
  background-position: center;
  transform-origin: center right;
  opacity: 0.9;
}

.left-wing {
  left: 0;
  border-radius: 50% 20% 0 50%;
  animation: flapLeft 0.15s ease-in-out infinite alternate;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.right-wing {
  left: 20px;
  border-radius: 20% 50% 50% 0;
  transform-origin: center left;
  animation: flapRight 0.15s ease-in-out infinite alternate;
  box-shadow: inset -2px 2px 5px rgba(255, 255, 255, 0.4);
}

/* 3D Animations */
@keyframes flapLeft {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(75deg);
  }
}

@keyframes flapRight {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(-75deg);
  }
}

.b1 {
  top: 10%;
  left: -10%;
  transform: translateZ(60px) rotate(15deg);
  animation: float1 4s ease-in-out infinite alternate;
}

.b1 .wing {
  background: linear-gradient(135deg, #ff007f, #ff9900);
}

.b2 {
  top: -5%;
  right: 5%;
  transform: translateZ(80px) rotate(-20deg) scale(0.8);
  animation: float2 5s ease-in-out infinite alternate;
}

.b2 .wing {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
}

.b3 {
  bottom: 15%;
  right: -5%;
  transform: translateZ(40px) rotate(-10deg) scale(1.2);
  animation: float3 6s ease-in-out infinite alternate;
}

.b3 .wing {
  background: linear-gradient(135deg, #fceabb, #f8b500);
}

@keyframes float1 {
  0% {
    transform: translateZ(60px) rotate(15deg) translateY(0);
  }

  100% {
    transform: translateZ(80px) rotate(25deg) translateY(-20px);
  }
}

@keyframes float2 {
  0% {
    transform: translateZ(80px) rotate(-20deg) translateY(0);
  }

  100% {
    transform: translateZ(100px) rotate(-10deg) translateY(20px);
  }
}

@keyframes float3 {
  0% {
    transform: translateZ(40px) rotate(-10deg) translateY(0);
  }

  100% {
    transform: translateZ(60px) rotate(-30deg) translateY(-15px);
  }
}

.sparkle-3d {
  position: absolute;
  font-size: 1.5rem;
  z-index: 4;
  animation: sparkle-glow 2s infinite alternate;
}

.s1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.s2 {
  top: 60%;
  right: 15%;
  animation-delay: 0.5s;
}

.s3 {
  bottom: 10%;
  left: 30%;
  animation-delay: 1s;
}

@keyframes sparkle-glow {
  0% {
    opacity: 0.2;
    transform: translateZ(30px) scale(0.8);
    filter: drop-shadow(0 0 5px var(--yellow));
  }

  100% {
    opacity: 1;
    transform: translateZ(50px) scale(1.2);
    filter: drop-shadow(0 0 15px var(--yellow));
  }
}

/* 3D Decor (Flowers & Toys) */
.decor-3d {
  position: absolute;
  font-size: 2rem;
  z-index: 4;
  animation: decor-float 3s infinite alternate ease-in-out;
}

.d1 {
  top: 15%;
  left: 20%;
  transform: translateZ(60px);
  animation-delay: 0.1s;
}

.d2 {
  top: 30%;
  right: 10%;
  transform: translateZ(80px);
  animation-delay: 0.8s;
  font-size: 2.5rem;
}

.d3 {
  bottom: 25%;
  left: 5%;
  transform: translateZ(40px);
  animation-delay: 1.5s;
  font-size: 2.2rem;
}

.d4 {
  top: 5%;
  right: 25%;
  transform: translateZ(70px);
  animation-delay: 0.4s;
  font-size: 2.4rem;
}

.d5 {
  bottom: 15%;
  right: 15%;
  transform: translateZ(50px);
  animation-delay: 1.2s;
  font-size: 1.8rem;
}

.d6 {
  bottom: 5%;
  left: 40%;
  transform: translateZ(90px);
  animation-delay: 0.6s;
  font-size: 2.8rem;
}

@keyframes decor-float {
  0% {
    transform: translateZ(40px) translateY(0) rotate(-10deg);
  }

  100% {
    transform: translateZ(80px) translateY(-15px) rotate(15deg);
  }
}

/* Happy Birthday Heading */
.happy-bday-header {
  text-align: center;
  margin: 0 auto 50px auto;
  max-width: 900px;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.colorful-bday-text {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(90deg, #ffe699 0%, #dfb76c 50%, #ffe699 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
  display: inline-block;
}

@keyframes goldShine {
  to {
    background-position: 200% center;
  }
}

.princess-title {
  color: #dfb76c !important;
  /* Elegant Gold */
  text-shadow: none;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.bday-subtext {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: #cbb4a3;
  /* Elegant warm cream */
  opacity: 0.95;
  margin-top: 15px;
  text-shadow: none;
}

.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, #dfb76c, #b88d40); /* Premium Gold gradient background */
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(223, 183, 108, 0.3);
}

.ab-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: #140808; /* Dark cocoa for readability */
}

.ab-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #140808; /* Dark cocoa for readability */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-desc {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

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

.af-icon {
  font-size: 1.5rem;
  background: var(--orange-glow);
  border-radius: 12px;
  padding: 10px;
  flex-shrink: 0;
}

.af-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.af-item p {
  font-size: 0.85rem;
  color: #777777;
}

/* ===== CAKES & MORE ===== */
.menu {
  padding: 100px 0;
  background: transparent;
  color: var(--white);
}

.menu .section-title {
  color: var(--white) !important;
}

.menu-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 210, 0, 0.15);
  border-color: var(--yellow);
}

.mc-img-wrap {
  position: relative;
  height: 240px;
  padding: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.menu-cake-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-cake-img {
  transform: scale(1.08);
}

.mc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 6;
}

.mc-tag--yellow {
  background: var(--yellow);
  color: var(--black);
}

.mc-tag--new {
  background: var(--orange);
  color: var(--white);
}

.mc-tag--premium {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.mc-tag--value {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 900;
}

.mc-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 6;
  backdrop-filter: blur(4px);
}

.mc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(11, 11, 11, 0.4);
}

.mc-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-card:hover .mc-body h3 {
  color: var(--yellow);
}

.mc-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-shop-now {
  background: var(--yellow);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  width: 100%;
  border: none;
  cursor: pointer;
  display: block;
}

.btn-shop-now:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

/* Special unique card with glowing golden stroke frame */
.special-unique-card {
  position: relative;
  border: 2px solid var(--yellow) !important;
  box-shadow: 0 0 20px rgba(255, 210, 0, 0.4), inset 0 0 15px rgba(255, 210, 0, 0.1) !important;
  animation: golden-glow 2.5s infinite alternate;
}

.special-unique-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: linear-gradient(135deg, #ffd200, #ff6b00, #ffd200) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}

@keyframes golden-glow {
  0% {
    box-shadow: 0 0 15px rgba(255, 210, 0, 0.3), inset 0 0 10px rgba(255, 210, 0, 0.1);
    border-color: rgba(255, 210, 0, 0.8);
  }

  100% {
    box-shadow: 0 0 25px rgba(255, 210, 0, 0.6), inset 0 0 20px rgba(255, 210, 0, 0.3);
    border-color: rgba(255, 210, 0, 1);
  }
}

/* Style for special unique tag */
.mc-tag--special {
  background: linear-gradient(135deg, #ffd200, #ff6b00) !important;
  color: var(--black) !important;
  font-weight: 900 !important;
  box-shadow: 0 4px 10px rgba(255, 210, 0, 0.4);
}

.view-all-wrapper {
  text-align: center;
  margin-top: 48px;
}

.btn-view-all {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  transition: all var(--transition);
}

.btn-view-all:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* ===== FLOATING CAKE WIDGET (fixed left edge) ===== */
.cake-widget-fixed {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-140%);
  z-index: 999;
  width: 200px;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cake-widget-fixed.cake-visible {
  transform: translateY(-50%) translateX(0);
}

/* ===== BAKING AREA VIDEO SHOWCASE ===== */
.video-showcase {
  position: relative;
  padding: 100px 0;
  background: transparent;
}

.baking-split-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: center;
}

.baking-text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

.baking-video-side {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid #000000; /* Black frame */
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.9); /* Black glowing effect */
  position: relative;
}

.baking-inline-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.baking-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 8px 24px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: bake-pop 0.7s ease forwards;
  animation-delay: 0.3s;
}

.baking-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(30px);
  animation: bake-pop 0.8s ease forwards;
  animation-delay: 0.9s;
}

.baking-headline span {
  color: var(--yellow);
  display: block;
}

.baking-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3), inset 0 0 15px rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(8px);
  padding: 16px 36px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: bake-pop 0.8s ease forwards;
  animation-delay: 1.7s;
}

.baking-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.baking-num sup {
  font-size: 2rem;
  vertical-align: super;
  color: var(--orange);
}

.baking-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.baking-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--orange);
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  animation: bake-pop 0.7s ease forwards;
  animation-delay: 2.5s;
}

.baking-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: bake-pop 0.7s ease forwards;
  animation-delay: 3.1s;
}

.baking-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(255, 210, 0, 0.3);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: bake-pop 0.7s ease forwards;
  animation-delay: 3.7s;
}

.baking-cta:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

@keyframes bake-pop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== TESTIMONIALS (SWEET FEEDBACK) ===== */
.testimonials {
  padding: 100px 0;
  background: #0c0705;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.relative {
  position: relative;
}

.testi-ctrl {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
  box-shadow: var(--shadow);
}

.testi-ctrl:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.ctrl-left {
  left: -25px;
}

.ctrl-right {
  right: -25px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testi-grid::-webkit-scrollbar {
  display: none;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.quote-mark {
  display: block;
  font-size: 4rem;
  font-family: var(--font-head);
  line-height: 1;
  color: var(--yellow);
  margin-top: -15px;
  margin-bottom: 5px;
  font-weight: 900;
}

.testi-stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testi-card>p {
  color: #f3e7d5;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-av-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.testi-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== NEWSLETTER (STAY UPDATED) ===== */
.newsletter-section {
  background: var(--yellow);
  padding: 50px 0;
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.newsletter-text h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.5px;
}

.newsletter-text p {
  font-size: 0.95rem;
  color: rgba(11, 11, 11, 0.8);
  font-weight: 500;
}

.newsletter-right {
  flex-grow: 1;
  max-width: 500px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  color: var(--black);
  transition: border-color var(--transition);
}

.newsletter-input:focus {
  border-color: var(--black);
}

.newsletter-submit {
  background: var(--black);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: var(--orange);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.25);
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 60px 0;
  background: #140808;
  /* Matches the premium dark cocoa background */
  position: relative;
}

.contact-section .section-title {
  color: #dfb76c !important;
  /* Premium gold title */
  text-shadow: none;
}

.contact-section .section-eyebrow {
  color: #dfb76c;
  border: 1px solid rgba(223, 183, 108, 0.4);
  background: rgba(223, 183, 108, 0.1);
  /* Subtle premium transparent gold */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  /* Elegant pill shape */
  box-shadow: none;
}

.contact-grid {
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 20px;
}

.ci-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
  background: #080303;
  /* Solid obsidian black */
  border: 2px solid #000000;
  /* Black frame */
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
  /* Black glowing shadow */
  transition: transform var(--transition), box-shadow var(--transition);
}

.ci-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(0, 0, 0, 1);
  /* Deep black glow on hover */
}

.ci-icon {
  font-size: 1.8rem;
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 16px;
  color: var(--black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ci-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.ci-item p,
.ci-item a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 500;
}

.ci-item a:not(.contact-action-btn):hover {
  color: var(--orange);
}

.contact-action-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.phone-btn {
  background: #dfb76c;
  color: #140808 !important;
  /* Deep cocoa text for high contrast */
}

.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(223, 183, 108, 0.35);
}

.wa-btn {
  background: #25D366;
  color: white !important;
}

.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

.social-btn {
  background: var(--white);
  border: none;
  color: var(--black);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.social-btn--wa {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.social-btn--wa:hover {
  background: #1EBE5D;
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f3e7d5;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.15);
}

.form-group select option {
  background: #0c0705;
  color: var(--white);
}

.btn-primary.full-width {
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: all var(--transition);
  border-radius: 50px;
  cursor: pointer;
}

.btn-primary.full-width:hover {
  background: var(--white);
  color: #0c0705;
  box-shadow: var(--shadow-yellow);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: #f3e7d5;
  opacity: 0.7;
  margin-top: 12px;
}

/* ===== FOOTER MAP ===== */
.footer-map {
  margin-top: 20px;
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 210, 0, 0.15);
  padding: 70px 0 0;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .logo-main {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: var(--yellow);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-love {
  color: var(--yellow) !important;
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-grid-bento {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger,
  .hamburger-new {
    display: flex;
    position: relative;
    right: 0;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(12, 7, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-links.open a {
    color: var(--white) !important;
  }

  .nav-links.open a::after {
    background: var(--yellow) !important;
  }

  .split-hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .hero-left-dark {
    width: 100%;
    padding: 120px 24px 60px 24px;
    min-height: auto;
    order: 2;
  }

  .hero-right-image {
    width: 100%;
    height: 45vh;
    order: 1;
  }

  .split-main-bold {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    line-height: 1.1;
  }

  .hero-desc-split {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-chef-hat {
    font-size: 2.2rem;
    position: relative;
    top: 40px; /* Nudges it down below Oriental */
    left: -100px; /* Nudges it left next to Bakery */
  }

  .btn-explore-cakes {
    font-size: 0.9rem;
    padding: 14px 24px;
    left: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-bottom-actions {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
  }

  .container {
    padding: 0 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-placeholder {
    height: 330px;
  }

  .custom-cake-container {
    --manual-frame-height: 280px !important;
    --manual-frame-width: 80% !important;
    --glow-intensity: 15px !important;
  }

  /* Scale down and reposition 3D decor/illusion items on mobile */
  .butterfly {
    width: 24px !important;
    height: 24px !important;
  }

  .wing {
    width: 12px !important;
    height: 24px !important;
  }

  .right-wing {
    left: 12px !important;
  }

  .decor-3d {
    font-size: 1.4rem !important;
  }

  .sparkle-3d {
    font-size: 1rem !important;
  }

  /* Mobile positioning for decor around the smaller cake image */
  .b1 { top: 10% !important; left: 5% !important; }
  .b2 { top: 2% !important; right: 8% !important; }
  .b3 { bottom: 12% !important; right: 5% !important; }
  .d1 { top: 15% !important; left: 12% !important; }
  .d2 { top: 30% !important; right: 12% !important; }
  .d3 { bottom: 20% !important; left: 8% !important; }
  .d4 { top: 8% !important; right: 22% !important; }
  .d5 { bottom: 8% !important; right: 18% !important; }
  .d6 { bottom: 3% !important; left: 35% !important; font-size: 1.5rem !important; }

  .about-badge-float {
    right: 15px;
    bottom: 10px;
    padding: 10px 15px;
    transform: scale(0.85);
    transform-origin: bottom right;
  }

  .ab-num {
    font-size: 1.8rem;
  }

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

  .baking-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .baking-text-side {
    align-items: center;
    text-align: center;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }

  .testi-ctrl {
    display: none;
  }

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

  .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .ci-item {
    align-items: center;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand .nav-logo {
    justify-content: center;
    left: 0;
  }

  .footer-tagline {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cake-widget-fixed {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions-bento {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .btn-bento-solid,
  .btn-bento-outline {
    text-align: center;
  }
}

/* ===== GOOGLE REVIEWS BUTTON ===== */
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ffffff;
  color: #333333;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eeeeee;
  text-decoration: none;
}

.btn-google-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: #333333;
}