/* 
   Global Boutique Styles & Overrides 
   This file premium-izes the entire Webflow site
*/

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

:root {
  --primary-font: 'Fredoka', sans-serif;
  --bg-cream: #F2EDE4;
  --text-dark: #1C1C2E;
  --text-light: rgba(28, 28, 46, 0.7);
  --accent-purple: #A49CC1;
}

/* Global Overrides */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--primary-font) !important;
  background-color: var(--bg-cream) !important;
  color: var(--text-dark) !important;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.content-title,
.h1-style,
.h2-style,
.h3-style {
  font-family: var(--primary-font) !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  margin-top: 0;
}

p,
.text-lg,
.text-xl,
.text-md {
  font-family: var(--primary-font) !important;
  color: var(--text-light) !important;
}

a {
  font-family: var(--primary-font) !important;
  transition: all 0.3s ease;
}

/* Button Premiumization */
.button-primary,
.button-secondary {
  font-family: var(--primary-font) !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(164, 156, 193, 0.3) !important;
}

/* Section Glows */
section {
  position: relative;
  overflow: hidden;
}

section::after {
  content: '';
  position: absolute;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(164, 156, 193, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

section:nth-child(odd)::after {
  left: -10vw;
  bottom: 0;
}

section:nth-child(even)::after {
  right: -10vw;
  top: 0;
}

/* --- Orbit Diagram Specific Styles --- */

.orbit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.orbit-canvas {
  position: relative;
  width: 460px;
  height: 460px;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  border: 1.5px dashed rgba(28, 28, 46, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 60s linear infinite;
}

.orbit-planets {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  animation: orbit-spin 60s linear infinite;
}

.planet-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
}

.planet-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: orbit-counter-spin 60s linear infinite;
}

.planet-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
  z-index: 5;
}

.planet-dot:hover {
  transform: scale(1.2);
}

.planet-label {
  font-family: var(--primary-font) !important;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  max-width: 90px;
  line-height: 1.2;
}

.sun-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.6rem;
}

.sun-title {
  font-family: var(--primary-font) !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.sun-tag {
  font-family: var(--primary-font) !important;
  font-size: 13px;
  font-weight: 700;
  color: #7B6FAF;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .sun-title {
    font-size: 18px;
    line-height: 1.18;
  }

  .sun-tag {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .sun-title {
    font-size: 17px;
    line-height: 1.18;
  }

  .sun-tag {
    font-size: 12px;
  }
}

.sun-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 20px rgba(164, 156, 193, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  animation: orbit-breathe 4s ease-in-out infinite;
}

/* --- Pill Styles --- */

.about-pills-row {
  margin-top: 80px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-pill {
  background: white;
  padding: 20px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(164, 156, 193, 0.1);
}

.about-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(164, 156, 193, 0.15);
}

.about-pill-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.pill-content {
  display: flex;
  flex-direction: column;
}

.pill-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
}

.pill-sub {
  font-size: 14px;
  color: var(--text-light);
}

/* --- Premium STEM Enhancements --- */

.gradient-text-stem {
  background: linear-gradient(135deg, #FF9A44 0%, #FC6076 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.glass-box {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.stem-section {
  position: relative;
  overflow: hidden;
}

.stem-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 111, 175, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.stem-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 144, 74, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.stem-container {
  position: relative;
  z-index: 10;
}

/* --- Mission Control --- */
.features-left-content-heading-block .content-title {
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
}

/* --- Mission Control Image Box --- */

.mc-image-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(28, 28, 46, 0.15);
  max-width: 580px;
  width: 100%;
  animation: mc-float 4s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease;
}

.mc-image-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(28, 28, 46, 0.22);
}

.mc-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mc-image-box:hover img {
  transform: scale(1.06);
}

@keyframes mc-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- Bento Grid (Worlds Section) --- */

.worlds-section {
  padding: 80px 24px;
  width: 100%;
}

.worlds-section>.section-header-worlds,
.worlds-section>.bento-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.worlds-title-bold {
  font-family: 'Fredoka', 'Fredoka One', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(36px, 5vw, 56px) !important;
  line-height: 1.1 !important;
  color: #1C1C2E !important;
  margin-bottom: 14px !important;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.worlds-title-bold span {
  color: #7B6FAF !important;
}

.worlds-sub-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: rgba(28, 28, 46, 0.70) !important;
  max-width: 600px;
  margin: 0 auto !important;
  line-height: 1.65 !important;
  text-align: center;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.card:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.card:nth-child(2) {
  grid-column: span 7;
}

.card:nth-child(3) {
  grid-column: span 4;
}

.card:nth-child(4) {
  grid-column: span 3;
}

.card:nth-child(5) {
  grid-column: span 7;
}

.card:nth-child(6) {
  grid-column: span 5;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  min-height: 280px;
  background: #1C1C2E;
}

.card:nth-child(1) {
  min-height: 520px;
}

.card:nth-child(2),
.card:nth-child(5) {
  min-height: 260px;
}

.card:nth-child(3),
.card:nth-child(4) {
  min-height: 260px;
}

.card:nth-child(6) {
  min-height: 300px;
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.4s ease;
}

/* Subtle overlay that shows on hover to make it feel responsive */
.card:hover .card-gradient {
  background: rgba(28, 28, 46, 0.2);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 20, 0.92) 0%,
      rgba(10, 10, 20, 0.35) 45%,
      rgba(10, 10, 20, 0.05) 100%);
  transition: opacity 0.4s ease;
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
  transform: translateY(8px);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-name {
  font-family: var(--primary-font) !important;
  font-size: 24px;
  color: #fff !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6;
  font-weight: 400;
  max-width: 360px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--primary-font) !important;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 3;
}

.card:hover .card-img,
.card:hover .card-gradient {
  transform: scale(1.06);
}

.card:hover .card-content {
  transform: translateY(0);
}

.card:hover .card-desc {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .card:nth-child(1) {
    grid-column: span 12;
    min-height: 380px;
  }

  .card:nth-child(2) {
    grid-column: span 6;
  }

  .card:nth-child(3) {
    grid-column: span 6;
  }

  .card:nth-child(4) {
    grid-column: span 6;
  }

  .card:nth-child(5) {
    grid-column: span 6;
  }

  .card:nth-child(6) {
    grid-column: span 12;
  }
}

@media (max-width: 580px) {
  .bento-grid {
    gap: 12px;
  }

  .card {
    grid-column: span 12 !important;
    min-height: 280px !important;
    border-radius: 20px;
  }

  .card:nth-child(1) {
    min-height: 360px !important;
  }
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-counter-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes orbit-breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

/* --- Responsive Layout for STEM Section --- */
@media (max-width: 991px) {
  .stem-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 767px) {
  .stem-features-grid {
    grid-template-columns: 1fr !important;
  }
}
/* --- Shimmer / Shine Heading Animation --- */
.shimmer-heading {
  position: relative;
  overflow: hidden;
}

.shimmer-heading::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 70%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  animation: shimmer-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer-shine {
  0%   { left: -150%; }
  55%  { left: 160%; }
  100% { left: 160%; }
}

/* --- Hero Two-Column Layout --- */
.hero-two-col {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 80vh;
  padding: 80px 0 60px;
  position: relative;
}

.hero-left-col {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #6366f1;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  width: fit-content;
}

.hero-title-new {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  color: #1C1C2E;
  margin: 0;
}

.hero-title-accent {
  color: #6366f1;
}

.hero-paragraph-new {
  font-family: 'Fredoka', sans-serif !important;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(28, 28, 46, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 500px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-right-col {
  flex: 1;
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-img-shadow-wrap {
  filter: drop-shadow(0 16px 36px rgba(99,102,241,0.28)) drop-shadow(0 4px 12px rgba(0,0,0,0.12));
  flex-shrink: 0;
}

.hero-img-cloud {
  width: min(300px, 38vw);
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: polygon(
    8% 0%, 92% 0%, 100% 8%,
    100% 58%,
    94% 68%, 89% 77%, 83% 80%, 77% 77%, 72% 68%,
    67% 58%,
    61% 68%, 56% 77%, 50% 80%, 44% 77%, 39% 68%,
    33% 58%,
    28% 68%, 22% 77%, 17% 80%, 11% 77%, 6% 68%,
    0% 58%, 0% 8%
  );
  background: rgba(99,102,241,0.06);
}

.hero-img-placeholder {
  display: none;
}

.hero-cloud-svg {
  display: none;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-two-col {
    flex-direction: column !important;
    text-align: center;
    padding: 60px 0 40px;
    gap: 36px;
  }
  .hero-left-col {
    max-width: 100%;
    align-items: center;
  }
  .hero-paragraph-new {
    max-width: 100%;
  }
  .hero-right-col {
    max-width: 380px;
    width: 100%;
  }
}

/* --- Hero Section Spacing Fix --- */
#hero.hero-section {
  padding-top: 40px !important;
  padding-bottom: 0 !important;
}

.hero-two-col {
  min-height: unset !important;
  padding: 40px 0 60px !important;
}


/* =============================================
   ABOUT SECTION — MOBILE RESPONSIVE
   ============================================= */

/* Mobile feature grid — always hidden (orbit diagram shown at all sizes) */
.orbit-mobile-grid {
  display: none !important;
}

/* Tablet: stack layout, scale orbit diagram to 90% */
@media (max-width: 991px) {
  .about-content-wrapper {
    flex-direction: column !important;
    gap: 28px !important;
  }

  .about-content-block {
    min-width: unset !important;
    width: 100% !important;
    flex: none !important;
  }

  .orbit-visual-side {
    min-width: unset !important;
    width: 100% !important;
    flex: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    overflow: visible !important;
  }

  .orbit-wrap {
    display: flex !important;
    transform: scale(0.9);
    transform-origin: center center;
    margin: -40px auto;
  }
}

/* Mobile: scale orbit to 75% */
@media (max-width: 768px) {
  #about.about-section {
    padding: 52px 0 60px !important;
    overflow: visible !important;
  }

  .about-content-wrapper {
    gap: 12px !important;
  }

  .about-content-block .content-title,
  .about-content-block h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }

  .about-pills-row {
    margin-top: 20px !important;
    margin-bottom: 24px !important;
    gap: 10px !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .about-pill {
    padding: 10px 14px !important;
    gap: 10px !important;
    border-radius: 14px !important;
  }

  .orbit-wrap {
    transform: scale(0.75) !important;
    transform-origin: center center !important;
    margin: -70px auto !important;
  }
}

/* Small phones: scale orbit to 70% */
@media (max-width: 480px) {
  #about.about-section {
    padding: 40px 0 50px !important;
  }

  .about-content-block .content-title,
  .about-content-block h2 {
    font-size: 26px !important;
  }

  .about-content-block .text-lg {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .orbit-wrap {
    transform: scale(0.7) !important;
    transform-origin: center center !important;
    margin: -80px auto !important;
  }

  .about-pill {
    padding: 9px 12px !important;
  }

  .about-pill img {
    width: 28px !important;
    height: 28px !important;
  }

  .pill-title {
    font-size: 14px !important;
  }

  .pill-sub {
    font-size: 11px !important;
  }

  .orbit-mobile-card span {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    display: inline-block !important;
    max-width: 100% !important;
    line-height: 1.25 !important;
  }
}

/* ==============================================
   NEW NAVBAR — Full-width, site-matched style
   ============================================== */

.orbit-new-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
}

.orbit-navbar {
  pointer-events: all;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(164, 156, 193, 0.15);
  box-shadow: 0 2px 24px rgba(100, 80, 160, 0.07);
  transition: box-shadow 0.3s ease;
  position: relative;
}

/* Rainbow top accent bar */
.orbit-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8b4ff 0%, #a49cc1 30%, #ffd04a 60%, #c8b4ff 100%);
  background-size: 200% 100%;
  animation: navShimmer 5s linear infinite;
}

@keyframes navShimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.orbit-navbar.scrolled {
  box-shadow: 0 6px 28px rgba(100, 80, 160, 0.13);
}

.orbit-navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand: logo + name */
.orbit-nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.orbit-nav-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8b4ff, #ffd04a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2.5px;
  box-shadow: 0 4px 16px rgba(100, 80, 160, 0.2);
}

.orbit-nav-logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-nav-logo-img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
}

.orbit-nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.orbit-brand-name {
  font-family: var(--primary-font, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 800;
  color: #1c1c2e;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.orbit-brand-tag {
  font-family: var(--primary-font, 'Inter', sans-serif);
  font-size: 9.5px;
  font-weight: 500;
  color: #A49CC1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav links */
.orbit-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.orbit-nav-links a {
  display: inline-block;
  color: #4a4a6a;
  font-family: var(--primary-font, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  letter-spacing: 0.01em;
}

.orbit-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #A49CC1, #ffd04a);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.orbit-nav-links a:hover {
  color: #6b5fa0;
  background: rgba(164, 156, 193, 0.1);
}

.orbit-nav-links a:hover::after,
.orbit-nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.orbit-nav-links a.active {
  color: #6b5fa0;
  font-weight: 700;
}

/* Right side: CTA + burger */
.orbit-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.orbit-nav-cta {
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.orbit-nav-cta:hover {
  transform: translateY(-2px) !important;
}

.orbit-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(164, 156, 193, 0.12);
  border: 1.5px solid rgba(164, 156, 193, 0.3);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.orbit-nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #4a4a6a;
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile Drawer */
.orbit-nav-drawer {
  pointer-events: all;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: #1c1c2e;
  z-index: 10000;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.22,1,0.36,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  overflow: hidden;
}

.orbit-nav-drawer.open {
  right: 0;
}

.orbit-drawer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.orbit-drawer-close {
  margin-left: auto;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 16px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orbit-nav-drawer ul {
  list-style: none;
  padding: 16px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.orbit-nav-drawer ul a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--primary-font, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.orbit-nav-drawer ul a:hover {
  background: rgba(164, 156, 193, 0.15);
  color: #fff;
}

.orbit-drawer-cta {
  display: block;
  margin: 0 20px 28px;
  padding: 14px 24px;
  background: #A49CC1;
  color: #fff;
  font-family: var(--primary-font, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s;
}

.orbit-drawer-cta:hover {
  background: #8b82b0;
}

/* ==============================================
   NEW HERO SECTION
   ============================================== */

.orbit-hero-section {
  min-height: 100vh;
  background: #EDECE7;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.orbit-hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 8vw;
  min-height: 100vh;
}

/* LEFT */
.orbit-hero-left {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 600px;
}

.orbit-hero-badge {
  display: inline-block;
  background: rgba(26,58,42,0.1);
  color: #1A3A2A;
  font-family: var(--primary-font, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.05em;
}

.orbit-hero-heading {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #1A3A2A;
}

.orbit-hero-subtext {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  line-height: 1.65;
  color: #444;
  max-width: 440px;
}

.orbit-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.orbit-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #E8C840;
  color: #1A3A2A;
  font-family: var(--primary-font, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid #1A3A2A;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.orbit-btn-primary:hover {
  background: #C9AA20;
  transform: translateY(-2px);
}

.orbit-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #1A3A2A;
  font-family: var(--primary-font, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid #1A3A2A;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.orbit-btn-outline:hover {
  background: rgba(26,58,42,0.08);
  transform: translateY(-2px);
}

/* RIGHT: Stacked cards */
.orbit-hero-right {
  position: relative;
  height: 100vh;
  min-height: 560px;
}

.orbit-img-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
  border: 3px solid rgba(255,255,255,0.85);
}

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

/* back card */
.orbit-card-back {
  width: clamp(180px, 20vw, 300px);
  height: clamp(160px, 18vw, 260px);
  top: 12%;
  right: 6%;
  transform: rotate(8deg);
  z-index: 1;
}

/* front card */
.orbit-card-front {
  width: clamp(260px, 30vw, 440px);
  height: clamp(300px, 36vw, 500px);
  top: 22%;
  left: 5%;
  transform: rotate(-5deg);
  z-index: 2;
}

/* bolt — sits between the two stacked image cards */
.orbit-bolt-wrap {
  position: absolute;
  z-index: 5;
  left: 36%;
  top: 31%;
  transform: translate(-50%, -50%);
}

.orbit-bolt-svg {
  width: clamp(90px, 10vw, 140px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(252,215,24,0.55));
  pointer-events: none;
  user-select: none;
  display: block;
}

/* ── Hero Animations ── */
@keyframes orbitFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbitCardIn {
  from { opacity: 0; transform: rotate(var(--rot)) translateY(40px) scale(0.92); }
  to   { opacity: 1; transform: rotate(var(--rot)) translateY(0) scale(1); }
}
@keyframes orbitBoltIn {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.5) rotate(-15deg); }
  70%  { transform: translate(-50%,-50%) scale(1.15) rotate(5deg); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1) rotate(0deg); }
}

.orbit-hero-left.animate {
  animation: orbitFadeUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.orbit-card-back.animate {
  --rot: 8deg;
  animation: orbitCardIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.orbit-card-front.animate {
  --rot: -5deg;
  animation: orbitCardIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
.orbit-bolt-wrap.animate {
  animation: orbitBoltIn 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.7s both;
}

/* ── Hero Responsive ── */
@media (max-width: 900px) {
  .orbit-hero-grid {
    grid-template-columns: 1fr;
    padding: 120px 6vw 60px;
    min-height: auto;
    gap: 0;
  }
  .orbit-hero-left {
    padding-top: 0;
    max-width: 100%;
  }
  .orbit-hero-right {
    height: 360px;
    min-height: 360px;
  }
  .orbit-card-back  { top: 5%; right: 2%; width: 150px; height: 135px; }
  .orbit-card-front { top: 10%; left: 8%; width: 210px; height: 280px; }
  .orbit-bolt-wrap  { left: 34%; top: 38%; }
}

@media (max-width: 860px) {
  .orbit-navbar-inner {
    padding: 0 20px;
  }
  .orbit-nav-links {
    display: none;
  }
  .orbit-nav-cta {
    display: none;
  }
  .orbit-nav-burger {
    display: flex;
  }
  .orbit-brand-tag {
    display: none;
  }
}

@media (max-width: 540px) {
  .orbit-navbar-inner {
    height: 64px;
    padding: 0 16px;
  }
  .orbit-nav-logo-img {
    width: 40px;
    height: 40px;
  }
  .orbit-brand-name {
    font-size: 13px;
  }
  .orbit-hero-right { height: 290px; min-height: 290px; }
  .orbit-card-back  { width: 120px; height: 110px; }
  .orbit-card-front { width: 175px; height: 235px; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-hero-left,
  .orbit-img-card,
  .orbit-bolt-wrap {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .orbit-card-back  { transform: rotate(8deg) !important; }
  .orbit-card-front { transform: rotate(-5deg) !important; }
}

/* Footer Opening Hours */
.orbit-footer-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.orbit-hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(100, 80, 160, 0.1);
}

.orbit-hour-row:last-child {
  border-bottom: none;
}

.orbit-hour-day {
  font-size: 13.5px;
  font-weight: 500;
  color: #5a5a7a;
}

.orbit-hour-time {
  font-size: 13.5px;
  font-weight: 700;
  color: #1c1c2e;
  white-space: nowrap;
}

.orbit-hour-note {
  justify-content: flex-start;
  font-size: 12.5px;
  font-style: italic;
  padding-top: 4px;
}

.orbit-hour-note span {
  color: #7b6fa0;
  font-size: 12.5px;
}

/* Footer divider matching footer background */
.footer-divider {
  background-color: #EEF7FF !important;
}


