/* Apply background image to the entire page */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('rab.jpg'); /* Your background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background for contrast */
    padding: 20px 50px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    color: #1e90ff; /* Change link color on hover */
}

/* Hero Section with background image */
#hero {
    background-image: url('hero-image.jpg'); /* Your hero section image */
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-btn {
    background-color: #1e90ff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: #00bcd4;
}

/* Section Styling */
.section {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Tokenomics Section */
.token-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.token-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Team Section */
.team-members {
    display: flex;
    justify-content: space-between;
}

.team-member {
    text-align: center;
    flex-basis: 30%;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
}

a {
    color: #00aaff;
    text-decoration: none;
}

a:hover {
    color: #1e90ff;
}
