/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section */
.hero {
    background: url('https://wallpaperaccess.com/full/2915377.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.cta-button {
    background-color: #00BFFF;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #009ACD;
}

.discord-button {
    background-color: #7289DA;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background-color: #5A6EAB;
}

.discord-button i {
    margin-right: 8px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00BFFF;
}

/* Adjust hero section to avoid overlap */
.hero {
    margin-top: 60px;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background-color: #F5F5F5;
    text-align: center;
}

.feature {
    max-width: 300px;
}

.feature i {
    font-size: 2.5rem;
    color: #00BFFF;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-button, .discord-button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        margin-bottom: 30px;
    }
}