/* TalentP.AI — Base / Reset / Typography v1.6.0 */

/* ===== Google Fonts @import ===== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Varela+Round&display=swap');

/* ===== Reset / Box-sizing ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ===== HTML — Responsive Font-Size ===== */
html {
    font-size: 14px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--tp-navbar-h);
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

/* ===== Body ===== */
body {
    font-family: var(--tp-font-body);
    color: var(--tp-text);
    margin-bottom: 60px;
}

/* ===== Heading Hierarchy ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tp-font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

/* ===== Link Styles ===== */
a {
    color: var(--tp-primary);
    text-decoration: none;
    transition: color var(--tp-t-fast) var(--tp-ease);
}

a:hover {
    color: var(--tp-primary-dk);
    text-decoration: underline;
}

/* ===== Bootstrap Overrides ===== */
.btn-primary {
    --bs-btn-bg: var(--tp-primary);
    --bs-btn-border-color: var(--tp-primary);
    --bs-btn-hover-bg: var(--tp-primary-dk);
    --bs-btn-hover-border-color: var(--tp-primary-dk);
    --bs-btn-active-bg: var(--tp-primary-dk);
    --bs-btn-active-border-color: var(--tp-primary-dk);
    --bs-btn-focus-shadow-rgb: 26, 188, 156;
    font-family: var(--tp-font-body);
    border-radius: var(--tp-radius-pill);
    padding: var(--tp-space-3) var(--tp-space-6);
    font-weight: 700;
    letter-spacing: var(--tp-tracking-wide);
    box-shadow: var(--tp-shadow-primary);
    transition: transform var(--tp-t-fast) var(--tp-ease), box-shadow var(--tp-t-base) var(--tp-ease);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-primary-lg);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.text-primary {
    color: var(--tp-primary) !important;
}

.bg-primary {
    background-color: var(--tp-primary) !important;
}

.border-primary {
    border-color: var(--tp-primary) !important;
}

/* ===== B2B Secondary Button ===== */
.btn-tp-b2b {
    --bs-btn-bg: var(--tp-blue);
    --bs-btn-border-color: var(--tp-blue);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--tp-blue-dk);
    --bs-btn-hover-border-color: var(--tp-blue-dk);
    --bs-btn-hover-color: #fff;
    box-shadow: var(--tp-shadow-blue);
}

/* ===== Form Floating Labels ===== */
.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ===== Breadcrumb ===== */
.tp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--tp-space-4);
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
}
.tp-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.tp-breadcrumb a:hover {
    color: var(--tp-primary);
    text-decoration: none;
}
.tp-breadcrumb__sep {
    color: rgba(255,255,255,0.3);
    font-size: 16px;
}
.tp-breadcrumb__current {
    color: #fff;
    font-weight: 700;
}
.tp-breadcrumb--absolute {
    position: absolute;
    top: var(--tp-space-4);
    left: 0;
    right: 0;
    z-index: 5;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .tp-breadcrumb { font-size: 12px; }
}
