/* =========================
   Core theme variables
   ========================= */

:root {
    --bg-main: #26213f;
    --bg-main-dark: #1e1a34;
    --bg-surface: #302a4b;
    --bg-surface-soft: #352f54;

    --accent-orange: #f59a28;
    --accent-orange-dark: #dd8217;

    --text-main: #FEFEFD;
    --text-muted: #d0d1dc;

    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.6);
}

/* =========================
   Global
   ========================= */


html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Didact Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #302a4b 0, #201a36 45%, #151026 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    color: var(--text-main);
}

/* utilities */

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


@keyframes spin {
    to { transform: rotate(360deg); }
}

/* scroll to top circle */

.progress-wrap {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 30;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
}

.progress-wrap path {
    stroke: var(--accent-orange);
    stroke-width: 3;
    fill: none;
}

/* =========================
   Navbar
   ========================= */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    z-index: 40;
    background: rgba(24, 20, 46, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    width: 220px;
    height: auto;
    margin-top: 10px;
}

.navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0;
    margin-top:10px !important;
    position: relative;
    color: rgba(255, 255, 255, 0.86);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #ffffff;
}

/* employment dropdown: let Bootstrap JS handle open/close; style menu */

.nav-employment .dropdown-menu {
    background: #1f1a36;
    border-radius: 10px;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.nav-employment .dropdown-item {
    font-size: 14px;
    padding: 7px 18px;
    color: var(--text-main);
}

.nav-employment .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* your client login include likely outputs a button-like link; make it match */

.nav-links .client-login,
.nav-links .client-login a {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav-links .client-login a {
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--accent-orange);
    color: #101010;
    border: 1px solid var(--accent-orange);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-links .client-login a:hover {
    background: var(--accent-orange-dark);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
    transform: translateY(-1px);
}

/* mobile nav */

@media (max-width: 991px) {
    .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: #1f1936;
        padding: 14px 20px 18px;
        display: none;
    }

    .navbar-collapse.show .nav-links {
        display: flex;
    }

    .nav-link::after {
        bottom: -1px;
    }
}

/* =========================
   Hero
   ========================= */

.hero {
    padding-top: 78px; /* nav height */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 20px 70px;
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}



/* =========================
   Projects strip
   ========================= */

.content-wrapper {
    position: relative;
}

.projects-strip {
    padding: 70px 20px 80px;
    background: radial-gradient(circle at top right, #352f54 0, #211b3a 40%, #151026 100%);
}

.projects-header {
    max-width: 1180px;
    margin: 0 auto 32px;
    text-align: center;
}


.projects-carousel {
    max-width: 1180px;
    margin: 0 auto;
}

.projects-single {
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-surface-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.projects-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.projects-content {
    padding: 14px 16px 16px;
}

.projects-tagline {
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.projects-title {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
}

/* =========================
   Footer
   ========================= */

.main-footer {
    position: relative;
    background: #18142f;
    color: var(--text-main);
    padding: 60px 20px 0;
}

.footer-top {
    max-width: 1180px;
    margin: 0 auto 30px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 40px;
}

.footer-btn {
    margin-top: 20px;
}

/* footer background image */

.main-footer-bg {
    position: relative;
    max-height: 220px;
    overflow: hidden;
}

.main-footer-bg img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(70%) brightness(0.35);
}

.main-footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #18142f, transparent);
}

/* footer bottom (from footer-bottom.php) will inherit colors */

/* =========================
   Simple spacing utilities
   ========================= */

.mb-0 { margin-bottom: 0; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-30 { margin-top: 30px; }

/* End of file */

.active {
    color: rgba(255, 255, 255, 0.86) !important;
}

.client-login-button {  
    padding: 10px 20px !important;
    font-size: 18px !important;
    margin-top: 8px !important;
}
