/*
 * X Fit Plan – Blue Header & Footer
 * Styling for fixed header and footer in a stronger blue / masculine theme.
*/

body {
    padding-top: 90px; /* Prevent content jump under fixed header */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.xfit-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0b1120; /* dark navy */
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.6);
    z-index: 9999;
    padding: 15px 0;
    border-bottom: 4px solid #2563eb; /* primary blue */
}

.xfit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.xfit-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.xfit-logo a {
    text-decoration: none;
}

.xfit-logo-text {
    font-weight: 900;
    font-size: 28px;
    color: #60a5fa; /* lighter accent blue */
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.xfit-nav {
    display: flex;
    align-items: center;
}

.xfit-nav a {
    color: #e5e7eb;
    font-weight: 600;
    margin-left: 26px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    transition: color 0.25s ease, transform 0.15s ease;
}

.xfit-nav a:hover {
    color: #60a5fa;
    transform: translateY(-1px);
}

.xfit-cta-btn {
    background: #2563eb;
    color: #ffffff !important;
    padding: 11px 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid #93c5fd;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.xfit-cta-btn:hover {
    background: #1d4ed8;
}

.xfit-mobile-menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: 1px solid #1f2937;
    border-radius: 6px;
    padding: 4px 10px;
    color: #bfdbfe;
}

/* Footer */

.xfit-footer {
    background: #020617; /* black / navy */
    color: #e5e7eb;
    padding: 80px 20px 30px;
    margin-top: 80px;
}

.xfit-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.xfit-footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
}

.xfit-footer-title {
    color: #60a5fa;
    font-size: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.xfit-footer h4 {
    color: #93c5fd;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.xfit-footer a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
}

.xfit-footer a:hover {
    color: #60a5fa;
}

.xfit-copyright {
    text-align: center;
    background: #020617;
    border-top: 1px solid #111827;
    padding: 20px;
    font-size: 13px;
    margin-top: 40px;
    color: #9ca3af;
}

/* Responsive */

@media (max-width: 768px) {
    .xfit-header-inner {
        justify-content: space-between;
    }

    .xfit-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #020617;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
        padding: 18px 0 22px;
    }

    .xfit-nav.active {
        display: flex;
    }

    .xfit-nav a {
        display: block;
        margin: 12px 20px;
    }

    .xfit-mobile-menu-toggle {
        display: block;
    }

    .xfit-footer-col {
        text-align: center;
    }
}
