﻿:root {
    --navy: #06234a;
    --navy-dark: #03172f;
    --blue: #0d58a8;
    --blue-bright: #2478d4;
    --sky: #eaf4ff;
    --sky-light: #f6faff;
    --ink: #142238;
    --muted: #526377;
    --line: #d9e5f2;
    --bg: #f7fafc;
    --focus: #ffbf47;
    --white: #fff;
    --radius-pill: 999px;
    --radius-sm: 1rem;
    --radius-md: 1.25rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --shadow-sm: 0 8px 20px rgba(6, 35, 74, .06);
    --shadow-md: 0 18px 44px rgba(6, 35, 74, .10);
    --shadow-lg: 0 30px 70px rgba(6, 35, 74, .18);
    --border-soft: 1px solid rgba(6, 35, 74, .09);
    --transition-fast: .2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

.body-font {
    font-family: "Inter", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.display-3, .display-4, .section-title {
    font-family: "Fraunces", Georgia, serif;
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -.035em;
}

a {
    color: var(--blue);
    font-weight: 700;
    text-underline-offset: .18em;
}

    a:hover {
        color: var(--navy);
    }

    a:focus-visible,
    button:focus-visible,
    .btn:focus-visible,
    .nav-link:focus-visible,
    .dropdown-item:focus-visible {
        outline: 3px solid var(--focus);
        outline-offset: 3px;
    }

.text-muted-custom {
    color: var(--muted) !important;
}

.text-blue{
    color: var(--blue);
}

.list-padding li {
    padding-top: .45rem;
    padding-bottom: .45rem;
}

.list-padding-sm li {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

.border-left-blue {
    padding-left: 1.25rem;
    border-left: 3px solid var(--blue);
}

.text-lead {
    font-size: 1.15rem;
    line-height: 1.75;
}

.text-body {
    line-height: 1.75;
}

.text-small {
    font-size: .95rem;
    line-height: 1.6;
}

.text-reading {
    max-width: 70ch;
}

.sticky-top-offset {
    position: sticky;
    top: 2rem;
}

/*sections*/

.section-padding {
    padding: 4rem 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--blue);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .section-eyebrow::before {
        content: "";
        width: 2rem;
        height: .18rem;
        border-radius: var(--radius-pill);
        background: linear-gradient( 90deg, var(--blue-bright), var(--blue) );
    }

.section-eyebrow-light {
    color: rgba(255,255,255,.92);
}

    .section-eyebrow-light::before {
        background: linear-gradient( 90deg, #ffffff, #cfe4ff );
    }

.page-header {
    padding: 4.5rem 0;
    color: #fff;
    background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 55%, #174b86 100%);
}

    .page-header .lead {
        max-width: 42rem;
        color: rgba(255,255,255,.82);
    }

/*header*/

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(6, 35, 74, .08);
}

.utility-bar {
    color: var(--white);
    background: linear-gradient(90deg, var(--navy-dark), var(--blue));
    font-size: .92rem;
    font-weight: 700;
}

    .utility-bar a {
        color: var(--white);
        text-decoration: none;
    }

        .utility-bar a:hover,
        .utility-bar a:focus {
            color: var(--white);
            text-decoration: underline;
        }

.main-navbar {
    padding: 1rem 0;
    background: var(--white);
}

.navbar-brand img {
    width: auto;
    max-height: 68px;
}

.navbar-nav .nav-link {
    margin-inline: .55rem;
    padding: .75rem .2rem !important;
    color: var(--navy);
    border-bottom: 3px solid transparent;
    font-weight: 800;
}

    .navbar-nav .nav-link > span {
        display: inline-block;
        border-bottom: 3px solid transparent;
        transition: color .2s ease, border-color .2s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
        color: var(--blue);
    }

        .navbar-nav .nav-link:hover > span,
        .navbar-nav .nav-link:focus > span,
        .navbar-nav .nav-link.active > span {
            border-bottom-color: var(--blue);
        }

.dropdown-menu {
    padding: .65rem 1rem;
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 45px rgba(6, 35, 74, .16);
}

.dropdown-item {
    padding: .65rem .85rem;
    color: var(--navy);
    font-weight: 800;
    background: transparent;
}

    .dropdown-item span {
        display: inline-block;
        border-bottom: 3px solid transparent;
        transition: color .2s ease, border-color .2s ease;
    }

    .dropdown-item:hover,
    .dropdown-item:focus,
    .dropdown-item.active {
        color: var(--blue);
        background: transparent;
    }

        .dropdown-item:hover span,
        .dropdown-item:focus span,
        .dropdown-item.active span {
            border-bottom-color: var(--blue);
        }

/*footer*/

.footer {
    color: var(--white);
    background: radial-gradient(circle at top right, rgba(36,120,212,.25), transparent 24rem), linear-gradient(135deg, var(--navy-dark), var(--navy));
}

    .footer h2, .footer h3, .footer a, .footer p {
        color: var(--white);
    }

        .footer a:hover, .footer a:focus {
            color: #dcecff;
        }

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    color: var(--white);
    background: rgba(255,255,255,.12);
    border-radius: .9rem;
    font-size: 1.35rem;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 1.1rem;
    margin-top: .15rem;
    color: rgba(255,255,255,.8);
    text-align: center;
}

.footer-logo {
    display: block;
    width: 1.9rem;
    height: auto;
    max-height: 1.9rem;
    object-fit: contain;
}

/*buttons*/

.btn {
    padding: .8rem 1.4rem;
    border-radius: 999px;
    font-weight: 800;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

    .btn:active {
        transform: translateY(0);
    }

.btn-primary-custom {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--blue);
    --bs-btn-border-color: var(--blue);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--navy);
    --bs-btn-hover-border-color: var(--navy);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--navy-dark);
    --bs-btn-active-border-color: var(--navy-dark);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--muted);
    --bs-btn-disabled-border-color: var(--muted);
    --bs-btn-focus-shadow-rgb: 255, 191, 71;
    box-shadow: 0 6px 16px rgba(6, 35, 74, .16);
}

    .btn-primary-custom:hover {
        box-shadow: 0 10px 22px rgba(6, 35, 74, .22);
    }

    .btn-primary-custom:active {
        box-shadow: 0 4px 10px rgba(6, 35, 74, .16);
    }

    .btn-primary-custom:focus-visible {
        box-shadow: none;
    }

.btn-white {
    --bs-btn-color: var(--navy);
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: var(--navy);
    --bs-btn-hover-bg: var(--sky);
    --bs-btn-hover-border-color: var(--sky);
    --bs-btn-active-color: var(--navy);
    --bs-btn-active-bg: var(--sky);
    --bs-btn-active-border-color: var(--sky);
}

.btn-outline-primary-custom {
    --bs-btn-color: var(--blue);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--blue);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--blue);
    --bs-btn-hover-border-color: var(--blue);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--navy);
    --bs-btn-active-border-color: var(--navy);
    --bs-btn-disabled-color: var(--muted);
    --bs-btn-disabled-border-color: var(--line);
    --bs-btn-focus-shadow-rgb: 255, 191, 71;
    border-width: 2px;
    box-shadow: none;
}

/*cards*/

.card {
    border: 1px solid rgba(6,35,74,.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: #fff;
    transition: border-color .22s ease,box-shadow .22s ease,transform .22s ease,background-color .22s ease
}

.card-body {
    padding: 1.5rem
}

.card-shell {
    border-radius: var(--radius-lg);
    background: #fff
}

.card-dark {
    color: #fff;
    background: linear-gradient(145deg,var(--navy-dark),var(--navy) 68%,var(--blue));
    border-color: transparent;
    box-shadow: none
}

    .card-dark h2, .card-dark h3, .card-dark p {
        color: #fff
    }

    .card-dark p {
        color: #dcecff
    }

.card-glass {
    color: #fff;
    background: linear-gradient( 180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 40%, rgba(255,255,255,.05) 100% );
    border-top: 1px solid rgba(255,255,255,.14);
    border-right: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.11);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 42px rgba(0,0,0,.16);
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .card-glass:hover,
    .card-glass:focus-visible {
        background: linear-gradient( 180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.10) 40%, rgba(255,255,255,.07) 100% );
        border-top-color: rgba(255,255,255,.16);
        border-right-color: rgba(255,255,255,.13);
        border-bottom-color: rgba(255,255,255,.10);
        border-left-color: rgba(255,255,255,.13);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 26px 52px rgba(0,0,0,.20);
    }

    .card-glass h2,
    .card-glass h3,
    .card-glass h4,
    .card-glass h5,
    .card-glass p {
        color: inherit;
    }

.card-action {
    color: inherit;
    text-decoration: none;
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

    .card-action:hover,
    .card-action:focus-visible {
        color: inherit;
        text-decoration: none;
        transform: translateY(-4px);
        /*background: rgba(255,255,255,.12);*/
        box-shadow: var(--shadow-sm);
    }

    .card-action:focus-visible {
        outline: 3px solid var(--focus);
        outline-offset: 3px;
    }

.card-overlay {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px)
}

    .card-overlay h3 {
        font-size: 1.35rem;
        margin-bottom: .25rem
    }

    .card-overlay p {
        margin: 0;
        color: var(--muted);
        font-size: .92rem
    }

/*icons*/

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

.icon-box-md {
    width: 3.05rem;
    height: 3.05rem;
    border-radius: .9rem;
    font-size: 1.2rem
}

.icon-gradient {
    color: #fff;
    background: linear-gradient(135deg,var(--navy),var(--blue));
    box-shadow: 0 8px 18px rgba(13,88,168,.2)
}

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 590px;
    overflow: hidden;
    padding: 6rem 0;
    color: #fff;
    background: linear-gradient( 90deg, rgba(3, 23, 47, .94) 0%, rgba(6, 35, 74, .86) 42%, rgba(6, 35, 74, .46) 72%, rgba(6, 35, 74, .14) 100% ), url("images/aerial.jpg") center center / cover no-repeat;
}

    /* Soft illuminated area behind the text */

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: radial-gradient( circle at 22% 44%, rgba(255, 255, 255, .12), transparent 30rem ), radial-gradient( circle at 10% 25%, rgba(36, 120, 212, .18), transparent 24rem );
    }

    /* Very subtle light reflection */

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: linear-gradient( 115deg, rgba(255, 255, 255, .05) 0%, transparent 34% );
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 790px;
}

.hero-tagline {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, .92);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: .14em;
    text-transform: uppercase;
}

    .hero-tagline::before {
        content: "";
        display: block;
        width: 3rem;
        height: 2px;
        margin-bottom: .8rem;
        border-radius: 999px;
        background: linear-gradient( 90deg, var(--blue-bright), #cfe4ff );
    }

.hero h1 {
    max-width: 780px;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.04;
    text-wrap: balance;
}

.hero .lead {
    max-width: 690px;
    margin-bottom: 2rem;
    color: #eef6ff;
    font-size: 1.15rem;
    line-height: 1.7;
}


.quick-intro {
    height: 100%;
    padding: 2rem;
    border-radius: 1.35rem;
    background: linear-gradient(145deg,var(--navy-dark),var(--navy) 68%,var(--blue));
    color: #fff
}

    .quick-intro h2, .quick-intro p {
        color: #fff
    }

    .quick-intro p {
        color: #dcecff;
        max-width: 17rem
    }

.quick-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    height: 100%;
    padding: 1.05rem;
    color: var(--ink);
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 4px 14px rgba(6,35,74,.04);
    transition: all .22s ease
}

    .quick-card:hover, .quick-card:focus {
        transform: translateY(-3px);
        color: var(--ink);
        border-color: rgba(36,120,212,.35);
        box-shadow: var(--shadow-sm)
    }

.quick-icon {
    width: 3.05rem;
    height: 3.05rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: .9rem;
    color: #fff;
    background: linear-gradient(135deg,var(--navy),var(--blue));
    box-shadow: 0 8px 18px rgba(13,88,168,.2);
    font-size: 1.2rem
}

.quick-card h3 {
    font-family: "Inter",Arial,sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -.02em;
    margin: 0
}

.quick-card p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem
}

.about-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#fff,var(--sky-light));
    border-block: 1px solid rgba(6,35,74,.07)
}

.about-copy {
    max-width: 620px
}

    .about-copy .lead {
        font-size: 1.15rem
    }

.about-photo {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(180deg,rgba(7,31,63,.04),rgba(7,31,63,.32)), url("images/debraBell2.jpg") center / cover no-repeat;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-photo-card {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 1.15rem 1.25rem;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 1.35rem;
    box-shadow: 0 .85rem 1.8rem rgba(7,31,63,.14);
    backdrop-filter: blur(16px);
}


.programs, .bg-blue {
    background: radial-gradient(circle at top left,rgba(36,120,212,.23),transparent 28rem),linear-gradient(135deg,var(--navy-dark),var(--navy) 62%,var(--blue));
    color: #fff
}

    .programs h2, .programs h3, .programs p {
        color: #fff
    }

    .programs .lead {
        color: #dcecff;
        max-width: 780px
    }

    .programs .card-body > i {
        color: #b9dcff;
        font-size: 1.55rem;
    }

    .programs .card-link {
        color: #fff;
    }

.news-section {
    background: radial-gradient(circle at 12% 20%, rgba(36,120,212,.10), transparent 20rem), var(--sky-light);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.75rem;
    padding-left: 2rem;
    border-left: 3px solid var(--line);
}

    .timeline-item::before {
        content: "";
        position: absolute;
        top: .25rem;
        left: -.55rem;
        width: 1rem;
        height: 1rem;
        background: var(--blue);
        border: 3px solid #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 4px var(--sky);
    }

    .timeline-item:last-child {
        padding-bottom: 0;
    }

.timeline-meta {
    margin-bottom: .25rem;
    color: var(--blue);
    font-size: .85rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.timeline-item h3 {
    font-size: 1.25rem;
}

.timeline-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.cta-panel {
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 16% 18%, rgba(77,169,255,.36), transparent 18rem), linear-gradient(135deg, rgba(3,23,47,.94), rgba(13,88,168,.88)), url("images/debraBell.jpg") center / cover no-repeat;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

    .cta-panel h2,
    .cta-panel p {
        color: var(--white);
    }

.content-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

    .content-accordion .accordion-item + .accordion-item {
        margin-top: 1rem;
    }

.content-accordion .accordion-button {
    padding: 1rem;
    color: var(--ink);
    background: #fff;
    box-shadow: none;
}

    .content-accordion .accordion-button:not(.collapsed){
        color: #fff !important;
        background: var(--blue) !important;
    }

        .content-accordion .accordion-button:not(.collapsed) .text-muted-custom {
            color: #fff !important;
        }

        .content-accordion .accordion-button:not(.collapsed) {
            box-shadow: inset 0 -1px 0 var(--line);
        }

.content-accordion .accordion-description {
    display: none;
}

@media (min-width: 768px) {
    .hero {
        padding: 6.5rem 0 7.5rem;
    }

    .content-accordion .accordion-button {
        padding: 1.25rem 1.5rem;
    }

    .content-accordion .accordion-description {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 3rem 0;
    }

    .quick-wrap {
        padding-top: 3rem;
    }

    .about-photo {
        min-height: 460px;
    }
}

@media (max-width: 575.98px) {
    .btn {
        width: 100%;
    }

    .navbar-brand img {
        max-height: 56px;
    }

    .about-photo {
        min-height: 400px;
        border-radius: var(--radius-lg);
    }

    .about-photo-card {
        right: .9rem;
        bottom: .9rem;
        left: .9rem;
    }
}


@media (max-width: 991.98px) {
    .sticky-top-offset {
        position: static;
    }
}
