/*
Theme Name: Vive BIW
Author: Abdul Fatha
Description: A clean, custom base theme with full HTML flexibility.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: #
*/

/* ========================================== */
/* ADD YOUR CUSTOM CSS STYLES BELOW THIS LINE */
/* ========================================== */

:root {
  --navy: #00193C;
  --cyan: #5B9C9A;
  --turquoise: #B5D1CE;
  --orange: #CCA460;
  --sand: #E4E0DA;
  --cream: #F7F4EE;
  --paper: #FBFAF6;
  --blush: #F2EDE5;
  --ink: #1A2540;
  --muted: #5A6478;
  --soft: #8A93A6;
  --hairline: rgba(0, 25, 60, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* PHOTO PLACEHOLDER STYLES - these slots replace with real lifestyle photos */
.photo-slot {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(204, 164, 96, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(91, 156, 154, 0.15) 0%, transparent 50%);
}
.photo-slot-label {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--navy);
  padding: 20px;
}
.photo-slot-label .icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-slot-label .icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
.photo-slot-label .text {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.photo-slot-label .hint {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ANNOUNCE BAR */
.announce {
  background: var(--navy);
  color: var(--turquoise);
  padding: 11px 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.announce .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 14px;
  vertical-align: middle;
}
.announce a { color: var(--paper); border-bottom: 1px solid rgba(181, 209, 206, 0.4); padding-bottom: 1px; }

/* NAVIGATION */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo { display: flex; align-items: baseline; gap: 10px; }
.nav-logo .mark {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-logo-img {
  height: 74px ;
}
.nav-logo .sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
/* HIERARCHICAL NAV WITH DROPDOWN */
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links > a,
.nav-links > .nav-dropdown > .nav-dropdown-trigger {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 0.2s;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links > a:hover,
.nav-links > .nav-dropdown > .nav-dropdown-trigger:hover { color: var(--orange); }
.nav-dropdown-trigger .caret {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}
.nav-dropdown.open > .nav-dropdown-trigger .caret { transform: rotate(180deg); }

/* DESKTOP DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -224px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 16px 0;
  min-width: 260px;
  box-shadow: 0 24px 50px -20px rgba(0, 25, 60, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s, transform 0.2s, visibility 0s;
}

/* Section labels inside the dropdown (Weight Loss / Hormone Therapy / IV Therapy) */
.nav-section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  padding: 12px 24px 6px;
}

/* Standard dropdown link */
.nav-dropdown-menu a {
  display: block;
  padding: 9px 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--orange); background: var(--cream); }

/* SUBGROUP LABELS: Weight Loss, Hormone Therapy, IV Therapy - all expandable */
.nav-subgroup-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.nav-subgroup-label .arrow {
  width: 9px;
  height: 9px;
  transition: transform 0.2s;
  opacity: 0.6;
}
.nav-subgroup.open .nav-subgroup-label .arrow { transform: rotate(90deg); }
.nav-subgroup-label:hover { color: var(--orange); background: var(--cream); }
.nav-subgroup.open .nav-subgroup-label { color: var(--orange); }

.nav-submenu {
  position: absolute;
  top: -16px;
  left: calc(100% + 6px);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 16px 0;
  min-width: 240px;
  box-shadow: 0 24px 50px -20px rgba(0, 25, 60, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
}
.nav-subgroup.open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.2s, transform 0.2s, visibility 0s;
}

/* Dividers between sections inside the dropdown */
.nav-dropdown-divider {
  height: 1px;
  background: var(--hairline);
  margin: 8px 18px;
}

.nav-cta {
  background: var(--navy);
  color: var(--navy) !important;
  padding: 12px 24px;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange) !important; color: var(--navy) !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle svg { width: 24px; height: 24px; stroke: var(--navy); }
/* END HIERARCHICAL NAV */