/* WellnessVault24 - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --vault-teal: #0d9488;
  --vault-blue: #0284c7;
  --vault-green: #34d399;
  --vault-dark: #0f172a;
  --vault-muted: #64748b;
  --site-header-height: 4rem;
}

@media (min-width: 1024px) {
  :root {
    --site-header-height: 4.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  padding-top: var(--site-header-height);
}

#main-content {
  scroll-margin-top: var(--site-header-height);
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--vault-teal);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: calc(var(--site-header-height) + 0.5rem);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header:has(#mobile-menu.open) {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.nav-link {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #0d9488;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, #0d9488, #0891b2);
  color: #fff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

.hamburger span {
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#mobile-menu {
  display: none;
}

#mobile-menu.open {
  display: block;
}

.hero-vault {
  background: linear-gradient(145deg, #f0fdfa 0%, #ecfeff 35%, #f0fdf4 70%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-vault::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12), transparent 70%);
}

.hero-vault::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1), transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: #fff;
  border: 1px solid #ccfbf1;
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #0d9488;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.08);
}

/* Hero vault dashboard visual */
.hero-vault-visual {
  min-height: 360px;
}

.hero-glass-back {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(204, 251, 241, 0.8);
  box-shadow: 0 24px 48px rgba(13, 148, 136, 0.1);
}

.hero-glass-timeline {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.hero-timeline-step {
  position: relative;
  padding-left: 1.25rem;
}

.hero-timeline-step::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #0d9488;
}

.hero-timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0.4rem;
  top: 1rem;
  width: 1px;
  height: calc(100% + 0.35rem);
  background: linear-gradient(to bottom, #99f6e4, transparent);
}

.hero-orbit-ring {
  width: 11.5rem;
  height: 11.5rem;
}

.hero-orbit-center {
  background: linear-gradient(145deg, #0d9488, #0284c7);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.35);
}

.hero-orbit-track {
  border: 1.5px dashed rgba(13, 148, 136, 0.25);
}

.hero-orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  margin: -1.25rem 0 0 -1.25rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #ccfbf1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hero-orbit-node:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.15);
}

.hero-orbit-node--0 { transform: rotate(0deg) translateY(-5.75rem) rotate(0deg); }
.hero-orbit-node--60 { transform: rotate(60deg) translateY(-5.75rem) rotate(-60deg); }
.hero-orbit-node--120 { transform: rotate(120deg) translateY(-5.75rem) rotate(-120deg); }
.hero-orbit-node--180 { transform: rotate(180deg) translateY(-5.75rem) rotate(-180deg); }
.hero-orbit-node--240 { transform: rotate(240deg) translateY(-5.75rem) rotate(-240deg); }
.hero-orbit-node--300 { transform: rotate(300deg) translateY(-5.75rem) rotate(-300deg); }

.hero-orbit-node--0:hover { transform: rotate(0deg) translateY(-5.75rem) rotate(0deg) scale(1.08); }
.hero-orbit-node--60:hover { transform: rotate(60deg) translateY(-5.75rem) rotate(-60deg) scale(1.08); }
.hero-orbit-node--120:hover { transform: rotate(120deg) translateY(-5.75rem) rotate(-120deg) scale(1.08); }
.hero-orbit-node--180:hover { transform: rotate(180deg) translateY(-5.75rem) rotate(-180deg) scale(1.08); }
.hero-orbit-node--240:hover { transform: rotate(240deg) translateY(-5.75rem) rotate(-240deg) scale(1.08); }
.hero-orbit-node--300:hover { transform: rotate(300deg) translateY(-5.75rem) rotate(-300deg) scale(1.08); }

.hero-focus-chip {
  background: rgba(240, 253, 250, 0.9);
  border: 1px solid #ccfbf1;
}

/* Hero — mobile only (up to 768px) */
@media (max-width: 768px) {
  .hero-vault {
    overflow: hidden;
  }

  .hero-vault > .max-w-6xl {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero-vault .grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .hero-content {
    width: 100%;
    order: 1;
  }

  .hero-content .hero-badge {
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.65;
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .hero-content > .flex {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-content .btn-primary,
  .hero-content .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-vault-visual {
    order: 2;
    position: relative;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
    padding: 0;
    overflow: visible;
  }

  .hero-glass-back {
    display: none !important;
  }

  /* Orbit visual — stacked first (below CTAs) */
  .hero-orbit-wrap {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    order: 1;
    width: 100%;
    max-width: 17.5rem;
    margin: 0 auto;
    align-items: center;
    padding: 0.5rem 0 0;
    z-index: 1;
  }

  .hero-focus-chip {
    font-size: 0.6rem;
    padding: 0.35rem 0.75rem;
  }

  .hero-orbit-ring {
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
  }

  .hero-orbit-center {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }

  .hero-orbit-node {
    width: 1.75rem;
    height: 1.75rem;
    margin: -0.875rem 0 0 -0.875rem;
    font-size: 0.55rem;
    border-radius: 0.45rem;
  }

  .hero-orbit-node--0 { transform: rotate(0deg) translateY(-3.65rem) rotate(0deg); }
  .hero-orbit-node--60 { transform: rotate(60deg) translateY(-3.65rem) rotate(-60deg); }
  .hero-orbit-node--120 { transform: rotate(120deg) translateY(-3.65rem) rotate(-120deg); }
  .hero-orbit-node--180 { transform: rotate(180deg) translateY(-3.65rem) rotate(-180deg); }
  .hero-orbit-node--240 { transform: rotate(240deg) translateY(-3.65rem) rotate(-240deg); }
  .hero-orbit-node--300 { transform: rotate(300deg) translateY(-3.65rem) rotate(-300deg); }

  .hero-orbit-node--0:hover { transform: rotate(0deg) translateY(-3.65rem) rotate(0deg) scale(1.05); }
  .hero-orbit-node--60:hover { transform: rotate(60deg) translateY(-3.65rem) rotate(-60deg) scale(1.05); }
  .hero-orbit-node--120:hover { transform: rotate(120deg) translateY(-3.65rem) rotate(-120deg) scale(1.05); }
  .hero-orbit-node--180:hover { transform: rotate(180deg) translateY(-3.65rem) rotate(-180deg) scale(1.05); }
  .hero-orbit-node--240:hover { transform: rotate(240deg) translateY(-3.65rem) rotate(-240deg) scale(1.05); }
  .hero-orbit-node--300:hover { transform: rotate(300deg) translateY(-3.65rem) rotate(-300deg) scale(1.05); }

  /* Daily Wellness Path — below orbit, no overlap */
  .hero-glass-timeline {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    order: 2;
    width: 100% !important;
    max-width: 100%;
    padding: 1.125rem 1.25rem;
    z-index: 1;
  }

  .hero-vault::before,
  .hero-vault::after {
    opacity: 0.5;
  }

  .hero-timeline-step {
    padding-left: 1.125rem;
  }
}

.float-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #f1f5f9;
  transition: transform 0.25s, box-shadow 0.25s;
}

.float-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.float-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #0d9488, #0891b2);
  color: #fff;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #0d9488;
  border: 2px solid #99f6e4;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: #f0fdfa;
  border-color: #5eead4;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d9488;
  margin-bottom: 0.5rem;
}

.category-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: transform 0.25s, box-shadow 0.25s;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.category-card img {
  transition: transform 0.4s;
}

.category-card:hover img {
  transform: scale(1.05);
}

.habit-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.habit-card:hover {
  border-color: #99f6e4;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.08);
}

.article-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: transform 0.25s, box-shadow 0.25s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.program-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: transform 0.25s;
}

.program-card:hover {
  transform: translateY(-4px);
}

.cta-vault {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 40%, #0284c7 100%);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-vault::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15), transparent 50%);
}

.newsletter-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: #5eead4;
}

.site-footer {
  background: #0f172a;
  color: #94a3b8;
}

.footer-link {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #5eead4;
}

.page-banner {
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
  border-bottom: 1px solid #e2e8f0;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #5eead4;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.25s;
  color: #0d9488;
}

.info-strip {
  background: linear-gradient(90deg, #f0fdfa, #f0fdf4);
  border-radius: 1rem;
  border: 1px solid #ccfbf1;
}


html,
body {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* 2026 responsive brand polish */
:root {
  --vault-teal: #00a884;
  --vault-blue: #0057ff;
  --vault-dark: #07111f;
}

.hero-vault {
  min-height: auto;
  background: radial-gradient(circle at 82% 18%, rgba(0, 168, 132, 0.2), transparent 28rem), linear-gradient(135deg, #ffffff 0%, #f2fbf8 52%, #e7f2ff 100%);
}

.hero-content h1 {
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-badge,
.btn-primary,
.btn-outline {
  border-radius: 999px;
}

.hero-glass-back,
.hero-glass-timeline,
.hero-orbit-center {
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

.site-footer {
  background: #07111f;
}

.site-footer .border-t p::after {
  content: " Educational wellness content only; consult qualified professionals for medical, nutrition, or fitness advice.";
  display: block;
  margin-top: 0.5rem;
  color: rgb(148 163 184);
}

@media (max-width: 640px) {
  #mobile-menu {
    display: none;
  }

  #mobile-menu.open {
    display: block;
  }

  .hero-vault .max-w-6xl {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-vault {
    overflow: hidden;
  }

  .hero-vault .grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-content,
  .hero-content h1,
  .hero-content p {
    width: 100%;
    max-width: min(18rem, calc(100vw - 2rem)) !important;
    min-width: 0;
  }

  .hero-content {
    align-self: flex-start;
    margin-left: 1rem;
    margin-right: auto;
  }

  .hero-content h1 {
    max-width: min(18rem, calc(100vw - 2rem)) !important;
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: none;
    overflow-wrap: break-word;
  }

  .hero-content .flex.flex-col {
    width: 100%;
    max-width: min(18rem, calc(100vw - 2rem));
  }

  .hero-content a {
    justify-content: center;
  }

  .hero-vault-visual {
    width: 100%;
    max-width: calc(100vw - 2rem) !important;
    min-width: 0;
    min-height: 420px;
    transform: scale(0.94);
    transform-origin: top center;
  }
}

/* Inner page banners: image backgrounds with readable text */
.page-banner {
  min-height: 390px;
  display: flex;
  align-items: center;
  background-color: #07111f !important;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,17,31,0.86), rgba(7,17,31,0.56), rgba(7,17,31,0.18));
}

.page-banner > div {
  position: relative;
  z-index: 1;
}

.page-banner h1,
.page-banner p,
.page-banner .section-label {
  color: #fff !important;
  text-shadow: 0 3px 18px rgba(0,0,0,0.48);
}

body.page-about .page-banner { background-image: url("images/about-wellness.jpg") !important; }
body.page-wellness-programs .page-banner { background-image: url("images/wellness-programs-banner.jpg") !important; }
body.page-healthy-living .page-banner { background-image: url("images/healthy-living-banner.jpg") !important; }
body.page-articles .page-banner { background-image: url("images/articles-banner.jpg") !important; }
body.page-contact .page-banner { background-image: url("images/contact-banner.jpg") !important; }

/* Full-width image hero override */
.hero-vault {
  min-height: calc(100vh - var(--site-header-height));
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 45%, rgba(255,255,255,0.18) 100%), url("images/wellness-programs-banner.jpg") center right / cover no-repeat !important;
}

.hero-vault > .max-w-6xl {
  max-width: 1180px !important;
  width: min(1180px, calc(100% - 32px));
}

.hero-vault-visual {
  display: none;
}

@media (max-width: 640px) {
  .hero-vault {
    min-height: auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.84)), url("images/wellness-programs-banner.jpg") center bottom / cover no-repeat !important;
  }

  .hero-content {
    margin-left: 0;
  }
}
