/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body Styling */
body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/rowdyBoys.png'); /* Ensure this file is inside `public/` */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Content Wrapper */
.content-box {
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent box */
    padding: 30px;
    border-radius: 12px;
    max-width: 80%;
    text-align: center;
    color: white; /* Ensures high contrast */
    font-size: 1.5rem;
    font-weight: 500;
    backdrop-filter: blur(10px); /* Blurred effect for a modern look */
    margin: 20px auto;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .content-box {
        width: 90%;
        font-size: 1.2rem;
        padding: 20px;
    }
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1100;
}

/* Navbar Logo */
.navbar .logo a {
    text-decoration: none;
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
}

/* Menu Toggle Button */
.menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1200;
    transition: color 0.3s ease-in-out;
}

/* Slide-Out Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Start hidden */
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: right 0.3s ease-in-out;
    display: flex;
    padding-top: 20px;
    z-index: 1200;
}

/* Slide-In Effect */
.nav-menu.active {
    right: 0;
}

/* Close Button Inside Menu */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Style Menu Links */
.nav-links {
    list-style: none;
    padding-top: 50px;
}

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

.nav-links li a {
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s;
}

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

/* Overlay Effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 1150;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}
