.hero {
  text-align: center;
}

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

/* Keep paragraph readable */
.hero p {
  max-width: 700px;
}
.hero {
  position: relative;
  padding: 90px 20px 80px;
}

/* -------------------------
   GLOBAL RESET & BASE
------------------------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #fff2e8 0%, transparent 55%),
    radial-gradient(circle at top right, #eaf6ff 0%, transparent 55%),
    radial-gradient(circle at bottom left, #fff7ec 0%, transparent 60%),
    #fffaf6;
  color: #3a2f27;
}
section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 190, 160, 0.12) 2px, transparent 4px),
    radial-gradient(circle at bottom right, rgba(190, 215, 255, 0.12) 2px, transparent 4px);
  pointer-events: none;
}


.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Button pills */
.contact-item {
  background-color: #ffffff;              
  border: 1px solid #e5d5cc;              
  color: #3f3a36;                         
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}


.contact-item span {
  font-weight: 500;
}

.contact-item:hover {
  background: #ffe6d5;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* -------------------------
   BUTTONS
------------------------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 235px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.btn.primary {
  background: linear-gradient(135deg, #ff9f7f, #ffb38f);
  box-shadow: 0 10px 24px rgba(255, 158, 122, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.04);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(255,159,127,0.45);
}


.btn.ghost {
  border: 2px solid #ff9e7a;
  color: #ff9e7a;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 158, 122, 0.1);
}

/* -------------------------
   FULL BLEED SECTIONS
------------------------- */

.full-bleed {
  width: 100%;
  padding: 90px 0;
}

.full-bleed .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

/* -------------------------
   HERO
------------------------- */

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 span {
  color: #ff9e7a;
}

.hero p {
  font-size: 17px;
  max-width: 640px;
  margin: 16px auto 32px;
  color: #6b5a50;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* -------------------------
   CAROUSEL
------------------------- */

.carousel-section {
  background: linear-gradient(
    180deg,
    #f3f8fd,
    #ffffff
  );
  padding: 100px 0 !important; 
}


.carousel-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 12px;
  padding-left: 80px;
  animation: slide 55s linear infinite;
}
@media (max-width: 768px) {
  .carousel-track img {
    height: 180px;
  }

  .carousel-track {
    padding-left: 20px;
    animation-duration: 16s;
  }
}
@media (max-width: 768px) {
  .carousel-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-track {
    animation: none;
  }
}
.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-track img {
  height: 300px;
  width: auto;
  border-radius: 26px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 16px 36px rgba(0,0,0,0.15);
}

/* Smooth slow movement */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SPLIT STORY SECTION */
.story-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  /*border-radius: 45px;*/
  padding: 60px 40px 40px;
  align-items: center;
  /*background:*/
  /*radial-gradient(circle at top left, #fff0e2, transparent 55%),*/
  /*radial-gradient(circle at bottom right, #f3c4b2, transparent 55%),*/
  /*linear-gradient(180deg, #f4f9fd, #ffffff);*/

}

.story-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 64px;
  background: #ffffff;
  /*border-radius: 60px; */
  box-shadow: 0 30px 80px rgba(0,0,0,0.06);
  overflow: hidden;
}
/* Titles */
.soft-title {
  font-size: 28px;
  margin-bottom: 24px;
  text-align:center;
}

/* LEFT SIDE */
.story-left {
  position: relative;
}

/* RIGHT SIDE */
.story-right {
  background: rgba(255,255,255,0.8);
  border-radius: 32px;
  padding: 48px;
  margin-top: 78px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}

/* WHY PILLS */
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-pill {
  background: #fff;
  padding: 18px 22px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

/* MOBILE */
@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }
}


/* -------------------------
   CONTENT WRAPPER
------------------------- */

.page-wrap {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 48px !important; 
}

/* =========================
   HOW THE DAY FEELS 
========================= */

.how-it-feels {
  background: linear-gradient(
    180deg,
    rgba(255, 247, 239, 0.95),
    rgba(255, 255, 255, 1)
  );
  padding: 80px 48px;
}

/* GRID LAYOUT */
.how-it-feels-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr; 
  gap: 72px;
  align-items: start;
}

/* FORCE 3 x 2 IMAGE GRID */
.how-it-feels .image-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 1fr;
  gap: 20px;
  width: 100%;
}

/* IMAGE STYLING */
.how-it-feels .image-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .how-it-feels-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-it-feels .image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


/* =========================
   LEFT SIDE – TEXT + PILLS
========================= */

.feelings-left {
  text-align: left;
}

.feelings-left h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #3a2f27;
}

.feelings-left .pill-sub {
  font-size: 17px;
  color: #6b5a50;
  max-width: 420px;
  margin-bottom: 28px;
}

/* PILL GROUP */
.feelings-left .pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
}

/* =========================
   PILLS 
========================= */

.pill {
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #4f3f36;
  white-space: nowrap;
  cursor: default;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pill:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.pill:nth-child(odd) {
  background: #fff7f1;
}

.pill:nth-child(even) {
  background: #f6fbff;
}

/* =========================
   RIGHT SIDE – IMAGES
========================= */

.feelings-right {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;

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

  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

/* Hero image (top, full width) */
.image-grid img:first-child {
  grid-column: span 2;
  height: 260px;
}
.image-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 900px) {
  .how-it-feels {
    padding: 60px 24px;
  }

  .how-it-feels-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feelings-left {
    text-align: center;
  }

  .feelings-left .pill-group {
    justify-content: center;
  }

  .feelings-left .pill-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .image-grid img {
    height: 200px;
  }

  .image-grid img:first-child {
    height: 220px;
  }
}

/* -------------------------
   PROGRAMS
------------------------- */
.programs-section {
 background: linear-gradient(
    180deg,
    #f4f9fd 0%,
    #ffffff 40%,
    #fff6ef 100%
  );
  /*border-radius: 48px;*/
  padding: 70px 48px;
  margin: 0px auto;
  display: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.program-card {
    cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(255, 159, 127, 0.35);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  text-align: left;
}

.program-card h3 {
  margin-top: 0;
  font-size: 18px;
}

.program-card p {
  font-size: 15px;
  color: #5f5148;
}

.program-card.highlight {
  border: 3px dashed #ff9e7a;
}

.program-card:hover {
  /*transform: translateY(-8px);*/
  background: linear-gradient(180deg, #ffffff, #fff4ed);
  /*box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);*/
}

/* -------------------------
   PRICING 
------------------------- */

.pricing {
  margin-top: 40px;
  text-align: center;        
}

.pricing p {
  margin-bottom: 8px;
  font-size: 15px;
  color: #5f5148;
}

.pricing p strong {
  font-weight: 600;
  color: #3a2f27;
}
.pricing p:last-child {
  font-size: 14.5px;
  color: #7a6a60;
}


/* -------------------------
   CTA
------------------------- */

.cta-section {
  /*background:*/
  /*radial-gradient(circle at top left, #fff0e2, transparent 55%),*/
  /*radial-gradient(circle at bottom right, #f3c4b2, transparent 55%),*/
  /*linear-gradient(180deg, #f4f9fd, #ffffff);*/


  /*border-radius: 50px;*/
  gap: 16px;
  padding: 80px 48px;
  text-align: center;
}

.cta-section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #6b5a50;
}
.cta-section .btn {
  margin-top: 12px;
}


/* -------------------------
   RESPONSIVE TWEAKS
------------------------- */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .full-bleed .inner {
    padding: 0 24px;
  }

  .carousel-track img {
    height: 240px;
  }

  .soft-section {
    padding: 50px 28px;
  }
}
/* ===== REMOVE SIDE GUTTERS  ===== */
.page-wrap {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}


.full-bleed .inner {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}

@media (min-width: 1400px) {
  .page-wrap,
  .full-bleed .inner {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
}

/* On mobile: smaller padding */
@media (max-width: 768px) {
  .page-wrap,
  .full-bleed .inner {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
/* POPUP OVERLAY */
#program-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

#program-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.learn-more {
  display: inline-block;
  margin-left: 6px;
  font-weight: 600;
  color: #ff9e7a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.learn-more:hover {
  color: #ff7f50;
  text-decoration: underline;
}


/* POPUP BOX */
#program-popup {
  background: #fffdf9;
  padding: 40px;
  border-radius: 28px;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: popIn 0.35s ease;
}
/* -------------------------
   POPUP BOOK NOW BUTTON
------------------------- */

.popup-actions {
  margin-top: 28px;
  text-align: center;
}

.popup-book-btn {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 14px 26px;
  font-size: 15.5px;
}

.popup-note {
  margin-top: 10px;
  font-size: 14px;
  color: #6b5a50;
}

@keyframes popIn {
  from {
    transform: scale(0.9) translateY(10px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

#program-popup h3 {
  margin-top: 0;
  font-size: 1.6rem;
}

#program-popup p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  color: #000;
  cursor: pointer;
}

.popup-close:hover {
  opacity: 0.6;
}
/* FLOATING ANIMAL EMOJIS */
.animal-float {
  position: fixed;
  bottom: 0;
  font-size: 24px;
  animation: floatUp 2s ease forwards;
  pointer-events: none;
  z-index: 10000;
}

@keyframes floatUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-120px);
    opacity: 0;
  }
}

/* EMOJI CELEBRATION OVERLAY */
#emoji-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none; /* so user can still click */
  z-index: 9998;
  overflow: hidden;
}

/* Individual emoji */
.floating-emoji {
  position: absolute;
  font-size: 32px;
  opacity: 0;
  animation: floatEmoji 5s ease-in-out forwards;
}

.floating-emoji.mini {
  font-size: 22px;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
}

@keyframes floatEmoji {
  0% {
    transform: translateY(20px) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120px) scale(1.1);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  section,
  .hero,
  .full-bleed,
  .carousel-section,
  .programs-section,
  .soft-section,
  .cta-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@keyframes gentleFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.hero-content {
  animation: gentleFloat 8s ease-in-out infinite;
}
/* BUSINESS HOURS POPUP */
#hours-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

#hours-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#hours-popup {
  background: #fffdf9;
  padding: 36px 40px;
  border-radius: 28px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: popIn 0.35s ease;
  text-align: center;
}

#hours-popup h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.hours-list li {
  font-size: 15px;
  padding: 8px 0;
  color: #5f5148;
}

.hours-note {
  font-size: 14px;
  color: #7a6a60;
}
.hours-note a {
  text-decoration: underline;
}

.birthday-form-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
  text-align: center;
}

/* Layout */
.birthday-form-wrapper {
  max-width: 520px;
  margin: 0 auto;
  padding: 10px 16px 40px;
}

/* Form */
.birthday-form {
  width: 100%;
}

/* Field group */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.form-group label span {
  color: #d11a1a;
  margin-left: 3px;
}

/* Inputs */
.form-group input {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.form-group input::placeholder {
  color: #b6b6b6;
}

.form-group input:focus {
  border-color: #8a8a8a;
}

/* Button */
.submit-btn {
  width: 100%;
  height: 52px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  background: #0b67a3;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.95;
}

/* Footer note */
.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: #666;
  text-align: center;
}
/* WRAPPER */
.vde-birthday {
  max-width: 1000px; 
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* HEADING */
.vde-birthday__heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
  color: #111;
}

/* FORM GRID */
.vde-birthday .birthday-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 18px;
}

/* FIELD GROUP */
.vde-birthday .form-group {
  display: flex;
  flex-direction: column;
}

/* FULL WIDTH ITEMS */
.vde-birthday .form-group.full-width,
.vde-birthday .submit-btn,
.vde-birthday .form-note {
  grid-column: 1 / -1;
}

/* LABEL */
.vde-birthday .form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.vde-birthday .form-group label span {
  color: #d11a1a;
  margin-left: 3px;
}

/* INPUTS */
.vde-birthday input,
.vde-birthday select,
.vde-birthday textarea {
  height: 42px;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}

.vde-birthday textarea {
  height: auto;
  min-height: 90px;
  resize: vertical;
}

.vde-birthday input::placeholder,
.vde-birthday textarea::placeholder {
  color: #b6b6b6;
}

.vde-birthday input:focus,
.vde-birthday select:focus,
.vde-birthday textarea:focus {
  border-color: #8a8a8a;
}

/* SUBMIT BUTTON */
.vde-birthday .submit-btn {
  margin-top: 10px;
  height: 52px;
  background: #0b67a3;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.vde-birthday .submit-btn:hover {
  opacity: 0.95;
}

/* FOOT NOTE */
.vde-birthday .form-note {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 6px;
}
/* Force full-width row inside grid */
.form-full {
  grid-column: 1 / -1;
}

/* Checkbox layout */
.enquiry-confirmation label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

/* Prevent checkbox shrinking */
.enquiry-confirmation input[type="checkbox"] {
  flex-shrink: 0;
}

/* MOBILE: SINGLE COLUMN */
@media (max-width: 768px) {
  .vde-birthday .birthday-form {
    grid-template-columns: 1fr;
  }
}

/* Force full-width page */
.vde-birthday-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: hidden;
}
.vde-birthday-page .page-inner {
  max-width: 1400px;   
  margin: 0 auto;
  padding: 0 16px;    
}
.vde-birthday-page .hero,
.vde-birthday-page .soft-section,
.vde-birthday-page .story-split,
.vde-birthday-page .how-it-feels {
  max-width: none;
}
.entry-content,
.site-content,
.site-main,
.page,
.post,
.wrap,
.container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
}
.vde-birthday-page {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: hidden;
}
.vde-birthday-page .page-inner {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .hero-actions a {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 14px 20px;
  }

}








