 /*
Theme Name: SoftPlay Adventures
Theme URI: https://yourdomain.com/
Author: Your Name
Version: 1.0
Description: Custom theme for SoftPlay using Elementor for body content.
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&family=Poppins:wght@300;400;500;600;700&family=Schoolbell&display=swap');

/* --- CSS Variables --- */
:root {
  --color-primary: #9edaf1;
  --color-secondary: #ffe8ef;
  --color-accent: #fec8e4;
  --color-highlight: #faffbc;
  --color-text: #353542;
  --color-heading: #8B4F8B;
  --color-purple: #8B4F8B;
  --color-pink: #F2C6CC;
  --color-green: #C9E4DE;
  --color-white: #fff;
  --color-gray: #f6f6f6;
  --font-base: 'Poppins', Arial, sans-serif;
  --font-heading: 'Shadows Into Light', cursive;
  --font-playful: 'Schoolbell', cursive;
  --radius: 25px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: 'â€º';
  margin-left: 0.5rem;
  color: var(--color-text-light);
  font-size: 1rem;
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.breadcrumb-item.current {
  color: var(--color-text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.8125rem;
  }
  
  .breadcrumb-list {
    gap: 0.25rem;
  }
  
  .breadcrumb-item:not(:last-child)::after {
    margin-left: 0.25rem;
  }
}

/* --- MOVING CLOUDS ANIMATION --- */
.clouds-wrapper {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}

.cloud-bg {
  position: absolute;
  background-image: url(https://uiu.nmc.mybluehost.me/staging/7974/wp-content/uploads/2025/08/cloud-bg.webp);
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 9.052vw;
  bottom: 0;
  left: 0;
  z-index: 10;
  margin-top: -172px;
}

@media (max-width: 490px) {
  .cloud-bg {
    bottom: 0;
    height: 43.052vw;
  }
}

.cloud {
  position: absolute;
  background-image: url(https://uiu.nmc.mybluehost.me/staging/7974/wp-content/uploads/2025/08/cloud.webp);
  background-repeat: repeat-x;
  background-size: cover;
  width: 150%;
  height: 11.773vw;
  z-index: 15;
}

@media (max-width: 933px) {
  .cloud {
    height: 23.773vw;
  }
}

@media (max-width: 768px) {
  .cloud, .cloud-bg{
    display: none;
  }
}

@media (max-width: 490px) {
  .cloud {
    height: 52.773vw;
    display: none;
  }
}

.cloud.cloud1 {
  bottom: -89px;
  left: -11%;
  z-index: 20;
  -webkit-animation: movingclouds 10s linear infinite, simple-move 4s 4s linear infinite alternate;
  -moz-animation: movingclouds 10s linear infinite, simple-move 4s 4s linear infinite alternate;
  -o-animation: movingclouds 10s linear infinite, simple-move 4s 4s linear infinite alternate;
  animation: movingclouds 10s linear infinite, simple-move 4s 4s linear infinite alternate;
}

.cloud.cloud2 {
  bottom: -58px;
  left: -6%;
  background-image: url(https://uiu.nmc.mybluehost.me/staging/7974/wp-content/uploads/2025/08/cloud-2.webpv);
  z-index: 30;
}

@media (max-width: 490px) {
  .cloud.cloud2 {
    left: -44%;
  }
}

.cloud.cloud3 {
  bottom: -60px;
  left: 0;
  -webkit-animation: movingclouds 25s linear infinite;
  -moz-animation: movingclouds 25s linear infinite;
  -o-animation: movingclouds 25s linear infinite;
  animation: movingclouds 25s linear infinite;
}

.cloud.cloud4 {
  bottom: -33px;
  left: 0;
  background-image: url(https://uiu.nmc.mybluehost.me/staging/7974/wp-content/uploads/2025/08/cloud-2.webp);
  -webkit-animation: movingclouding 60s linear infinite;
  -moz-animation: movingclouding 60s linear infinite;
  -o-animation: movingclouding 60s linear infinite;
  animation: movingclouding 60s linear infinite;
}

/* Keyframe Animations */
@keyframes movingclouds {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@-webkit-keyframes movingclouds {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@-moz-keyframes movingclouds {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@keyframes movingcloud {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@-webkit-keyframes movingcloud {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@-moz-keyframes movingcloud {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@keyframes movingclouding {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@-webkit-keyframes movingclouding {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@-moz-keyframes movingclouding {
  0% {
    margin-left: 0%;
  }
  100% {
    margin-left: -100%;
  }
}

@keyframes simple-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}

@-webkit-keyframes simple-move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-moz-keyframes simple-move {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(10px);
    transform: translateX(10px);
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p{
  margin-bottom: 15px;    
}

h2 {
  font-size 62px;
}


@media screen and (max-width: 480px){
  h2{
    font-size: 32px!important;
  }
}


br{
  display:none;
}

.site-main{
  background-color: white;
  background-image: url("https://uiu.nmc.mybluehost.me/staging/7974/wp-content/uploads/2025/08/sparkle-alpha-scaled.webp");
  background-repeat: repeat-y;
  background-size: contain;
}

@media screen and (max-width: 768px){
  .site-main {
    /*! margin-top: -100px!important; */;
  }
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* --- HEADER STYLES --- */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
  padding: 1rem 0 1rem 0;
  /* overflow: visible; */
  max-height: 90px;
}

.site-header .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  position: relative;
}

/* Logo Styles with Offset Effect */
.logo {
  flex-shrink: 0;
  padding: 0.75rem;
  background: var(--color-white);
  border-radius: 25px;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.15); */
  position: relative;
  /* transform: translateY(-10px) scale(1.05); */
  z-index: 101;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* Logo hover effects are defined in responsive sections */

.logo img {
  height: 150px;
  width: auto;
  display: block;
}

.logo a {
  display: block;
}

/* Mobile hamburger (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  width: 36px;
  height: 0;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  flex-shrink: 0;
  transform: rotate(90deg);
}
/* vertical bars (kebab-like) */
.mobile-menu-toggle .bar {
  width: 2px;
  height: 22px;
  background: var(--color-text);
  display: block;
  border-radius: 2px;
}

/* Navigation Styles */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.primary-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 00;
  font-size: 16px;
  font-family: var(--font-playful);
  padding: 9px 0px;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}

.primary-menu a:hover {
  color: var(--color-purple);
}

.primary-menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-purple);
  border-radius: 1px;
}

/* Mega menu base: white dropdown panel that supports 2-row layout */
.primary-menu li.menu-item-has-children {
  position: relative;
}

/* Hide by default; reveal on hover/focus for keyboard accessibility */
.primary-menu li.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: -70%;
  transform: translateX(-50%) translateY(-2px);
  min-width: 720px;
  max-width: min(92vw, 1100px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 18px 22px;
  display: none;
  z-index: 999;
}

.primary-menu li.menu-item-has-children:hover > .sub-menu,
.primary-menu li.menu-item-has-children:focus-within > .sub-menu {
  display: grid;
}

/* Two-row responsive grid; auto columns with min size for nice wrapping */
.primary-menu li.menu-item-has-children > .sub-menu {
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  grid-auto-rows: auto;
  row-gap: 12px;
  column-gap: 18px;
}

/* Force two visual rows by limiting height and letting items wrap */
@media (min-width: 768px) {
  .primary-menu li.menu-item-has-children > .sub-menu {
    grid-auto-flow: row;
  }
}

/* Submenu items */
.primary-menu li.menu-item-has-children > .sub-menu > li {
  list-style: none;
}

.primary-menu li.menu-item-has-children > .sub-menu a {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.3;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  background: transparent;
}

.primary-menu li.menu-item-has-children > .sub-menu a:hover,
.primary-menu li.menu-item-has-children > .sub-menu a:focus {
  background: rgba(139, 79, 139, 0.08);
  color: var(--color-purple);
  transform: translateY(-1px);
}

/* Keep mega menu inside viewport horizontally */
@media (max-width: 900px) {
  .primary-menu li.menu-item-has-children > .sub-menu {
    left: 0;
    right: 0;
    transform: none;
    margin: 0 auto;
    width: 100vw;
    max-width: none;
    border-radius: 0;
    position: fixed; /* prevent clipping when header is sticky */
    top: var(--overlay-offset, 70px);
    z-index: 3000;
  }

  .primary-menu li.menu-item-has-children > .sub-menu {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 12px;
  }
}

/* Overlay navigation inherits the same mega styles */
.overlay-main-nav .menu-item-has-children { position: relative; }
.overlay-main-nav .menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: -70%;
  transform: translateX(-50%) translateY(-2px);
  min-width: 720px;
  max-width: min(92vw, 1100px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 18px 22px;
  display: none;
  z-index: 3000; /* above overlay chrome */
}
.overlay-main-nav .menu-item-has-children:hover > .sub-menu,
.overlay-main-nav .menu-item-has-children:focus-within > .sub-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  row-gap: 12px;
  column-gap: 18px;
}

/* Ensure dropdown never hides behind overlay header */
.overlay-nav { overflow: visible; }

/* Mobile Navigation Drawer */
.mobile-nav { 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.35s, opacity 0.35s ease;
}

.mobile-nav.active { 
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.mobile-nav__backdrop { 
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav.active .mobile-nav__backdrop { 
  opacity: 1;
}

.mobile-nav__panel { 
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 30px rgba(0,0,0,0.12);
  will-change: transform;
}

.mobile-nav.active .mobile-nav__panel { 
  transform: translateX(0);
}
.mobile-nav__header { 
  display: flex; 
  align-items: center; 
  justify-content: flex-end; 
  padding: 1rem 1rem .5rem; 
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-close { 
  background: #fff; 
  border: 1px solid rgba(0,0,0,0.08); 
  width: 38px; 
  height: 38px; 
  border-radius: 8px; 
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: #f5f5f5;
  border-color: rgba(0,0,0,0.15);
  color: #333;
}

.mobile-main-nav { 
  padding: 1rem; 
  overflow-y: auto; 
  flex: 1;
}

.mobile-menu { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: grid; 
  gap: 4px; 
}

.mobile-menu > li > a { 
  display: block; 
  padding: 12px 16px; 
  border-radius: 12px; 
  text-decoration: none; 
  color: var(--color-text); 
  font-family: var(--font-playful); 
  font-size: 18px; 
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.mobile-menu > li > a:hover { 
  background: var(--color-secondary);
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.mobile-menu .menu-item-has-children > a { 
  position: relative; 
  padding-right: 40px;
}

.mobile-menu .menu-item-has-children > a::after { 
  content: '+'; 
  font-size: 20px; 
  position: absolute; 
  right: 16px; 
  top: 50%; 
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  color: #777;
}

.mobile-menu .menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-menu .menu-item-has-children > .sub-menu {
  display: none;
  padding-left: 16px;
  list-style: none;
  margin-top: 4px;
  /* border-left: 2px solid var(--color-accent); */
}

.mobile-menu .menu-item-has-children.open > .sub-menu { 
  display: grid; 
  gap: 4px; 
}

.mobile-menu .sub-menu a {
  font-size: 12px;
  color: var(--color-text);
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(
  --font-base);
}

.mobile-menu .sub-menu a:hover {
  background: var(--color-highlight);
}

.mobile-nav__actions { 
  padding: 1rem; 
  border-top: 1px solid rgba(0,0,0,0.1);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--color-text);
  border: none;
  border-radius: 12px;
  font-family: var(--font-playful);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-block:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
/* disable body scroll when drawer open */
html.no-scroll, html.no-scroll body { overflow: hidden; }

/* Mobile Menu Toggle Button Improvements */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  position: relative;
  transform: rotate(180deg);
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle:hover .bar {
  background: var(--color-primary);
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Show mobile UI on tablet and below; hide on desktop */
@media (max-width: 1024px) {
  .mobile-menu-toggle {display: inline-flex;margin-top: -120px;border: 0;}
  .main-nav { display: none; }
  .overlay-nav { display: none; }
  /* header spacing and order */
  .site-header .container {justify-content: space-between;align-items: center;}
  .logo { order: 1; }
  .header-actions {order: 2;margin: -120px 0 0 0;}
  .mobile-menu-toggle {order: 3;}
}

@media (max-width: 768px) {
 .mobile-menu-toggle {
     order: 3;
     margin:0;
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Header Button */
.btn-header {
  background: var(--color-green);
  color: var(--color-text);
  border-radius: var(--radius);
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-family: var( --font-playful);
}

 .btn-header::after{
   content: "\2192";
  font-size: 18px;
  margin-left: 2px;
 }

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons .facebook {
  background: var(--color-pink);
  color: var(--color-white);
}

.social-icons .instagram {
  background: var(--color-pink);
  color: var(--color-white);
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* --- OVERLAY NAVIGATION STYLES --- */
.overlay-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  z-index: 2000;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  padding: 0.75rem 0;
  will-change: transform;
  /* Important: allow dropdowns to extend outside the bar */
  overflow: visible;
  isolation: isolate;
}

.overlay-nav.visible {
  transform: translateY(0);
}

/* When overlay is visible, provide a CSS var for submenu offset */
body.overlay-active {
  --overlay-offset: 70px;
}

/* Slide-in animation for first appearance */
.overlay-nav.slide-in {
  animation: slideInFromTop 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Subtle entrance animation for nav items */
.overlay-nav.visible .overlay-menu li {
  animation: fadeInUp 0.3s ease-out forwards;
  list-style: none;
}

.overlay-nav.visible .overlay-menu li:nth-child(1) {animation-delay: 0.1s;}
.overlay-nav.visible .overlay-menu li:nth-child(2) { animation-delay: 0.15s; }
.overlay-nav.visible .overlay-menu li:nth-child(3) { animation-delay: 0.2s; }
.overlay-nav.visible .overlay-menu li:nth-child(4) { animation-delay: 0.25s; }
.overlay-nav.visible .overlay-menu li:nth-child(5) { animation-delay: 0.3s; }
.overlay-nav.visible .overlay-menu li:nth-child(6) { animation-delay: 0.35s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading state for overlay navigation */
.overlay-nav.loading {
  pointer-events: none;
}

.overlay-nav.loading .overlay-menu li {
  opacity: 0.5;
}

.overlay-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
}

/* Overlay Logo */
.overlay-logo {
  flex-shrink: 0;
}

.overlay-logo img {
  height: 90px;
  width: auto;
  display: block;
}

.overlay-logo a {
  display: block;
}

/* Overlay Navigation */
.overlay-main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.overlay-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.overlay-menu li {
  position: relative;
}

.overlay-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 16px;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-playful);
}

.overlay-menu a:hover {
  background: rgba(139, 79, 139, 0.1);
  color: var(--color-purple);
}

/* Overlay Actions */
.overlay-actions {
  flex-shrink: 0;
}

.btn-overlay {
  background: var(--color-green);
  color: var(--color-text);
  border-radius: 15px;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-playful);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-overlay::after {
   content: "\2192";
  font-size: 16px;
}

.btn-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  background: #D4F4ED;
}

/* Mobile Overlay Navigation */
@media (max-width: 768px) {
  .overlay-nav {
    padding: 0.5rem 0;
  }
  
  .overlay-nav-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
  }
  
  .overlay-logo {
    order: 1;
    margin-bottom: 0.25rem;
  }
  
  .overlay-logo img {
    height: 35px;
  }
  
  .overlay-main-nav {
    order: 3;
    flex: 100%;
    margin: 0.25rem 0;
  }
  
  .overlay-menu {
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .overlay-menu a {
    font-size: 12px;
    padding: 0.25rem 0.5rem;
  }
  
  .overlay-actions {
    order: 2;
  }
  
  .btn-overlay {
    padding: 0.375rem 1rem;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .overlay-menu {
    gap: 0.5rem;
  }
  
  .overlay-menu a {
    font-size: 11px;
    padding: 0.25rem 0.375rem;
  }
  
  .btn-overlay {
    padding: 0.25rem 0.75rem;
    font-size: 11px;
  }
  
  .btn-overlay::after {
    font-size: 14px;
  }
}

/* --- HERO STYLES --- */
.hero {
  /* Background setup */
  background-image: url('assets/img/hero-bg.jpg'); /* Fallback if inline style fails */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  
  /* Layout */
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1rem;
  
  /* Content flow */
  overflow: hidden;
}

.hero-content {
  /* Layout */
  max-width: 700px;
  width: 100%;
  text-align: left;
  position: relative;
  padding: 250px 0;
  z-index: 3;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-playful);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.hero-title {
  font-family: var(--font-heading);
  color: var(--color-purple);
  font-size: 60px;
  line-height: 1.0;
  font-weight: normal;
  margin: 0;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 1.875rem;
  color: var(--color-text);
  line-height: 1.5;
  font-weight: 400;
}

.btn-primary {
  background: var(--color-pink);
  color: var(--color-black);
  border-radius: var(--radius);
  padding: 12px 38px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 000;
  font-family: var(--font-playful);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  background: #FF9EB5;
}

.btn-primary::after {
   content: "\2192";
  font-size: 18px;
  margin-left: 2px;
}

.site-footer {
    background: #DBCDF0;
    font-family: var(--font-playful);
}

.site-footer .menu-footer-container ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.site-footer .menu-footer-container ul li{
  padding-top: 15px;
}

.site-footer .menu-footer-container ul li a{
  color: var(--color-black);
  text-decoration: none;
  padding: 5px;
}

.site-footer .menu-footer-container ul li a:hover{
  color: var(--color-purple);
  text-decoration: none;  
}

.section-right-col img {
    border-radius: 20px;
    height: 254px;
    width: 200px;
    object-fit: cover;
}

.footer-info {
    font-size: 12px;
    padding: 0 0 20px;
    text-align: center;
}


.font-packages {
  color: #8FC7FF;
}

.font-features {
  color:#FF35A3;
}

.font-addons {
  color: var(--color-purple);
}

.font-events {
  color: #50A794;
}


.font-gettouch {
  color: #E8AECD;
}

.font-questions {
  color: #EEBB97;
}


/* Responsive Design */
@media (max-width: 768px) {
  /* Header responsive */
  .site-header {
    padding: 0.75rem 0 1.25rem 0;
    position: fixed!important;
    width: 100%;
  }
  
  .site-header .container {
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: auto;
    justify-content: space-between;
  }
  
  .logo {
    order: 1;
    margin-bottom: 0.5rem;
    transform: translateY(-5px) scale(1.02);
  }
  
  .logo:hover {
    transform: translateY(-7px) scale(1.05);
  }
  
  .logo img {
    height: 55px;
  }
  
  .main-nav {
    order: 3;
    flex: 100%;
    margin: 0.5rem 0;
  }
  
  .primary-menu {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  
  .header-actions {
    order: 2;
    gap: 0.5rem;
    margin: 0;
  }
  
  .social-icons {
    gap: 0.25rem;
  }

  /* Hero responsive */
  .hero {
    min-height: 60vh;
    padding: 2.5rem 1.25rem;
    justify-content: center;
    background-position: 0 90px;
    background-size: contain;
    min-height: 430px;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 2.1875rem 1.5625rem;
    margin-top: 0px;
    display: none;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.9375rem;
  }
}

/* Tablet landscape styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .site-header {
    padding: 0.875rem 0 1rem 0;
  }
  
  .site-header .container {
    gap: 0.75rem;
  }
  
  /* Logo styling inherits from parent selector */
  
  .logo:hover {
    transform: translateY(-10px) scale(1.06);
  }
  
  .logo img {
    height: 150;
  }
  
  .primary-menu {
    gap: 1.5rem;
  }
  
  .btn-header {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}

.contact-form-wrapper {
  /* background: #fdfaf5; */
  /*! padding: 2rem; */
  max-width: 1380px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  width: ;
}

.form-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.form-title .get {
  font-weight: 600;
  font-family: 'Comic Sans MS', cursive;
}

.form-title .touch {
  color: #e3a8c0;
  font-family: 'Pacifico', cursive;
}

.form-row {
  margin-bottom: 1.5rem;
}

.two-columns p{
  display: flex;
  flex: unset;
  flex-direction: row;
}

/* Shared row layout */
.name-row,
.email-phone-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

/* Flex children take equal width */
.name-row .form-input,
.email-phone-row .form-input {
  flex: 1;
}

/* Field appearance */
.wpcf7-form .form-input {
  background: #fff;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  width: 100%;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #222;
}

.wpcf7-form-control-wrap {
	position: relative;
	width: 100%;
	padding: 10px;
}

/* Placeholder styling */
.wpcf7-form .form-input::placeholder {
  color: #222;
  opacity: 0.8;
}

/* Stack on smaller screens */
@media (max-width: 768px) {
  .name-row,
  .email-phone-row {
    flex-direction: column;
    gap: 1rem;
  }
}


.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-select{
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 1rem;
  background: #fff;
}

.two-columns input {
  width: 100%;
  flex: 1 1 45%;
}

.submit-row {
  text-align: center;
}

.custom-submit {
  background-color: #eebad0;
  color: #000;
  font-family: var(--font-playful);
  padding: 1rem 2rem;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-submit:hover {
  background-color: #ffffff;
}


/* Mobile specific styles */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .site-header {
    padding: 0.5rem 0 1rem 0;
  }
  
  .site-header .container {
    gap: 0.25rem;
  }
  
  .logo {
    padding: 0.5rem;
    transform: translateY(-3px) scale(1.0);
    border-radius: 20px;
  }
  
  .logo:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .logo img {
    height: 45px;
  }
  
  .btn-header {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .social-icons a {
    width: 32px;
    height: 32px;
  }
  
  .hero {
    padding: 2rem 1rem;
    background-size: contain;
    min-height: 310px;
  }
  
  .hero-content {
    /*! padding: 1.875rem 1.25rem; */
    display: none;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.875rem;
  }
   
  .section-right-col {
    transform: translateX(0);
    padding-bottom: 50px;
    top: 100px;
  }

  .section-right-col .e-con-inner {
    left: 0;
    position: relative;
  }
}

.elementor-widget-n-accordion .e-n-accordion-item-title-icon span {
  background: #F7D9C4!important;
  padding: 15px 20px 30px 20px;
}

.e-n-accordion-item-title {
  background-color: #F5F2EB;
  padding: 0 !important;
}

/* Large desktop styles */
@media (min-width: 1200px) {
  .container {
    max-width: 1600px;
    padding: 0 2rem;
  }
  
  .site-header {
    padding: 1.25rem 0 1rem 0;
  }
  
  .site-header .container {
    gap: 2rem;
  }
  
  .logo {
    padding: 1rem;
    border-radius: 30px;
  }
  
  /* Logo hover effects removed - static for large screens */
  
  .logo img {
    height: 150px;
  }
  
  .primary-menu {
    gap: 2.5rem;
  }
  
  .hero-content {
    max-width: 800px;
  }
}

.section-packages .middle{
  position:relative;
  bottom: 40px;
}

.section-packages .section-left-col{
  position:relative;
  z-index: 2;
}

.section-right-col {
  transform: translateX(-100px);
  padding-bottom: 50px;
}

.section-right-col .e-con-inner {
  left: 20px;
  position: relative;
}

@media (max-width: 768px) {
    .section-right-col {
    transform: translateX(0px);
    padding-bottom: 90px;
    padding-top: 90px
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero-content {
    padding: 1.875rem 1.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.875rem;
  }
  
  .section-right-col {
   transform: translateX(0);
   padding-bottom: 50px;
   top: 100px;
  }

.section-right-col .e-con-inner {
   left: 0;
   position: relative;
 }
}

/* Layout adjustments */
.cf7-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cf7-field {
  flex: 1;
  min-width: 200px;
}

.cf7-full {
  flex: 1 1 100%;
}

/* Custom input styling */
.cf7-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Multi-column checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  gap: 4px 12px;
}

.wpcf7-checkbox {
   column-count: 5;
   display: block;
}

@media screen and (max-width:768px){
 .wpcf7-checkbox {
   column-count: 2;
   display: block;
 }
}

/* ===== Base Form Styling ===== */
.wpcf7 form {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #333;
  padding: 0 20px;
}
.wpcf7 label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact .wpcf7 input[type="text"],
.contact .wpcf7 input[type="email"],
.contact .wpcf7 input[type="date"],
.contact .wpcf7 input[type="time"],
.contact .wpcf7 input[type="number"],
.contact .wpcf7 textarea,
.contact .wpcf7 select{
  background: #FFFDF8!important;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="date"],
.wpcf7 input[type="time"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 1rem;
  gap: -20px;
  display: grid;
  margin-right: 0px;
  border: 1px solid #ccc;
  border-radius: 1rem;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #FFFFFF;
}

/* Flex layout for grouped fields */
.cf7-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cf7-flex > div {
  flex: 1;
  min-width: 200px;
}
.cf7-full {
  flex: 1 1 100%;
}

/* Google-style radio & checkbox */
.wpcf7-list-item {
  display: block;
  margin-bottom: 6px;
}
.wpcf7-list-item input[type="radio"],
.wpcf7-list-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}
.wpcf7-list-item input[type="checkbox"] {
  border-radius: 4px;
}
.wpcf7-list-item input[type="radio"]:checked {
  border-color: #4285F4;
  background: radial-gradient(#4285F4 50%, transparent 51%);
}
.wpcf7-list-item input[type="checkbox"]:checked {
  border-color: #4285F4;
  background-color: #4285F4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10.8L3.2 8 2 9.2l4 4 8-8L12.8 4l-6.8 6.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/* Submit button */
.wpcf7 input[type="submit"] {
  background-color: #F2C6DE;
  /* border-radius: 50px; */
  color: black;
  font-size: 16px;
  font-family: var(--font-playful);
  padding: 20px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.wpcf7 input[type="submit"]:after {
    position:relative;
    content: "\2192";
}

.wpcf7 input[type="submit"]:hover {
  background-color: #fadfee;
}

/* Error highlight & shake */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}
.wpcf7-not-valid {
  border-color: #d93025 !important;
  box-shadow: 0 0 5px rgba(217,48,37,0.5);
  animation: shake 0.3s ease-in-out;
}

.elementor-shortcode li {
    list-style: square;
    color: #FC46A9;
    border-bottom: 3px dotted #cecece;
    padding: 2px;
}

.elementor-shortcode ul {
    padding-left: 20px;
}

.elementor-shortcode li a {
    font-size: 14px;
    color: black
}

.elementor-shortcode li a:hover {
    font-size: 14px;
    color: #FC46A9;
}

@media screen and (max-width:480px){
  .elementor-element.elementor-element-412daa62 {
    padding:0!important;
  }
}

.section-right-col img {
    border-radius: 20px!important;
    height: 254px!important;
    width: 200px!important;
    object-fit: cover!important;
}