/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Global Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    margin-right: 10px;
    border-radius: 50%;
}

header h1 {
    font-size: 36px;
    color: #ff69b4;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff69b4;
}

/* Hero Section */
.hero {
    background-color: #ff69b4;
    text-align: center;
    padding: 100px 20px;
    color: white;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
}

.cta-button {
    background-color: #32cd32;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #228b22;
}

/* About Section */
.about {
    text-align: center;
    padding: 50px 20px;
    background-color: #222;
}

.about h2 {
    font-size: 36px;
    color: #ff69b4;
}

.about p {
    font-size: 18px;
    color: #ccc;
}

/* Roadmap Section */
.roadmap {
    background-color: #333;
    text-align: center;
    padding: 50px 20px;
}

.roadmap h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.roadmap ul {
    list-style: none;
    font-size: 18px;
    color: #ddd;
}

.roadmap ul li {
    margin: 15px 0;
}

/* Join Section */
.join {
    text-align: center;
    padding: 50px 20px;
    background-color: #444;
}

.join h2 {
    font-size: 36px;
    color: #ff69b4;
}

.join p {
    font-size: 18px;
    color: #ccc;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }

    .roadmap ul li {
        font-size: 16px;
    }

    .join p {
        font-size: 16px;
    }
}
