/* Control size */
html {
    scroll-behavior: smooth;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.navbar-brand svg {
    width: 50px;  /* Adjust to your desired size */
    height: auto; /* Maintains aspect ratio */
    margin-right:12px;
}

/* Logo colours now in holo-colors.css */

.navbar-brand {
	font-size:1.4rem;
}

/* Rotating Tagline */
.rotating-tagline-container {
    text-align: center;
}

.rotating-tagline {
    display: inline-block;
    font-style: italic;
    font-size: 1.5em;
    margin-top: 0.25em;
    min-height: 1.2em;
    transition: opacity 0.5s ease;
}

/* ========================================
   MEGA MENU - Flush with Header & Hover
   ======================================== */

/* Make mega menu flush with header bottom */
.dropdown-mega .dropdown-menu-mega {
    margin-top: 0 !important;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    position: fixed !important;
    transform: none !important;
}

/* Hover behavior for desktop */
@media (min-width: 992px) {
    .dropdown-hover:hover > .dropdown-menu-mega {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-hover > .dropdown-menu-mega {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
    
    /* Show on hover */
    .dropdown-hover:hover > .dropdown-menu-mega,
    .dropdown-hover > .dropdown-menu-mega:hover {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* Two Pathways Section */

#services {
    overflow: hidden;
}

.pathways-wrapper {
    display: flex;
    position: relative;
    min-height: 70vh;
}

/* SVG Curved Divider */
.pathway-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Mind Path - Left Side */
.pathway-mind {
    width: 50%;
}

/* Body Path - Right Side */
.pathway-body {
    width: 50%;
    background: linear-gradient(rgba(176, 196, 177, 0.5), rgba(176, 196, 177, 0.5)), url('./assets/images/hero/leaf-3.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.split-pathway-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

@media (min-width: 1400px) {
    .split-pathway-card {
        padding: 5rem;
    }
}

.pathway-content {
    position: relative;
    z-index: 3;
    max-width: 520px;
}

.pathway-mind .pathway-content {
    margin-left: auto;
    padding-right: 2rem;
}

.pathway-body .pathway-content {
    margin-right: auto;
    padding-left: 2rem;
}

/* Icons */
.pathway-icon {
    opacity: 0.85;
}

/* Icons styled in holo-colors.css */

/* Labels */
.pathway-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.7;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Titles */
.pathway-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Subtitles */
.pathway-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Lists */
.pathway-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pathway-list li {
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.pathway-bullet {
    font-size: 0.75rem;
    margin-top: 0.35rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Bullets styled in holo-colors.css */

/* Buttons */
.pathway-btn {
    border-width: 2px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Pathway buttons styled in holo-colors.css */

/* Integrative Banner */
.integrative-banner {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2.5rem 0;
}

.integrative-banner p {
    font-size: 1.125rem;
    margin: 0;
}

/* Responsive - Stack on mobile */
@media (max-width: 991.98px) {
    .pathways-wrapper {
        flex-direction: column;
    }
    
    .pathway-mind,
    .pathway-body {
        width: 100%;
        min-height: 60vh;
    }
    
    .pathway-mind {
        position: relative;
    }
    
    /* Mobile wave styled in holo-colors.css */
    
    .pathway-body {
        padding-top: 4rem;
    }
    
    .pathway-mind .pathway-content,
    .pathway-body .pathway-content {
        margin: 0 auto;
        padding: 0;
        max-width: 100%;
    }
    
    .pathway-title {
        font-size: 2rem;
    }
}