/*
Theme Name: Jet Speed Mailer  - Modern Hero Theme

Author: Sobia
*/

/* ── Google Fonts ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

@charset "utf-8";

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
    --navy:       #0d1b4b;
    --navy-light: #1a2d6e;
    --navy-dark:  #070e2e;
    --gold:       #f5a623;
    --gold-dark:  #d4861a;
    --gold-light: #ffd166;
    --white:      #ffffff;
    --light-bg:   #f4f6f9;
    --text-dark:  #212529;
    --text-muted: #6c757d;
}

/* ── Base ──────────────────────────────────────────────────────────────────── */
body {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--white) !important;
    background-image: none !important;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* ── Hero Header ───────────────────────────────────────────────────────────── */
#headerwrapper {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: var(--navy-dark) !important;
    background-image: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%) !important;
    clear: both;
}

#header {
    display: none !important;
}

/* Hero brand section */
.jsm-hero {
    padding: 32px 0 28px;
    position: relative;
    overflow: hidden;
}

/* Decorative floating circles */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(245, 166, 35, 0.07);
    top: -100px;
    right: 5%;
}
.hero-shape-2 {
    width: 180px;
    height: 180px;
    background: rgba(245, 166, 35, 0.05);
    bottom: -60px;
    right: 22%;
}
.hero-shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(245, 166, 35, 0.1);
    top: 20px;
    right: 28%;
}

.jsm-hero .hero-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.12);
    color: var(--gold);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.jsm-hero .hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 6px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.jsm-hero .hero-title span {
    color: var(--gold);
}

.jsm-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

.jsm-hero .hero-visit-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.jsm-hero .hero-visit-btn:hover {
    background: var(--gold-light);
    color: var(--navy-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

@media (max-width: 768px) {
    .jsm-hero .hero-title { font-size: 28px; }
    .jsm-hero { padding: 20px 0 16px; }
}

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.jsm-navbar {
    background-color: var(--navy-dark);
    background-image: linear-gradient(180deg, var(--navy-dark) 0%, #0b1640 100%);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.jsm-navbar-inner {
    display: flex;
    align-items: center;
    height: 62px;
    gap: 0;
}

.jsm-nav-logo {
    display: flex;
    align-items: center;
    margin-right: 32px;
    flex-shrink: 0;
}

.jsm-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.jsm-nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    padding: 8px 14px;
    border-radius: 7px;
    transition: all 0.18s ease;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.jsm-nav-link:hover,
.jsm-nav-item:hover > .jsm-nav-link {
    color: var(--gold) !important;
    background: rgba(245,166,35,0.1);
}

.jsm-nav-link.jsm-active,
.jsm-nav-item.jsm-active > .jsm-nav-link {
    color: var(--gold) !important;
    background: rgba(245,166,35,0.12);
}

.jsm-caret {
    font-size: 9px;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.jsm-nav-item:hover .jsm-caret {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Dropdown ─────────────────────────────────────────────────────────────── */
.jsm-has-dropdown {
    position: relative;
}

.jsm-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--navy);
    border: 1px solid rgba(245,166,35,0.25);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.18s ease;
    z-index: 2000;
}

.jsm-has-dropdown:hover .jsm-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jsm-dropdown-inner {
    padding: 8px 0;
}

.jsm-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.78) !important;
    text-decoration: none !important;
    transition: all 0.15s ease;
    cursor: pointer;
}

.jsm-dd-item i {
    width: 16px;
    font-size: 12px;
    color: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
}

.jsm-dd-item:hover {
    background: rgba(245,166,35,0.1);
    color: var(--gold) !important;
    padding-left: 22px;
}

.jsm-dd-item:hover i { opacity: 1; }

.jsm-dd-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245,166,35,0.5);
    padding: 10px 18px 4px;
    margin-top: 4px;
}

.jsm-dd-divider {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 6px 0;
}

.jsm-dd-upgrade {
    color: var(--gold) !important;
    font-weight: 700 !important;
}

.jsm-dd-logout {
    color: rgba(255,100,100,0.8) !important;
}

.jsm-dd-logout:hover {
    color: #ff6464 !important;
    background: rgba(255,100,100,0.08);
}

/* ── CTA Button ──────────────────────────────────────────────────────────── */
.jsm-nav-cta {
    margin-left: auto;
    flex-shrink: 0;
}

.jsm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.18s ease;
}

.jsm-cta-join {
    background: var(--gold);
    color: var(--navy-dark) !important;
    box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}

.jsm-cta-join:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 22px rgba(245,166,35,0.5);
    transform: translateY(-1px);
}

.jsm-cta-member {
    background: rgba(245,166,35,0.15);
    color: var(--gold) !important;
    border: 1px solid rgba(245,166,35,0.4);
}

.jsm-cta-member:hover {
    background: rgba(245,166,35,0.25);
    border-color: var(--gold);
}

/* ── Mobile toggle ───────────────────────────────────────────────────────── */
.jsm-mobile-toggle {
    display: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 7px;
    color: rgba(255,255,255,0.85);
    padding: 7px 11px;
    font-size: 16px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.15s ease;
}

.jsm-mobile-toggle:hover {
    background: rgba(245,166,35,0.15);
    border-color: rgba(245,166,35,0.4);
    color: var(--gold);
}

/* ── Mobile menu ─────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .jsm-navbar-inner { height: 58px; flex-wrap: wrap; }
    .jsm-mobile-toggle { display: block; }
    .jsm-nav-cta { display: none !important; }

    .jsm-nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 8px 0 12px;
        background: var(--navy);
        border-top: 1px solid rgba(245,166,35,0.2);
        gap: 0;
    }

    .jsm-nav-links.jsm-nav-open { display: flex; }

    .jsm-nav-link {
        padding: 11px 16px;
        border-radius: 0;
    }

    .jsm-dropdown {
        position: static;
        opacity: 1;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid rgba(245,166,35,0.3);
        margin-left: 16px;
        border-radius: 0;
        transition: height 0.2s ease;
        background: rgba(255,255,255,0.03);
    }

    .jsm-dd-open .jsm-dropdown {
        visibility: visible;
        height: auto;
    }

    .jsm-has-dropdown:hover .jsm-dropdown {
        opacity: 1;
        visibility: hidden;
        height: 0;
    }

    .jsm-dd-open .jsm-dropdown {
        visibility: visible !important;
        height: auto !important;
    }
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
    background-color: var(--gold) !important;
    border-color: var(--gold-dark) !important;
    color: var(--navy-dark) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0.3px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--gold-dark) !important;
    border-color: var(--gold-dark) !important;
    color: var(--navy-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35) !important;
}

.btn-lg {
    padding: 12px 36px !important;
    font-size: 16px !important;
}

/* ── Sister Site Banner ────────────────────────────────────────────────────── */
.jsm-sister-bar {
    background: rgba(245, 166, 35, 0.08);
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
    padding: 8px 0;
    text-align: center;
}

.jsm-sister-bar p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.jsm-sister-bar a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.jsm-sister-bar a:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* ── Content Sections ──────────────────────────────────────────────────────── */
section h1.display-4 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

section p.lead {
    font-weight: 400;
    line-height: 1.7;
}

/* Override the inline red section — converts to navy */
section[style*="background-color:#9d0000"],
section[style*="background-color: #9d0000"] {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%) !important;
}

section[style*="background-color:#9d0000"] p.lead,
section[style*="background-color: #9d0000"] p.lead {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ── Feature Cards ─────────────────────────────────────────────────────────── */
.jsm-feature-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    height: 100%;
}

.jsm-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13,27,75,0.12);
    border-color: rgba(245,166,35,0.2);
}

.jsm-feature-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.jsm-feature-card .card-icon i {
    color: var(--gold);
    font-size: 22px;
    margin: 0;
}

.jsm-feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.jsm-feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Stats Bar ─────────────────────────────────────────────────────────────── */
.jsm-stats-bar {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 40px 0;
}

.jsm-stats-bar .stat-item {
    text-align: center;
}

.jsm-stats-bar .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.jsm-stats-bar .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.lfm_footer {
    background: var(--navy-dark) !important;
    background-image: none !important;
    filter: none !important;
    border-top: 3px solid var(--gold) !important;
}

.lfm_footer h4 {
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 18px;
}

.lfm_footer h5 {
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

.lfm_footer a.text-white {
    color: rgba(255, 255, 255, 0.65) !important;
    transition: color 0.15s ease;
    text-decoration: none;
    font-size: 14px;
}

.lfm_footer a.text-white:hover {
    color: var(--gold) !important;
}

.lfm_footer p.text-white {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 13px;
}

.lfm_footer .footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 20px 0;
}

.lfm_footer .footer-bottom {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 20px;
}

.lfm_footer .footer-bottom a {
    color: var(--gold) !important;
    font-weight: 600;
}

/* ── Social Buttons ────────────────────────────────────────────────────────── */
.lfm_footer .btn-sm {
    border-radius: 8px !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lfm_footer .btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ── Icons ─────────────────────────────────────────────────────────────────── */
.far, .fas {
    margin-right: 4px;
}

.feedicon {
    color: var(--gold);
    font-size: 20px;
    margin-right: 5px;
}

/* ── Profile Pictures ──────────────────────────────────────────────────────── */
.profilepic_small  { width: 40px;  height: 40px;  }
.profilepic_med    { width: 75px;  height: 75px;  }
.profilepic_large  { width: 200px; height: 200px; }

/* ── Button Links ──────────────────────────────────────────────────────────── */
.buttonlink {
    cursor: pointer;
    background-color: var(--gold);
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
    display: inline-block;
    color: var(--navy-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 14px;
    margin: 2px 1px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.buttonlink:hover {
    color: var(--navy-dark);
    background-color: var(--gold-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

/* ── Info Bar ──────────────────────────────────────────────────────────────── */
.infobar {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    color: var(--white);
    background-color: var(--navy);
}

.infobar h2 { color: var(--white); }

/* ── Vertical Center ───────────────────────────────────────────────────────── */
.vcenter {
    display: flex;
    align-items: center;
}

/* ── Text Styles ───────────────────────────────────────────────────────────── */
.lfm_title {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-size: 32px;
    font-weight: 700;
}

.lfm_descr {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-size: 16px;
}

.lfm_descr_bold {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
}
