/* Gamma Three Trading — brand styles (Bootstrap 5 overrides) */

:root {
    --g3-primary: #4d7db3;
    --g3-primary-dark: #33567d;
    --g3-navy: #24405e;
    --g3-accent: #02c66c;
    --bs-primary: #4d7db3;
}

body {
    font-family: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-weight: 300;
}

/* Buttons in brand blue */
.btn-primary {
    --bs-btn-bg: var(--g3-primary);
    --bs-btn-border-color: var(--g3-primary);
    --bs-btn-hover-bg: var(--g3-primary-dark);
    --bs-btn-hover-border-color: var(--g3-primary-dark);
    --bs-btn-active-bg: var(--g3-navy);
    --bs-btn-active-border-color: var(--g3-navy);
}

.btn-outline-primary {
    --bs-btn-color: var(--g3-primary);
    --bs-btn-border-color: var(--g3-primary);
    --bs-btn-hover-bg: var(--g3-primary);
    --bs-btn-hover-border-color: var(--g3-primary);
    --bs-btn-active-bg: var(--g3-primary-dark);
    --bs-btn-active-border-color: var(--g3-primary-dark);
}

a {
    color: var(--g3-primary);
}

/* ---- Navbar ---- */
.navbar-g3 {
    background: var(--g3-navy);
}

.brand-wordmark {
    font-size: 1.35rem;
    letter-spacing: .02em;
}

.brand-wordmark span {
    font-weight: 700;
}

/* ---- Hero ---- */
.hero-g3 {
    background: linear-gradient(150deg, var(--g3-navy) 0%, var(--g3-primary-dark) 55%, var(--g3-primary) 100%);
    color: #fff;
    padding: 4.5rem 0 5rem;
}

.hero-g3 h1 {
    font-weight: 300;
    letter-spacing: .01em;
}

.hero-g3 .lead {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, .85);
}

.hero-logo {
    max-height: 110px;
}

/* ---- Page header band (interior pages) ---- */
.page-header-g3 {
    background: var(--g3-navy);
    color: #fff;
    padding: 2rem 0;
}

.page-header-g3 h1 {
    margin-bottom: 0;
}

.page-header-g3 .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, .5);
    margin-bottom: 0;
}

.page-header-g3 .breadcrumb a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.page-header-g3 .breadcrumb-item.active {
    color: #fff;
}

/* ---- Product cards ---- */
.product-card {
    transition: transform .15s ease, box-shadow .15s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1.25rem rgba(36, 64, 94, .18) !important;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.icon-circle {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--g3-primary);
    color: #fff;
    font-size: 1.6rem;
}

.icon-circle-lg {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 2.2rem;
}

/* ---- Product logotypes ---- */
.product-wordmark {
    font-family: "Mulish", sans-serif;
    font-size: 2.3rem;
    font-weight: 300;
    text-align: center;
}

.product-wordmark span {
    color: var(--g3-primary);
    font-weight: 700;
}

/* ---- Feature list with check marks ---- */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: .75rem;
}

.feature-list li::before {
    content: "\f058"; /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--g3-accent);
    position: absolute;
    left: 0;
}

/* ---- Testimonial ---- */
.blockquote-g3 {
    background: var(--g3-primary);
    color: #fff;
    border-radius: .5rem;
    padding: 1.5rem;
}

.blockquote-g3 footer {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    margin-top: .75rem;
}

/* ---- Footer ---- */
.footer-g3 {
    background: var(--g3-navy);
    color: rgba(255, 255, 255, .75);
}

.footer-g3 a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.footer-g3 a:hover {
    color: #fff;
    text-decoration: underline;
}

.founder-photo {
    max-width: 160px;
    border-radius: .5rem;
}

.partner-logo {
    max-width: 200px;
}
