/*
Template Name: Bike Works Custom Styles
Author: Kevin Vreeburg
URL: www.kjvdesigns.com
Date: January 15, 2026
*/


/* Center main navigation */
/* =========================
   DESKTOP ONLY (tweak 992px/768px if needed)
   ========================= */
@media (min-width: 992px) {

    .row.seHeaderTop {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    /* Stop old float-based header rules from fighting flex */
    .row.seHeaderTop>.seStoreData,
    .row.seHeaderTop>#SiteNavigator,
    .row.seHeaderTop>.seHeaderActions {
        float: none !important;
        position: static !important;
    }

    /* Left: logo */
    .row.seHeaderTop>.seStoreData {
        flex: 0 0 auto;
    }

    /* Middle: nav gets the remaining space */
    .row.seHeaderTop>#SiteNavigator {
        flex: 1 1 auto;
        width: auto !important;
        margin: 0 !important;
        float: none !important;
    }

    /* Center the nav content */
    #SiteNavigator .seSiteNavigatorWrapper,
    #SiteNavigator .seNavigationMain {
        display: flex;
        justify-content: center;
    }

    /* UL sometimes gets floated by the theme */
    #SiteNavigator ul.seNavbarNav {
        float: none !important;
        margin: 0 auto;
    }

    /* Right: actions */
    .row.seHeaderTop>.seHeaderActions {
        flex: 0 0 auto;
        margin-left: auto;
    }
}

/* =========================
   MOBILE RESET 
   ========================= */
@media (max-width: 991.98px) {

    .row.seHeaderTop {
        display: block !important;
        /* return to stacked layout */
    }

    /* Let the theme's mobile rules work normally */
    .row.seHeaderTop>#SiteNavigator,
    .row.seHeaderTop>.seHeaderActions {
        width: auto !important;
    }

    /* Undo any centering wrappers that can cause the vertical list weirdness */
    #SiteNavigator .seSiteNavigatorWrapper,
    #SiteNavigator .seNavigationMain {
        display: block !important;
    }

    #SiteNavigator ul.seNavbarNav {
        margin: 0 !important;
    }
}


/* Re-size Header Logo */
.seSiteLogoWrapper {
  max-width:150px;
}

/* Hide small un-used sub header */
.sePage .sePageLayout .sePageHeader .seHeaderBottom {
    display: none;
}

/* Slight Drop Shadow for Header */
.sePageHeader {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.sePage .sePageMain {
    margin-top:0 !important;
}
.sePageContent .sePageSection {
    
}

/* =========================
 GLOBAL FOOTER BASE
 ========================= */
.sePage .sePageLayout .seFooterList {
    background: #1a1a1a !important;
    color: #fff;
}

#PageFooter .divider {
    border-color: transparent !important;
}

/* Remove baked-in light backgrounds on sections */
#PageFooter .seFooterSection {
    background-color: transparent !important;
}

/* =========================
 TEXT + HEADINGS
 ========================= */
#PageFooter h1,
#PageFooter h2,
#PageFooter h3,
#PageFooter h4 {
  color:#fff;
}

#PageFooter p,
#PageFooter address,
#PageFooter li {
    color: #f8f8f8;
}

#PageFooter address {
    font-style: normal;
    opacity: 0.9;
}

/* =========================
 LINKS
 ========================= */
#PageFooter a {
    color: #f8f8f8;
    text-decoration: none;
    opacity: 0.9;
}

#PageFooter a:hover {
    color: #ffffff;
    opacity: 1;
    text-decoration: underline;
}

/* =========================
 SOCIAL ICONS
 ========================= */
#PageFooter .social-icon a {
    color: #f8f8f8;
    margin: 0 15px;
}

#PageFooter .social-icon a:hover {
    color: #ffffff;
}

/* =========================
 COPYRIGHT / LEGAL BAR
 ========================= */
#PageFooter .seFooterSection:last-child {
    background-color: #181818 !important;
}

#PageFooter .seFooterSection:last-child p {
    color: #ccc;
    font-size: 14px;
}

/* ====== BASIC RESET FOR THIS COMPONENT ONLY - Rentals ====== */
.bw-split,
.bw-split * {
    box-sizing: border-box;
}

.bw-split {
    padding: clamp(28px, 4vw, 64px) 16px;
    background: #fff;
}

.bw-split__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    /* left slightly wider like the screenshot */
    gap: clamp(20px, 3vw, 56px);
    align-items: center;
}

/* ====== LEFT SIDE ====== */
.bw-product {
    margin: 0;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.bw-product__img {
    width: min(520px, 100%);
    height: auto;
    display: block;
}

.bw-product__caption {
    text-align: center;
    font-weight: 800;
    font-size: clamp(24px, 2.6vw, 44px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #0f172a;
}

/* ====== RIGHT SIDE ====== */
.bw-eyebrow {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(186, 24, 30);
    /* bright green label */
    letter-spacing: 0.02em;
}

.bw-title {
    margin: 0 0 14px;
    font-weight: 900;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.bw-lede {
    margin: 0 0 26px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    max-width: 56ch;
}

/* ====== FEATURES GRID ====== */
.bw-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
    /* row gap, col gap */
}

.bw-feature {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
}

.bw-feature__icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #e10600;
    /* strong red square */
    display: grid;
    place-items: center;
    flex: none;
}

.bw-feature__icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.bw-feature__title {
    margin: 2px 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.bw-feature__text {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.65;
}

/* ====== RESPONSIVE: STACK ON MOBILE ====== */
@media (max-width: 900px) {
    .bw-split__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .bw-product__img {
        width: min(560px, 100%);
    }

    .bw-lede {
        max-width: none;
    }
}

@media (max-width: 520px) {
    .bw-features {
        grid-template-columns: 1fr;
        /* 1 column on small screens */
        gap: 18px;
    }

    .bw-feature {
        grid-template-columns: 48px 1fr;
    }

    .bw-feature__icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }
}