/**
 * Ultra Minimalist Header
 * Clean, modern, simple
 * @package Betpro_Theme
 */

/* ==========================================================================
   HEADER
   ========================================================================== */
.bp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.bp-header.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.bp-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Right side container for WhatsApp + Toggle */
.bp-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   LOGO
   ========================================================================== */
.bp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.bp-logo img {
    height: 40px;
    width: auto;
}

.bp-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
}

.bp-logo-text span {
    color: #dc2626;
}

/* ==========================================================================
   NAVIGATION - CENTERED
   ========================================================================== */
.bp-nav {
    display: none;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 900px) {
    .bp-nav {
        display: flex;
    }
}

.bp-nav li {
    list-style: none;
}

.bp-nav a,
.bp-nav li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.bp-nav a:hover,
.bp-nav li a:hover {
    color: #111;
    background: #f5f5f5;
}

.bp-nav .current-menu-item>a,
.bp-nav a.active {
    color: #dc2626;
    background: #fef2f2;
}

/* ==========================================================================
   CTA BUTTON
   ========================================================================== */
.bp-cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #22c55e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

@media (min-width: 600px) {
    .bp-cta {
        display: flex;
    }
}

.bp-cta:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.bp-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   MOBILE WHATSAPP ICON
   ========================================================================== */
.bp-wa-icon-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
}

@media (min-width: 600px) {
    .bp-wa-icon-mobile {
        display: none;
    }
}

.bp-wa-icon-mobile:hover {
    background: #16a34a;
    transform: scale(1.05);
}

.bp-wa-icon-mobile svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* ==========================================================================
   MOBILE TOGGLE
   ========================================================================== */
.bp-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 900px) {
    .bp-toggle {
        display: none;
    }
}

.bp-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    border-radius: 1px;
    transition: all 0.25s ease;
}

.bp-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.bp-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.bp-mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    overflow-y: auto;
}

.bp-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 900px) {
    .bp-mobile {
        display: none !important;
    }
}

.bp-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bp-mobile-nav li {
    list-style: none;
}

.bp-mobile-nav a,
.bp-mobile-nav li a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.bp-mobile-nav a:hover,
.bp-mobile-nav li a:hover {
    background: #f5f5f5;
}

.bp-mobile-nav .current-menu-item>a,
.bp-mobile-nav a.active {
    color: #dc2626;
    background: #fef2f2;
}

.bp-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 16px;
    background: #22c55e;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.bp-mobile-cta:hover {
    background: #16a34a;
}

.bp-mobile-cta svg {
    fill: currentColor;
}

/* ==========================================================================
   BODY PADDING
   ========================================================================== */
body {
    padding-top: 72px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 599px) {
    .bp-header-inner {
        height: 64px;
        padding: 0 16px;
    }

    .bp-logo img {
        height: 32px;
    }

    .bp-logo-text {
        font-size: 20px;
    }

    .bp-mobile {
        top: 64px;
    }

    body {
        padding-top: 64px;
    }
}