@font-face {
    font-family: "PTFont";
    src: url("../fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto/Roboto-VariableFont_wdth\,wght.ttf");
    font-display: swap;
}
:root {
    --pt-blue: #0a58ca;
    --pt-dark-blue: #07111f;
}

.bg-primary {
    background-color: var(--pt-blue) !important;
}

* {
    font-family: "Roboto", sans-serif !important;
}

.pt-font,
.pt-font * {
    font-family: "PTFont", sans-serif !important;
}
.logo-main {
    font-weight: 800;
    letter-spacing: -0.04em; /* Tightens characters to look like a cohesive logo */
    color: var(--pt-blue);
}
.logo-second {
    /* font-family: "Space Grotesk", sans-serif; */
    margin-left: -0.2em;
    font-weight: 300;
    letter-spacing: -0.05em;
    color: #6c757d; /* Muted corporate slate gray */
}
.navbar-brand > .logo-second {
    margin-left: -0.1em !important;
}
.navbar-brand > .logo-main {
    font-weight: 700 !important;
}
.navbar-brand {
    font-size: x-large !important;
}
.navbar-logo {
    max-height: 46px;
    margin-right: 0.5em;
}

.headline {
    color: var(--pt-blue);
}

.market-image {
    object-fit: contain;
    opacity: 0.5;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 70px 0 25px;
    background-color: var(--pt-dark-blue);
    color: #ffffff;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
}

.footer-brand span {
    color: var(--pt-blue);
}

.footer-description {
    max-width: 350px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Social icons */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;

    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.footer-social a:hover {
    background-color: var(--pt-blue);
}

/* Footer headings */

.site-footer h6 {
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

/* Footer links */

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 0.75rem;
}

.site-footer li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer li a:hover {
    color: #ffffff;
}

/* Bottom bar */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.footer-bottom a {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Login and register form cards */
.custom-card {
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}
.card-header {
    border-bottom: none;
}

.bi-arrow-repeat {
    color: #fff;
    background-color: var(--pt-blue);
    /* padding: 1px; */
}
.bi-dash-circle {
    color: #fff;
    background-color: var(--bs-danger);
}
/* Mobile */

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 20px;
    }
}
