/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

/* Hero Section */
.hero {
    background-image: url('rock.jpg'); /* Replace with your background image file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 20px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

button.cta {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #1a1a1a;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

button.cta:hover {
    background-color: #ffcc00;
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 40px 20px;
    background-image: url('features-bg.jpg'); /* Replace with your background image file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    color: #fff;
}

.feature-card h3 {
    color: #ffcc00;
    margin-bottom: 10px;
}

/* Roadmap Section */
.roadmap {
    padding: 40px 20px;
    background-image: url('roadmap-bg.jpg'); /* Replace with your background image file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.roadmap h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.roadmap-item {
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 8px;
}

/* Community Section */
.community {
    padding: 40px 20px;
    background-image: url('community-bg.jpg'); /* Replace with your background image file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.community h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.social-links a {
    color: #ffcc00;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #111;
    font-size: 0.9rem;
}
