/* ================================================================
   GENERATEPRESS HEADER CSS - MEDICAL LUXURY 2000px FULL WIDTH
   Add to: Appearance > Customize > Additional CSS
   ================================================================ */

/* Import Modern Luxury Fonts - DM Serif Display + DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@400&family=DM+Sans:wght@400;500;600;700&display=swap');

/* Global Variables - Medical Luxury Palette */
:root {
    --ch-bg-white: #FFFFFF;          /* Pure white background */
    --ch-navy: #0B1426;              /* Deep navy medical blue */
    --ch-teal: #2D5A87;              /* True medical teal-blue */
    --ch-teal-light: #3B6FA3;        /* Lighter teal-blue for hover */
    --ch-gold: #C9A96E;              /* Elegant gold accent */
    --ch-gold-light: #D4B68A;        /* Light gold for hover */
    --ch-text-dark: #1F2937;         /* Dark text */
    --ch-text-grey: #6B7280;         /* Medium grey */
    --ch-font-luxury: 'DM Serif Display', serif;
    --ch-font-body: 'DM Sans', sans-serif;
    --ch-transition: 0.4s ease-in-out;
    --ch-shadow: 0 4px 20px rgba(11, 20, 38, 0.08);
}

/* Hide Original GeneratePress Header */
.site-header,
#site-navigation,
.main-navigation {
    display: none !important;
}

/* Prevent spacing issues */
body.separate-containers .site-main {
    margin-top: 0 !important;
    border-top: 0 !important;
}

/* Custom Header Styles */
.ch-header {
    position: relative;
    background: var(--ch-bg-white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 20, 38, 0.1);
    box-shadow: var(--ch-shadow);
}

.ch-header-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 5vw, 4rem);
}

.ch-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    min-height: 85px;
}

/* Logo Styling - Navy */
.ch-logo {
    flex-shrink: 0;
}

.ch-logo a {
    color: var(--ch-navy);
    text-decoration: none;
    font-family: var(--ch-font-luxury);
    font-weight: 400;
    font-size: clamp(2rem, 3.8vw, 2.6rem);
    letter-spacing: -0.3px;
    transition: all var(--ch-transition);
    line-height: 1.1;
}

.ch-logo a:hover {
    color: var(--ch-teal);
}

/* Navigation Styling - Navy with Teal Hover */
.ch-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.ch-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.ch-nav li {
    position: relative;
    flex-shrink: 0;
}

.ch-nav a {
    color: var(--ch-text-grey);
    text-decoration: none;
    font-family: var(--ch-font-body);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 1.2rem 1.5rem;
    position: relative;
    transition: all var(--ch-transition);
    display: block;
}

.ch-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--ch-teal);
    transition: width var(--ch-transition);
}

.ch-nav a:hover {
    color: var(--ch-navy);
}

.ch-nav a:hover::after {
    width: 100%;
}

/* Active/Current Page Styling */
.ch-nav .current-page a,
.ch-nav .current-menu-item a {
    color: var(--ch-navy);
    font-weight: 600;
}

.ch-nav .current-page a::after,
.ch-nav .current-menu-item a::after {
    width: 100%;
}

/* Modern Medical CTA Button - Teal with Gold Accent */
.ch-header-cta {
    flex-shrink: 0;
    margin-left: 2rem;
}

.ch-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: var(--ch-teal);
    border: 2px solid var(--ch-teal);
    color: white;
    text-decoration: none;
    font-family: var(--ch-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all var(--ch-transition);
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(45, 90, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Gold accent shimmer */
.ch-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 169, 110, 0.3),
        transparent
    );
    transition: left 0.8s ease;
    transform: skewX(-20deg);
}

.ch-cta-btn:hover {
    background: var(--ch-teal-light);
    border-color: var(--ch-teal-light);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(45, 90, 135, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ch-cta-btn:hover::before {
    left: 100%;
}

/* Focus state */
.ch-cta-btn:focus {
    outline: none;
    box-shadow: 
        0 8px 25px rgba(45, 90, 135, 0.25),
        0 0 0 3px rgba(45, 90, 135, 0.2);
}

/* Mobile Menu Toggle */
.ch-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 1rem;
    gap: 6px;
    border-radius: 8px;
    transition: all var(--ch-transition);
}

.ch-mobile-toggle:hover {
    background: rgba(45, 90, 135, 0.05);
}

.ch-mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--ch-navy);
    transition: all var(--ch-transition);
    border-radius: 1px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .ch-nav ul {
        gap: 0.25rem;
    }
    
    .ch-nav a {
        font-size: 0.95rem;
        padding: 1.2rem 1.2rem;
    }
}

@media (max-width: 1100px) {
    .ch-nav ul {
        gap: 0;
    }
    
    .ch-nav a {
        font-size: 0.9rem;
        padding: 1.2rem 1rem;
    }
}

@media (max-width: 1000px) {
    .ch-nav,
    .ch-header-cta .ch-cta-btn {
        display: none;
    }
    
    .ch-mobile-toggle {
        display: flex;
    }
    
    .ch-header-cta {
        margin-left: auto;
        margin-right: 1.5rem;
        display: flex;
    }
    
    .ch-mobile-cta {
        display: inline-flex;
        align-items: center;
        padding: 1.1rem 2rem;
        background: var(--ch-teal);
        border: 2px solid var(--ch-teal);
        color: white;
        text-decoration: none;
        font-family: var(--ch-font-body);
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.4px;
        border-radius: 50px;
        transition: all var(--ch-transition);
        box-shadow: 0 4px 15px rgba(45, 90, 135, 0.2);
    }
    
    .ch-mobile-cta:hover {
        background: var(--ch-teal-light);
        border-color: var(--ch-teal-light);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(45, 90, 135, 0.25);
    }
    
    /* Mobile Menu */
    .ch-nav.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ch-bg-white);
        border-top: 1px solid rgba(11, 20, 38, 0.1);
        box-shadow: var(--ch-shadow);
    }
    
    .ch-nav.mobile-open ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        white-space: normal;
    }
    
    .ch-nav.mobile-open li {
        border-bottom: 1px solid rgba(11, 20, 38, 0.05);
    }
    
    .ch-nav.mobile-open li:last-child {
        border-bottom: none;
    }
    
    .ch-nav.mobile-open a {
        display: block;
        padding: 1.5rem 0;
        font-size: 1.1rem;
        letter-spacing: 0.4px;
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .ch-header-container {
        padding: 0 1.5rem;
    }
    
    .ch-logo a {
        font-size: 1.8rem;
    }
    
    .ch-mobile-cta {
        padding: 1rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* Large Screen Optimization - 2000px */
@media (min-width: 1400px) {
    .ch-header-container {
        max-width: 1600px;
    }
}

@media (min-width: 1800px) {
    .ch-header-container {
        max-width: 1800px;
    }
}

/* Typography smoothing */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
/* ================================================================
   GENERATEPRESS HERO SECTION CSS - 2000px FULL WIDTH
   Add to: Appearance > Customize > Additional CSS
   ================================================================ */

/* Import Modern Luxury Fonts - DM Serif Display + DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@400&family=DM+Sans:wght@400;500;600;700&display=swap');

/* Global Variables - Medical Luxury Palette */
:root {
    /* Medical Color Palette */
    --ch-bg-white: #FFFFFF;          /* Pure white background */
    --ch-navy: #0B1426;              /* Deep navy medical blue */
    --ch-teal: #2D5A87;              /* True medical teal-blue */
    --ch-teal-light: #3B6FA3;        /* Lighter teal-blue for hover */
    --ch-gold: #C9A96E;              /* Elegant gold accent */
    --ch-gold-light: #D4B68A;        /* Light gold for hover */
    --ch-text-dark: #1F2937;         /* Dark text */
    --ch-text-grey: #6B7280;         /* Medium grey */
    
    /* Typography */
    --ch-font-luxury: 'DM Serif Display', serif;
    --ch-font-body: 'DM Sans', sans-serif;
    
    /* Sizing & Spacing - 2000px Full Width */
    --tgt-section-spacing: clamp(6rem, 15vh, 12rem);
    --tgt-container-padding: clamp(2rem, 5vw, 5rem);
    --ch-transition: 0.4s ease-in-out;
}

/* Prevent horizontal scrollbar */
body {
    overflow-x: hidden;
}