/* BP Sports Management - Ultimate Supreme Bling Bling Styling */

/* Global Styles - Neon Cyber Glow with Background */
body {
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    text-align: center;
    animation: backgroundGlow 10s infinite alternate ease-in-out;
    position: relative;
    padding-top: 2px; /* Increased padding to push content below navbar */
}

/* Faded Background Overlay for Maximum Visual Balance */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Reduced opacity for clarity */
    z-index: -1;
}

@keyframes backgroundGlow {
    0% { filter: brightness(110%); }
    100% { filter: brightness(130%); }
}

/* Supreme Logo Animation - Centered */
.logo {
    width: 180px;
    height: auto;
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
    filter: drop-shadow(0 0 20px #ff00ff);
    animation: logoGlow 3s infinite alternate;
    display: block;
    margin: 20px auto;
}

.logo:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 40px #ff33ff);
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px #ff00ff); }
    100% { filter: drop-shadow(0 0 50px #ff33ff); }
}

/* ✅ Supreme Glowing Navigation Bar - Fixed at Top */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center navigation buttons */
    width: 100%;
    top: 0;
    left: 0;
    position: fixed; /* Ensures navbar stays at the top */
    z-index: 1000;
    box-shadow: 0 0 40px #ff00ff;
    border-bottom: 3px solid rgba(255, 0, 255, 0.7);
}

/* ✅ Supreme Glowing Sparkle Animation */
@keyframes navbarGlow {
    0% { box-shadow: 0 0 30px #ff00ff, 0 0 50px #ff33ff; }
    50% { box-shadow: 0 0 50px #ff00ff, 0 0 80px #ff6600; }
    100% { box-shadow: 0 0 30px #ff00ff, 0 0 50px #ff33ff; }
}

/* ✅ Navigation Links Container - Centered */
.nav-links {
    display: flex;
    justify-content: center; /* Center the menu items */
    align-items: center;
    gap: 30px; /* Even spacing between buttons */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ✅ Navbar Links - Maximum Glow & Supreme Hover Effects */
.nav-links li a {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff6600;
    transition: all 0.4s ease-in-out;
    position: relative;
    padding: 10px 15px;
}

/* ✅ Hover Effects */
.nav-links li a:hover {
    color: #ff00ff;
    text-shadow: 0 0 20px #ff33ff, 0 0 40px #ff6600;
    transform: scale(1.1);
}

/* ✅ Mobile Responsive Navigation */
@media screen and (max-width: 900px) {
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Hide menu by default */
        position: absolute;
        top: 70px;
        left: 0;
        background: rgba(0, 0, 0, 0.95);
        box-shadow: 0 0 40px #ff00ff;
        animation: fadeIn 0.3s ease-in-out;
    }

    .nav-links li {
        padding: 15px 0;
    }

    .nav-active {
        display: flex;
    }
}

/* ✅ Add Padding to Push Content Below Navbar */
body {
    padding-top: 200px; /* Ensures content is not covered by the navbar */
}



/* Sections - High-Energy Centered Animations */
.section {
    padding: 100px 20px;
    opacity: 1;
    transform: none;
    transition: none;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0 0 20px #ff00ff;
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px #ff00ff; }
    100% { text-shadow: 0 0 40px #ff33ff; }
}

/* Buttons - Maximum Glow Effect */
.btn-glow {
    padding: 15px 35px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff00ff, #ff6600);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 30px #ff00ff;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-glow:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px #ff33ff;
}

/* Footer - Supreme Neon Vibes - Centered */
.footer {
    background: linear-gradient(45deg, #ff00ff, #302b63);
    padding: 35px;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 0 30px #ff00ff;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Social Media Icons - Fully Centered & Animated */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff00ff, #ff6600);
    box-shadow: 0 0 30px #ff00ff;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease-in-out;
    animation: glowPulse 3s infinite alternate;
}

.social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 0 60px #ff33ff;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 30px #ff00ff; }
    100% { box-shadow: 0 0 60px #ff33ff; }
}
/* Contact Form - Traditional Look with Neon Glow */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 20px #ff00ff;
    text-align: left;
}

.contact-form label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff33ff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 0 10px #ff00ff;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px #ff33ff;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff00ff, #ff6600);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 30px #ff00ff;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.contact-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px #ff33ff;
}
/* Glowing White Text for Contact Details */
.email-glow, .phone-glow {
    color: #ffffff; 
    text-shadow: 0 0 15px #ffffff; 
    font-weight: bold;
    transition: text-shadow 0.3s ease-in-out;
}

.email-glow:hover, .phone-glow:hover {
    text-shadow: 0 0 30px #ffffff;
}
/* Glowing Box Styling */
.box-glow {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0 0 20px #ffffff;
    transition: all 0.3s ease-in-out;
    max-width: 900px;
}

.box-glow:hover {
    box-shadow: 0 0 40px #ffffff;
}

/* Color-Shifting Effect */
.color-shift {
    animation: colorShift 5s infinite alternate;
}

@keyframes colorShift {
    0% { box-shadow: 0 0 20px #ff0000; }
    50% { box-shadow: 0 0 30px #00ff00; }
    100% { box-shadow: 0 0 40px #0000ff; }
}

/* Glowing Cards */
.glow-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ffffff;
    transition: all 0.3s ease-in-out;
}

.glow-card:hover {
    box-shadow: 0 0 40px #ffffff;
}
/* Glowing Box Styling */
.box-glow {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0 0 20px #ffffff;
    transition: all 0.3s ease-in-out;
    max-width: 900px;
}

.box-glow:hover {
    box-shadow: 0 0 40px #ffffff;
}

/* Color-Shifting Effect */
.color-shift {
    animation: colorShift 5s infinite alternate;
}

@keyframes colorShift {
    0% { box-shadow: 0 0 20px #ff0000; }
    50% { box-shadow: 0 0 30px #00ff00; }
    100% { box-shadow: 0 0 40px #0000ff; }
}

/* Glowing Cards */
.glow-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ffffff;
    transition: all 0.3s ease-in-out;
}

.glow-card:hover {
    box-shadow: 0 0 40px #ffffff;
}
/* Glowing Box Styling */
.box-glow {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0 0 20px #ffffff;
    transition: all 0.3s ease-in-out;
    max-width: 900px;
}

.box-glow:hover {
    box-shadow: 0 0 40px #ffffff;
}

/* Color-Shifting Effect */
.color-shift {
    animation: colorShift 5s infinite alternate;
}

@keyframes colorShift {
    0% { box-shadow: 0 0 20px #ff0000; }
    50% { box-shadow: 0 0 30px #00ff00; }
    100% { box-shadow: 0 0 40px #0000ff; }
}

/* Glowing Cards */
.glow-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ffffff;
    transition: all 0.3s ease-in-out;
}

.glow-card:hover {
    box-shadow: 0 0 40px #ffffff;
}
/* Glowing Box Styling */
.box-glow {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0 0 20px #ffffff;
    transition: all 0.3s ease-in-out;
    max-width: 900px;
}

.box-glow:hover {
    box-shadow: 0 0 40px #ffffff;
}

/* Color-Shifting Effect */
.color-shift {
    animation: colorShift 5s infinite alternate;
}

@keyframes colorShift {
    0% { box-shadow: 0 0 20px #ff0000; }
    50% { box-shadow: 0 0 30px #00ff00; }
    100% { box-shadow: 0 0 40px #0000ff; }
}

/* Glowing Cards */
.glow-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ffffff;
    transition: all 0.3s ease-in-out;
}

.glow-card:hover {
    box-shadow: 0 0 40px #ffffff;
}
/* Glowing Box Styling */
.box-glow {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0 0 20px #ffffff;
    transition: all 0.3s ease-in-out;
    max-width: 900px;
}

.box-glow:hover {
    box-shadow: 0 0 40px #ffffff;
}

/* Color-Shifting Effect */
.color-shift {
    animation: colorShift 5s infinite alternate;
}

@keyframes colorShift {
    0% { box-shadow: 0 0 20px #ff0000; }
    50% { box-shadow: 0 0 30px #00ff00; }
    100% { box-shadow: 0 0 40px #0000ff; }
}

/* Glowing Cards */
.glow-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ffffff;
    transition: all 0.3s ease-in-out;
}

.glow-card:hover {
    box-shadow: 0 0 40px #ffffff;
}

/* Glowing White Text */
.white-glow {
    color: #ffffff;
    text-shadow: 0 0 15px #ffffff;
}

.white-glow a {
    color: #ffffff;
    text-shadow: 0 0 15px #ffffff;
    text-decoration: none;
}

.white-glow a:hover {
    text-shadow: 0 0 25px #ffffff;
}
/* Floating Balls in Navbar */
.floating-balls {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
}

.ball {
    width: 30px;
    height: 30px;
    opacity: 0.8;
    position: absolute;
    animation: moveBalls 8s infinite linear alternate;
}

/* Football Movement */
.football {
    animation-delay: 0s;
}

/* Basketball Movement */
.basketball {
    animation-delay: 2s;
}

/* Baseball Movement */
.baseball {
    animation-delay: 4s;
}

/* Keyframes for Smooth Left-to-Right Floating */
@keyframes moveBalls {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(100vw);
    }
}
/* ✅ Mobile Menu Toggle (Hidden by Default) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 35px;
    height: 5px;
    background: #fff;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px #ff00ff;
}

/* ✅ Hide Navigation Links on Mobile */
@media screen and (max-width: 900px) {
    .nav-links {
        display: none; /* Hide on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        box-shadow: 0 0 40px #ff00ff;
        animation: fadeIn 0.3s ease-in-out;
    }

    .nav-links li {
        padding: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-active {
        display: flex;
    }
}

/* ✅ Fade-In Animation for Dropdown */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Navbar Container */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 40px #ff00ff;
    border-bottom: 3px solid rgba(255, 0, 255, 0.6);
    animation: navbarGlow 3s infinite alternate;
    padding: 15px 20px;
}

/* Inner container for flex layout */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 0 15px #ff00ff);
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 4px;
    width: 25px;
    margin: 3px;
    background: #fff;
    box-shadow: 0 0 10px #ff00ff;
}

/* Nav Links */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        margin-top: 15px;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-top: 2px solid #ff00ff;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .logo {
        width: 110px;
    }
}
