@charset "utf-8"; 
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
* { margin:0px; padding:0px; box-sizing:border-box;  }

/* .fbc-center-column stands for flexbox center column, it is a utility class that can be used to center content both horizontally and vertically in a column layout. */
/* .fbc-center-row stands for flexbox center row, it is a utility class that can be used to center content both horizontally and vertically in a row layout. */


:root  {  
        --white:#FFFFFF;
        --bright-yellow:#F5EDEA;
        --dark-yellow:#F0B556;
        --main-yellow:#FFD700;
        --header-height: 42px;
        --main-red:#EF4444;;
        --font-01:'Inter';
        --font-02:'Playfair Display';
        --font-03:'DM Sans';
        --m: 4rem;
        --header-height: 3.2rem;
        --first-color: #037486;
        --dark-color: #070D1F;
        --dark-color-alt: #282B3A;
        --white-color: #E6E7E9;
        --normal-font-size: 1rem;
        --small-font-size: .813rem;
        --glass-bg: rgba(0, 0, 0, 0.475); /* Deep black but translucent */
        --blur-strength: 12px;
        --z-fixed: 100;
}
body::-webkit-scrollbar { display: none; }

html,body { 
    margin: 0;
    padding: 0;
    overflow-y: scroll; 
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth; 
        -ms-overflow-style: none;
scrollbar-width: none;
    background-color: black; /* Note: when the header turns black, it will match the body color */
}
    
p,h1,h3,h4, h2 { text-decoration:none; color:var(--white-color);  }




header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px; /* Slightly taller for a premium feel */
    padding: 0 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother curve */
}

/* The Glass Effect on Scroll */
header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength)); /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle "edge" */
    height: 50px; /* Slight shrink effect on scroll */
}

/* Reset buttons */
button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0; /* Changed from right for better transform logic */
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 18, 0.95); /* Matched to your deep dark theme */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* Hardware-accelerated slide */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Premium easing curve */
}

.nav-overlay.open {
    transform: translateX(0);
}

/* ========================================
   CLOSE BUTTON
   ======================================== */
.close-btn {
    position: absolute;
    top: 24px;
    right: 32px;
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 3.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: #ffffff;
    transform: rotate(90deg) scale(1.1); /* Nice interactive twist */
}

/* ========================================
   NAV LINKS & STAGGERED ANIMATION
   ======================================== */
.nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px; /* Replaces margin for cleaner spacing */
}

.nav-links a {
    /* Force the custom font and weight */
    font-family: 'Barlow Condensed', sans-serif !important; 
    font-weight: 900 !important; /* 900 is usually the "Black" weight */
    text-transform: uppercase;   /* Ensures it stays capitalized */
    
    /* ... keep your other existing styles like size, color, animation ... */
    display: block;
    font-size: 2.3rem;
    color: #e4e4e7;
    text-decoration: none;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(30px);
    transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover State */
.nav-links a:hover {
    color: #FFD700; /* Using your store's yellow accent */
    transform: scale(1.05) translateY(-2px);
}

/* THE MAGIC: When the menu opens, fade the links in and slide them up.
   We delay them slightly so they cascade in.
*/
.nav-overlay.open .nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.open .nav-links a:nth-child(1) { transition-delay: 0.15s; }
.nav-overlay.open .nav-links a:nth-child(2) { transition-delay: 0.25s; }
.nav-overlay.open .nav-links a:nth-child(3) { transition-delay: 0.35s; }

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
}


section#upcoming_runs_container { 
    height:auto; width:343px;
    display:flex; align-items:center; justify-content:center; 
    margin:auto;margin-bottom:30px; margin-top:30px;
}

article#upcoming_runs_container_child  { 
    height:144px; 
    width:343px; display:flex; 
    align-items:center; justify-content:center;  
    flex-direction:column; gap:15px;
}

article#upcoming_runs_container_child > h3 { color:#FFD700; letter-spacing:3.2px;}
article#upcoming_runs_container_child > h2 { color:#FFFFFF; letter-spacing:1.8px; font-size:44px; }
article#upcoming_runs_container_child > p { color:#A1A1AA; font-size:14px; line-height:24px; text-align:center; width:290px; }
#nike_elite_gear_heading_container { 
    height:170px; 
    width:351px; margin:auto; display:flex; 
    flex-direction:column; 
    align-items:center; justify-content:center;
    margin-top:30px; margin-bottom:30px; 
}

/* Legal container */

.legal_container  { 
    min-height:144px;  margin:auto; padding:10px;
    max-width:1100px; display:flex; margin-top:40px;
    align-items:center; justify-content:center;  
    flex-direction:column; 
}

.legal_heading_container { 
    height:40px; border-radius:99px; background-color:#ffd90041; padding-left:13px; padding-right:13px;
    width:365px; margin:auto; display:flex;  box-shadow:inset 0 0 0 1px #FFD700;
    align-items:center; justify-content:center; display:flex;
    margin-top:80px; 
}

.legal_heading_container > h2 { color:#FFD700; font-size:17px; letter-spacing:3.2px; }

#nike_elite_gear_heading_container_child { text-align:center; display:flex; align-items:center; justify-content:space-between; flex-direction:column; gap:px; }
    #nike_elite_gear_heading_container_child > h3 { color:#FFD700; font-size:32px;}
        #nike_elite_gear_heading_container_child > h4 { color:#FFD700; font-size:17px; letter-spacing:3.2px; }

    #nike_elite_gear_heading_container_child > h2 { color:#FFFFFF; font-size:44px;}
    #nike_elite_gear_heading_container_child > p { color:#A1A1AA; margin-top:10px; text-align:center;}

    
/* ============================= */
/* SCHEDULE CARD COMPONENT       */
/* ============================= */


/* ============================= */

.schedule_component_father {
    position: relative;
    height: 340px;
    width: 343px;
    border: 1px solid #27272A;
    border-radius: 16px; 
    margin: auto;
    margin-bottom: 30px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0f0f12;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule_component_father:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1.4px #D6A700;
}


/* Glow Effect */
.schedule_component_father::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(255, 221, 87, 0.08) 20%,
        rgba(255, 221, 87, 0.06) 45%,
        rgba(255, 221, 87, 0.03) 75%,
        transparent 100%
    );
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}


/* ============================= */
/* TOP SECTION                   */
/* ============================= */

.event_type_container {
    display: flex;
    flex-direction: column;
    gap: 14px; 
}

.event_type_indicator {
    display: flex; 
    align-items: center;
    justify-content: space-between;
}

/* King of the Court Badge */
.event_type_indicator > :nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: rgba(239, 68, 68, 0.15);
    border-radius: 99px;
}

.event_type_indicator > :nth-child(1) p {
    color: #F87171;
    letter-spacing: 0.6px;
    font-size:8.1px;
}

/* Live Indicator */
.event_type_indicator > :nth-child(2) {
    display: flex;
    align-items: center; 
    gap: 6px;
    font-size: 0.75rem;
    color: #9CA3AF;
}

.red_dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #EF4444;
    animation: blink 1.5s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Title */
.event_type_title h2 {
    font-size: 1.25rem;
    color: #ffffff; margin-top:20px;
    line-height: 1.2;
}


/* ============================= */
/* DETAILS GRID                  */
/* ============================= */

.event_details_container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.event_details_small_container :nth-child(1)> i { font-size:16px; color: #FFD700; width:auto;}

.event_details_small_container {
    width: calc(50% - 7px);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon container */
.event_details_small_container > :nth-child(1)  {
    height: 36px;
    width: 36px;
    background-color: #27272A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text container */
.event_details_small_container > :nth-child(2) {
    display: flex;
    flex-direction: column; 
    justify-content: center;
}

.event_details_small_container h4 {
    font-size: 0.7rem;
    font-weight: 600;
    color: #E4E4E7;
}

.event_details_small_container a {
    font-size: 0.65rem;
    color: #FFD700;

}.event_details_small_container p {
    font-size: 0.65rem; 
    color: #9CA3AF;
}

/* Green spots indicator */
.event_details_small_container span {
    font-weight: 700;
}


/* ============================= */
/* BUTTON STATES                 */
/* ============================= */

.sold_out_like_button {
    height: 52px;
    width: 160px;
    background-color: #18181B;
    border-radius: 99px;
    border: 1px solid #27272A;
    color: #EF4444;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: not-allowed;
    transition: background 0.3s ease, transform 0.2s ease;
}

.sold_out_like_button:hover {
    background-color: #1f1f23;
}

.join_now_like_button {
    height: 52px;
    width: 160px;
    background-color: #85144B;
    border-radius: 99px;
    border: 1px solid #85144B;
    color: #FFFFFf;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.join_now_like_button:hover {
    background-color: #9d1356;
    transform: translateY(-2px);
}

/* ------------------------------------------------- ( Carousel ) --------------------------------------------------------- */


.carousel_master_wrapper {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.carousel_viewport {
    overflow-x: auto; 
    overflow-y: hidden;
    width: 100%;
    cursor: grab;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth;
    padding-bottom: 20px; /* Space for box-shadows on hover */
}

.carousel_viewport::-webkit-scrollbar {
    display: none; 
}

.carousel_viewport:active { 
    cursor: grabbing; 
}

.carousel_track {
    display: flex;
    gap: 16px; /* Slightly tighter gap looks more modern */
    padding: 0 20px; /* Gives the first item breathing room off the screen edge */
}

/* ========================================
   THE PRODUCT BOXES
   ======================================== */

.home_page_product_boxes {
    scroll-snap-align: start; 
    flex: 0 0 240px; /* Slightly wider for a premium feel */
    height: 300px; /* Taller boxes look more editorial/luxurious */
    border-radius: 16px; /* Smoother corners */
    text-decoration: none; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: center;
    padding-bottom: 12px;   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    user-select: none; 
    -webkit-user-drag: none; 
    position: relative;
    overflow: hidden; /* Keeps the inner shadow contained */
    
    /* Hardware acceleration for buttery hover lift */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease;
}

/* Cinematic Dark Gradient to ensure bottom text pops */
.home_page_product_boxes::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Premium Hover Lift */
.home_page_product_boxes:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: #FFD700; /* Subtle gold flash */
}

/* ========================================
   THE "GLASS" TEXT LABEL
   ======================================== */
.label_container {
    width: calc(100% - 24px); 
    position: relative;
    z-index: 2; /* Sits above the cinematic gradient */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    
    /* The Glassmorphism Magic */
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.barlow-condensed-black {
    color: white;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0;
}

.hover-arrow {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Push arrow right on hover */
.home_page_product_boxes:hover .hover-arrow {
    transform: translateX(4px);
}

/* Specific Backgrounds */
.item-socks  { background-image: url('../assets/images/nba-elite-pro-socks-bg.webp'); }
.item-tank   { background-image: url('../assets/images/IMG_0470.webp'); }
.item-molten { background-image: url('../assets/images/wilson-ball-bg-02.JPG'); }
.item-tshirt { background-image: url('../assets/images/IMG_0465.JPG'); }


/* HOME PAGE MERCH BUTTON        */
/* ============================= */

#home_page_merch_button {
    position: relative;
    height: 64px;
    width: 210px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    animation: elitePulse 3s ease-in-out infinite;
    transition: transform 0.3s ease, border-color 0.3s ease;
    background: linear-gradient(145deg, #1a1a1d, #111113);
    border-radius: 14px;
    border: 1px solid #2a2a2e;
    box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255,255,255,0.04);
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.3s ease;
}

@keyframes elitePulse {

0% {

border-color: rgba(125, 125, 125, 0.5);

box-shadow: 0 0 0px rgba(255, 255, 255, 0);

}

50% {

/* Glows brighter in the middle of the cycle */

border-color: rgba(255, 255, 255, 0.8);

box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);

}

100% {

border-color: rgba(125, 125, 125, 0.5);

box-shadow: 0 0 0px rgba(255, 255, 255, 0);

}

}
/* ============================= */
/* PREMIUM CLICK SPRING          */
/* ============================= */

#home_page_merch_button:active {
    animation: nikePress 0.4s cubic-bezier(.34,1.56,.64,1); 
}

@keyframes nikePress {
    0%   { transform: scale(1); }
    35%  { transform: scale(0.88) translateY(2px); } /* compression */
    65%  { transform: scale(1.04); }                 /* overshoot */
    100% { transform: scale(1); }                    /* settle */
}


/* ============================= */
/* TEXT                          */
/* ============================= */


/* ============================= */
/* ICON MOTION                   */
/* ============================= */

#home_page_merch_button lord-icon {
    transition: transform 0.3s ease; width:25px;height:25px
}

#home_page_merch_button:hover lord-icon {
    transform: translateX(5px);
}

#home_page_merch_button > a { text-decoration:none; color:white; font-size:17px; }

/* PREMIUM LIGHT SWEEP           */
/* ============================= */

#home_page_merch_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.08),
        transparent 70%
    );
    transition: left 0.6s ease;
}

#home_page_merch_button:hover::before {
    left: 120%;
}

.got_questions_container { 
    height:80px; width:317px; margin:auto; margin-top:80px; 
    display:flex; flex-direction:column; align-items:center; justify-content:flex-end;
}

.got_questions_container > h3 { color:#FFD700; letter-spacing:4.2px;}
.got_questions_container > h2 { color:#FFFFFF;  font-size:36px; }

.faq {
    max-width:1100pxpx;  padding:20px;
    margin: auto; margin-top:30px; margin-bottom:40px; 
}

.accordion-item {
    border-radius: 12px;
    background: #101012; box-shadow:inset 0 0 0 1px #27272A;
    overflow: hidden;
    margin-bottom: 20px;
    transition: border 0.3s ease; 
}

.accordion-item.active {
    border: 1px solid #ffd400;
  
}

.accordion-header {
    background: transparent;
    width: 100%;
    padding: 20px;
    border: none;
    font-size: 18px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header .icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-content {

    opacity: 1;
    transform: translateY(0);
    padding: 10px 20px 20px;

}
.accordion-header span {
   letter-spacing:0.8px;
}

.accordion-item.active .icon {
    transform: rotate(180deg);
}

.accordion-content {
    height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: height 0.4s ease, padding 0.3s ease;
}

.accordion-content p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.4;
}

.reveal {
    position: relative;
    transform: translateY(160px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform, opacity;
}

.reveal.active {
    transform: translateY(0); 
    opacity: 1;
}