/**
 * HelpStar Core Architecture Layout Framework Baseline
 */
:root {
    /* Core transition variables */
    --transition-fast:   0.15s ease-in-out;
    --transition-base:   0.25s ease-in-out;
    /* Custom Theme Palette Mapping Variables */
    --brand-dark-green: #004d40;
    --brand-mint-bg: #e1f7f2;
    --brand-mustard-ochre: #cca323;
    --brand-soft-cream: #faf8f5;
    --brand-theme-blue: #17a2b8;
    --text-charcoal: #212529;
    --text-slate-charcoal: #2b2b2b;
}

/* =====================================================
   NAVBAR COMPONENT — Design System Compliant Classes
   ===================================================== */
.um-navbar-logo {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
}

.um-navbar-brand-name {
    color: #4a822b;
    font-size: var(--font-2xl);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
}

.um-navbar-tagline {
    color: #4a822b;
    font-size: var(--font-xs);
    letter-spacing: 0.3px;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 2px;
}

.um-navbar-logo-col {
    min-width: 250px;
}

.um-dropdown-menu-wide {
    min-width: 320px;
    max-height: 70vh;
    overflow-y: auto;
}

.um-dropdown-menu-sm {
    min-width: 240px;
    max-height: 70vh;
    overflow-y: auto;
}

.um-nav-chevron {
    font-size: 0.6em;
}

/* =====================================================
   BUTTON COMPONENT SYSTEM — .btn-um-*
   ===================================================== */
.btn-um {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: var(--font-sm);
    padding: 0.75rem 1.75rem;
    border-radius: 50rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
}

/* Teal-green gradient button — primary top-bar action */
.btn-um-teal {
    background: linear-gradient(90deg, #dcf8f5 0%, #a4f4e7 100%);
    color: #000;
}
.btn-um-teal:hover {
    background: linear-gradient(90deg, #c2f2ec 0%, #8af0e1 100%);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.2);
}

/* Ghost / outline style — secondary top-bar action */
.btn-um-ghost {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-um-ghost:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Dark green solid — page CTA buttons */
.btn-um-green {
    background-color: var(--color-brand-green-dark);
    color: var(--text-inverse);
    border-radius: 8px;
    padding: 0.75rem 3rem;
}
.btn-um-green:hover {
    background-color: var(--color-brand-green-darker);
    color: var(--text-inverse);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 77, 64, 0.3);
}

/* Global Scope Text Rule Overrides */
.text-dark-green {
    color: var(--brand-dark-green) !important;
}
.btn-dark-green {
    background-color: var(--brand-dark-green) !important;
    border-color: var(--brand-dark-green) !important;
}
.btn-dark-green:hover {
    background-color: #00332c !important;
}
.py-2-5 {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
}

/* SECTION 1 STYLE ARTIFACTS */
.anxiety-hero-section {
    background-color: var(--brand-mint-bg);
}
.anxiety-hero-title {
    font-size: 2.65rem;
    line-height: 1.25;
}
.anxiety-hero-desc {
    font-size: 1rem;
    line-height: 1.65;
    text-align: justify;
}
.hero-main-img {
    max-height: 420px;
    width: auto;
    object-fit: cover;
    border-radius: 2.5rem !important;
}
/* Generates the abstract soft floating shape behind the hero image */
.image-wrapper-accent::before {
    content: "";
    position: absolute;
    width: 105%;
    height: 105%;
    top: -2.5%;
    left: -5%;
    background-color: rgba(167, 240, 224, 0.4);
    border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    z-index: 0;
}
.hero-main-img {
    position: relative;
    z-index: 1;
}

/* SECTION 2 STYLE ARTIFACTS */
.anxiety-symptoms-banner {
    background-color: var(--brand-mustard-ochre) !important;
}
.symptoms-title {
    font-size: 2.15rem;
    line-height: 1.3;
}
.symptoms-lead, .symptoms-footer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}
.symptoms-sub-heading {
    font-size: 1.05rem;
}
.text-block-border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.symptoms-bullet-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}
.bullet-icon-dot {
    position: absolute;
    left: -0.25rem;
    top: -0.15rem;
    font-size: 1.5rem;
    color: #ffffff;
}

/* SECTION 3 STYLE ARTIFACTS */
.difference-heading {
    font-size: 2rem;
}
.difference-intro {
    font-size: 0.95rem;
    line-height: 1.6;
}
.mt-1-5 {
    margin-top: 0.35rem;
}
.bullet-square-marker {
    font-size: 0.55rem;
    color: var(--brand-dark-green);
    line-height: 1;
}
.principles-stack p {
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: justify;
}
.architectural-rounded {
    border-top-left-radius: 8rem !important;
    border-bottom-left-radius: 8rem !important;
    border-top-right-radius: 3rem !important;
    border-bottom-right-radius: 3rem !important;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--surface-site-bg, #F8FAFC);
    color: var(--text-body-dark, #334155);
    overflow-x: hidden;
}

.hs-site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hs-main-content {
    flex: 1 0 auto;
    padding-top: 7rem; /* Offsets content dynamically below the thicker Unique Minds global navigation menu */
}
/* ==============================
   Bipolar Page Specific Styles
   ============================== */
/* Base Helpers */
.text-theme-blue {
    color: var(--brand-theme-blue) !important;
}
.z-index-2 {
    position: relative;
    z-index: 2;
}

/* SECTION 1 HOVER ELEMENTS */
.bipolar-hero-section {
    background-color: var(--brand-soft-cream);
}
.bipolar-mini-tag {
    letter-spacing: 0.5px;
}
.bipolar-hero-title {
    font-size: 2.85rem;
    line-height: 1.2;
}
.bipolar-hero-desc {
    font-size: 1.05rem;
    line-height: 1.6;
}
.bipolar-circle-frame {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.circle-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION 2 ANALYSIS PATTERN ELEMENTS */
.understanding-heading {
    font-size: 1.85rem;
}
.understanding-text {
    font-size: 1rem;
}
.list-dot-marker {
    color: #000000;
    font-size: 1.4rem;
    line-height: 1;
}
.bipolar-symptoms-list p {
    font-size: 0.98rem;
    line-height: 1.55;
}
.continuous-curved-img {
    border-top-left-radius: 6rem !important;
    border-bottom-left-radius: 6rem !important;
    border-top-right-radius: 6rem !important;
    border-bottom-right-radius: 0.5rem !important;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* SECTION 3 WAVE MATRIX LAYOUT DISPLAY */
.bipolar-types-section {
    background-color: var(--brand-dark-green);
    padding-top: 6rem !important;
    padding-bottom: 5rem !important;
    overflow: hidden;
}
.wave-background-decorator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--brand-soft-cream);
    border-bottom-left-radius: 50% 40px;
    border-bottom-right-radius: 50% 40px;
    z-index: 1;
}
.types-main-heading {
    font-size: 2.25rem;
    letter-spacing: 0.3px;
}
.type-display-card {
    background-color: #ffffff !important;
    border-radius: 1.25rem !important;
    transition: transform 0.2s ease-in-out;
}
.type-display-card:hover {
    transform: translateY(-3px);
}
.card-mini-label {
    font-size: 1.1rem;
}
.card-body-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-slate-charcoal) !important;
}

/* =====================================================
   FOOTER COMPONENT — Design System Compliant Classes
   ===================================================== */
.um-footer-main {
    background-color: var(--color-brand-green-dark);
    color: var(--text-inverse);
}

.um-footer-bottom {
    background-color: #C8F0EA;
    color: #1a1a1a;
}

.um-footer-emergency {
    background-color: var(--color-brand-green-dark);
    color: var(--text-inverse);
}

.um-footer-quote {
    background-color: var(--color-brand-green);
    color: var(--text-inverse);
}

.um-footer-logo {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
}

.um-footer-heading {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: 1rem;
}

.um-footer-links {
    font-size: var(--font-sm);
}

.um-footer-copy {
    font-size: var(--font-xs);
    line-height: 1.6;
}

.um-footer-disclaimer {
    font-size: var(--font-xs);
    line-height: 1.6;
    color: #333;
}

.um-footer-emergency-text {
    font-size: var(--font-sm);
    line-height: 1.5;
    color: var(--text-inverse);
}

.um-footer-quote-heading {
    font-size: var(--font-2xl);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.um-footer-quote-sub {
    font-size: var(--font-base);
}
