.elementor-4130 .elementor-element.elementor-element-3e61b56{--display:flex;}/* Start custom CSS for html, class: .elementor-element-60b96f5 *//* Import de la typo sportive */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap');

/* Header Fixe */
#hbc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #00bf63;
    z-index: 9999;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

#hbc-header * {
    box-sizing: border-box;
}

.hbc-header-container {
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.hbc-logo-wrap img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Nav & Menu */
.hbc-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hbc-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px; /* Ajusté pour faire tenir les 6 liens */
}

.hbc-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hbc-menu a:hover {
    color: #00bf63;
}

/* Bouton CTA */
.hbc-cta {
    background: #00bf63;
    color: #000000 !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hbc-cta:hover {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 191, 99, 0.4);
}

/* Responsive : On cache la nav sur tablette/mobile pour le moment */
@media (max-width: 1100px) {
    .hbc-nav { display: none; }
}/* End custom CSS */