﻿:root {
    --navy: #1a2356;
    --royal: #243580;
    --blue: #2d4bbd;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --cream: #f7f5f0;
    --white: #ffffff;
    --text-dark: #111827;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
    --border: rgba(36,53,128,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans',sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6,
p, span, div, a, li, button, input, textarea {
    font-family: 'DM Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.display-1, .display-2, .display-3,
.h1, .h2, .h3, .h4, .h5, .h6,
.lead, .btn, .nav-link {
    font-family: 'DM Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* ── NAVBAR ── */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.2rem 0;
    background: var(--white);
    color: var(--gold);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 2px rgba(0,0,0,0.2);
    /*  position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    background: transparent;*/
}

 /*   .navbar.scrolled {
        background: var(--white);
        color: var(--gold);
        backdrop-filter: blur(12px);
        padding: 0.8rem 0;
        box-shadow: 0 4px 5px rgba(0,0,0,0.2);
    }*/

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

    .navbar-brand img {
        height: 50px;
        border-radius: 10px;
    }
/*filter: brightness(0) invert(1); */
/*.navbar:not(.scrolled) .navbar-brand img {
    filter: brightness(0) invert(1);
}*/

.brand-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.navbar-nav .nav-link {
    color: var(--gold) !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem !important;
    position: relative; 
    transition: color 0.3s;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1rem;
        right: 1rem;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.3s;
        text-shadow: 0 4px 12px var(--gold);
    }

    .navbar-nav .nav-link:hover {
        color: var(--gold-light) !important;
    }

        .navbar-nav .nav-link:hover::after {
            transform: scaleX(1);
        }

.nav-cta {
    background: var(--gold-light) !important;
    color: var(--white) !important;
    border-radius: 2px;
    padding: 0.5rem 1.4rem !important;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: background 0.3s, transform 0.2s !important;
}

    .nav-cta:hover {
        background: var(--gold-light) !important;
        transform: translateY(-1px);
        color: var(--white) !important;
    }

    .nav-cta::after {
        display: none !important;
    }

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ── HERO SMALL ── */
.hero-small {
    min-height: 55vh;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10,15,36,0.92) 0%, rgba(0,0,0,0.78) 100%), url('../img/teams.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-small-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-small-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fade-up 0.8s 0.3s forwards;
}

    .hero-eyebrow::before {
        content: '';
        width: 40px;
        height: 1px;
        background: var(--gold);
    }

.hero-small h1 {
    font-size: clamp(2.8rem,6vw,5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fade-up 0.9s 0.5s forwards;
}

    .hero-small h1 em {
        font-style: italic;
        color: var(--gold);
    }

.hero-small-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 540px;
    opacity: 0;
    animation: fade-up 0.9s 0.7s forwards;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTION COMMONS ── */
section {
    /*padding: 7rem 0;*/
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-eyebrow::before {
        content: '';
        width: 30px;
        height: 1px;
        background: var(--gold);
    }

.section-title {
    font-size: clamp(2rem,4vw,3.2rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

    .section-title em {
        font-style: italic;
        color: var(--blue);
    }

.section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 560px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease,transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

section[id] {
    scroll-margin-top: 80px;
}

/* ── TEAM INTRO ── */
.team-intro-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

    /* Animated background for intro */
    .team-intro-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(201,168,76,0.07) 0%,transparent 70%);
        animation: orbPulse 10s ease-in-out infinite;
        pointer-events: none;
    }

    .team-intro-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(26,35,86,0.06) 0%,transparent 70%);
        animation: orbPulse 13s ease-in-out infinite reverse;
        pointer-events: none;
    }

@keyframes orbPulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.pillar-stat {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

    .pillar-stat::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg,var(--navy),var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .pillar-stat:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(26,35,86,0.1);
    }

        .pillar-stat:hover::before {
            transform: scaleX(1);
        }

    .pillar-stat .num {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 3rem;
        font-weight: 600;
        color: var(--gold);
        display: block;
        line-height: 1;
    }

    .pillar-stat .lbl {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-mid);
        margin-top: 0.4rem;
    }

/* ── TEAM CARDS ── */
.team-main-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle animated grid bg */
.team-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
}

.member-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
    height: 100%;
}

    .member-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 70px rgba(26,35,86,0.14);
    }

        .member-card:hover .member-overlay {
            opacity: 1;
        }

        .member-card:hover .member-photo {
            transform: scale(1.05);
        }

.member-photo-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--cream);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
    display: block;
}

/* Photo placeholder with initials */
.member-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    font-family: 'DM Sans', sans-serif !important;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 30%,rgba(10,15,36,0.92) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.member-socials {
    display: flex;
    gap: 0.6rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

    .social-btn:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

.member-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 2px;
}

.member-body {
    padding: 1.8rem;
}

.member-name {
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.member-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.member-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cert-chip {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    border: 1px solid var(--border);
    color: var(--navy);
    background: var(--cream);
    transition: all 0.3s;
}

    .cert-chip:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* ── FEATURED / LEAD CARD ── */
.member-card-lead {
    background: var(--navy);
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: none;
    transition: all 0.4s;
    position: relative;
}

    .member-card-lead:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 70px rgba(10,15,36,0.35);
    }

.lead-photo-wrap {
    height: 360px;
    overflow: hidden;
    position: relative;
}

.lead-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s;
}

.member-card-lead:hover .lead-photo {
    transform: scale(1.04);
}

.lead-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,rgba(201,168,76,0.2) 0%,rgba(45,75,189,0.3) 100%);
    font-family: 'DM Sans', sans-serif !important;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}

.lead-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 40%,var(--navy) 100%);
}

.lead-body {
    padding: 2rem 2.2rem 2.2rem;
}

.lead-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 2px;
    background: var(--gold);
    color: var(--navy);
    margin-bottom: 1rem;
}

.lead-name {
    font-size: 1.9rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.2rem;
    line-height: 1.1;
}

.lead-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.lead-bio {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lead-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lead-cert {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.7rem;
    border-radius: 2px;
    border: 1px solid rgba(201,168,76,0.3);
    color: rgba(255,255,255,0.7);
}

.lead-socials {
    display: flex;
    gap: 0.6rem;
}

/* ── VALUES STRIP ── */
.values-section {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

    .values-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg,var(--navy),var(--gold),var(--navy));
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .value-card:hover {
        background: rgba(255,255,255,0.04);
        border-color: rgba(201,168,76,0.35);
    }

        .value-card:hover::before {
            transform: scaleX(1);
        }

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
    color: var(--gold);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    background: var(--gold);
    color: var(--navy);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.6rem;
}

.value-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ── JOIN SECTION ── */
.join-section {
    background: var(--cream);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.join-inner {
    background: var(--navy);
    border-radius: 6px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

    .join-inner::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border: 1px solid rgba(201,168,76,0.1);
    }

    .join-inner::after {
        content: '';
        position: absolute;
        bottom: -80px;
        right: 80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        border: 1px solid rgba(201,168,76,0.06);
    }

.join-text {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

    .join-text h2 {
        font-size: 2.5rem;
        font-weight: 300;
        color: #fff;
        margin-bottom: 0.8rem;
    }

        .join-text h2 em {
            font-style: italic;
            color: var(--gold);
        }

    .join-text p {
        color: rgba(255,255,255,0.6);
        line-height: 1.8;
        margin-bottom: 0;
    }

.join-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 2px;
    padding: 0.9rem 2.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

    .btn-gold:hover {
        background: var(--gold-light);
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(201,168,76,0.4);
    }

.btn-outline-light-custom {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    padding: 0.9rem 2.2rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-light-custom:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-2px);
    }

/* ── FOOTER ── */
footer {
    background: #0a0f24;
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}

.footer-brand img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.5rem;
}

footer h6 {
    font-family: 'DM Sans',sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

    footer ul li {
        margin-bottom: 0.5rem;
    }

        footer ul li a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s;
        }

            footer ul li a:hover {
                color: var(--gold);
            }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-bottom p {
        font-size: 0.8rem;
        margin: 0;
    }

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

    .footer-badge i {
        color: var(--gold);
    }

/* ── SCROLL TOP ── */
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
    transition: all 0.3s;
}

    #scrollTop.show {
        display: flex;
    }

    #scrollTop:hover {
        transform: translateY(-3px);
    }

@media(max-width:767px) {
    section {
        padding: 4rem 0;
    }

    .lead-body {
        padding: 1.5rem;
    }

    .join-inner {
        padding: 2.5rem 1.5rem;
    }
}

.contactButton {
    display: inline-block;
    padding: 6px 6px;
    background-color: #d4af37; /* golden background */
    color: #fff1c5; /* white text */
    font-weight: 600;
    font-size: 0.75rem;
    border: 2px solid #b8972e; /* slightly darker gold border */
    border-radius: 5px; /* pill shape — very eye-catching */
    text-decoration: none;
    /*box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);*/
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
