/*
Theme Name: BBOS Custom Theme
Author: James
Description: A barebones custom theme built from scratch.
Version: 1.0
*/

.custom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-logo h2 {
    margin: 0;
    color: #1C48AA;
    font-weight: 900;
}

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

.nav-links {
    display: flex;
    flex-direction: row; 
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links li:not(:last-child)::after {
    content: "|";
    margin: 0 15px;
    color: #1C48AA;
    font-weight: 400;
}

.nav-links a {
    text-decoration: none;
    color: #1C48AA;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #F8D648; 
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 15px;

    animation: slideUpFade 0.6s ease-out forwards; 
}

.btn-store {
    background-color: #F8D648 !important;
    color: #1C48AA !important;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 4px;
}

.btn-store:hover {
    background-color: #F8D648 !important;
}

.btn-member {
    background-color: transparent;
    color: #1C48AA !important;
    border: 2px solid #1C48AA;
    text-decoration: none;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 20px; 
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hide-desktop { display: none !important; }

@media (max-width: 768px) {
    .custom-nav {
        padding: 15px 20px;
    }

    .hide-mobile { display: none !important; }
    .hide-desktop { display: flex !important; }

    .nav-left-group {
        gap: 15px;
    }

    .mobile-menu-toggle {
        cursor: pointer;
        align-items: center;
    }

    .mobile-icons {
        gap: 20px;
        align-items: center;
    }

    .icon-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 80vh; 
    min-height: 600px;
    overflow: hidden;
    background-color: #f4f4f4;
    font-family: 'Work Sans', sans-serif;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10% 5%;
    box-sizing: border-box;
    z-index: 3;
    pointer-events: none; 
}

.hero-title {
    margin: 0;
    font-size: clamp(1.8rem, 9vw, 5rem);
    line-height: 1.05;
    font-weight: 900;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .hero-title {
        font-size: clamp(3.5rem, 6vw, 6rem);
    }
}

.text-solid {
    color: #ffffff;
}

.text-outline {
    color: #ffffff;
}

.hero-info-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 8px;
    color: white;
    pointer-events: auto; 
    max-width: 350px;
}

.hero-info-card h2 {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 400;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    background-color: #1C48AA;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-hero-cta:hover {
    background-color: #1C48AA;
}

.cta-arrow {
    margin-left: 8px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 4;
    padding: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-control:hover { opacity: 1; }
.carousel-control.prev { left: 20px; }
.carousel-control.next { right: 20px; }

.carousel-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.dot.active { background: white; }

@media (min-width: 769px) {
    .slide-content-container {
        flex-direction: row; 
        align-items: center;
        padding: 0 8%;
    }

    .hero-info-card {
        margin-top: auto;
        margin-bottom: 5%; 
    }
}

@media (max-width: 768px) {
    .slide-content-container {
        padding: 15% 5% 25% 5%; 
    }

    .hero-info-card {
        max-width: 100%;
        text-align: left;
    }
}

.section-categories {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Work Sans', sans-serif;
}

.categories-header {
    margin-bottom: 25px;
}

.categories-header h2 {
    color: #1C48AA;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.categories-header p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    max-width: 600px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-bottom: 30px;
}

.cat-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    aspect-ratio: 1 / 1; 
    text-decoration: none;
    background-color: #eee; 
}

.cat-card.cat-card-featured {
    grid-column: span 2; 
    aspect-ratio: 2 / 1; 
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
}

.cat-card:hover img {
    transform: scale(1.03); 
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: none;
    pointer-events: none;
}

.cat-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
}

.cat-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
}

.cat-arrow {
    margin-left: 6px;
    font-size: 0.9rem;
}

.cat-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 4px;
    z-index: 2;
}

.categories-footer {
    text-align: center;
}

.btn-store-solid {
    display: inline-flex;
    align-items: center;
    background-color: #1C48AA;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-store-solid:hover {
    background-color: #1C48AA;
}

@media (min-width: 769px) {
    .categories-grid {
        gap: 20px; 
    }
    .cat-card.cat-card-featured {
        aspect-ratio: 2.5 / 1;
    }
    .cat-icon {
        width: 60px;
        height: 60px;
    }
    .cat-title {
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }
}

.section-value-prop {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Work Sans', sans-serif;
}

.value-header {
    margin-bottom: 40px;
    text-align: center; 
}

.value-header h2 {
    color: #1C48AA;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.value-header p {
    color: #777;
    font-size: 1rem;
    margin: 0;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-card-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5; 
    background-color: #f4f4f4; 
}

.value-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: none;
    pointer-events: none;
}

.value-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ADCAF8;
    width: 65px;
    height: 65px;
    border-bottom-left-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.value-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    z-index: 2;
}

.value-card-content {
    text-align: center;
}

.value-card-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 769px) {
    .value-header {
        text-align: left; 
        margin-bottom: 50px;
    }

    .value-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 25px;
    }

    .value-card-image-wrap {
        aspect-ratio: 3 / 4; 
    }

    .value-title {
        font-size: 1.4rem;
    }
}

.section-reviews {
    background-color: #f8f9fa;
    padding: 70px 20px;
    font-family: 'Work Sans', sans-serif;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    color: #1C48AA;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 15px 0;
    text-transform: none;
}

.reviews-header p {
    color: #1C48AA;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    margin: 0;
    text-transform: none;
}

.reviews-widget-wrapper {
    width: 100%;

}

.site-footer {
    background-color: #ffffff;
    padding: 60px 20px 40px;
    font-family: 'Work Sans', sans-serif;
    border-top: 1px solid #eaeaea; 
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px;
    text-align: center; 
    margin-bottom: 50px;
}

.footer-logo {
    color: #1C48AA;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 20px 0;
}

.footer-logo-link {
    text-decoration: none;
}

.social-heading {
    color: #1C48AA;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 15px 0 !important;
    text-align: center !important; 
    width: 100%;
    display: block;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center; 
}

.social-icons a {
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.footer-col h4 {
    color: #1C48AA;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 15px 0 !important;
    display: block !important; 
    width: 100%;
}

.footer-col ul {
    list-style: none !important;
    padding-left: 0 !important; 
    margin: 0 !important;
    width: 100%;
}

.footer-col li {
    margin-bottom: 15px;
    display: block !important;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important; 
}

.footer-col a {
    color: #5587d6; 
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #1C48AA;
    text-decoration: underline;
}

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

.footer-tagline h2 {
    color: #1C48AA;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
}

.desktop-legal-links {
    margin-bottom: 20px;
}

.desktop-legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

.desktop-legal-links a:hover {
    color: #1C48AA;
}

.desktop-legal-links .divider {
    color: #ccc;
    margin: 0 10px;
}

.copyright {
    color: #999;
    font-size: 0.85rem;
    margin: 0 0 15px 0;
}

.disclaimer {
    color: #b5b5b5;
    font-size: 0.65rem; 
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .footer-top-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr; 
        text-align: left; 
        gap: 20px;
    }

    .social-icons {
        justify-content: flex-start; 
    }
}

.hero-countdown {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center; 
    padding: 60px 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: white;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

.hero-subtext {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 30px 0;
}

.timer-widget {
    display: inline-flex;
    border: 1px solid #F8D648;
    border-radius: 8px;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.3);
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 215, 0, 0.5);
}

.time-block-last {
    border-right: none; 
}

.time-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F8D648;
    line-height: 1;
}

.time-label {
    font-size: 1rem;
    color: #F8D648;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-countdown {
        padding: 40px 20px;
        min-height: 600px; 
        align-items: flex-end; 
    }

    .hero-headline { font-size: 3.5rem; }
    .hero-subtext { font-size: 1.2rem; }

    .timer-widget {
        padding: 10px 15px;
    }

    .time-block { padding: 0 10px; }
    .time-number { font-size: 1.8rem; }
    .time-label { font-size: 0.9rem; }
}

.nav-logo img {
    display: block;
    width: 100%;     
    max-width: 200px;
    height: auto;     
}

@media (max-width: 768px) {
    .nav-logo img {
        max-width: 140px;
    }
}
