/* General Styling */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Text Color */
.text-purple {
    color: #8a2be2;
}

/* Navbar Styling */
.navbar {
    background-color: #1e1e1e;
}

.nav-link {
    color: #e0e0e0 !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #8a2be2 !important;
}

/* Hero Section (Home Page) */
.hero-section {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    background-image: url('/assets/img/hero.png'); /* Add your hero image path here */
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 24px;
}

/* Button Styling */
.btn-purple {
    background-color: #8a2be2;
    border: none;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-purple:hover {
    background-color: #7321b4;
    transform: scale(1.05);
}

/* Feature Boxes (Home Page) */
.feature-box {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

/* Join Boxes (Join Page) */
.join-box {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.join-box h3 {
    margin-bottom: 15px;
}

.join-box p {
    margin: 10px 0;
}

.join-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Styling */
footer {
    background-color: #1e1e1e;
    border-top: 2px solid #8a2be2;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.rules-box {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 20px;
}

.rules-box h3 {
    margin-bottom: 15px;
}

.rules-box ul {
    list-style-type: disc;
    padding-left: 20px;
}

.rules-box ul li {
    margin-bottom: 10px;
}

.rules-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.role-section {
    margin-top: 1rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(30, 30, 30, 0.8) !important;
    transition: background-color 0.3s ease;
}

.navbar-brand img {
    margin-right: 10px;
}

.nav-link {
    color: #e0e0e0 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8a2be2 !important;
}

/* Add some padding to the body to prevent content from hiding behind the fixed navbar */
body {
    padding-top: 56px;
}

/* For larger screens, increase the padding to account for the larger navbar height */
@media (min-width: 992px) {
    body {
        padding-top: 76px;
    }
}