/* General Body and Typography */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7fcf9;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #1a4f0b;
    margin-bottom: 0.5em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

a {
    color: #3a6b35;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #3a6b35;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #e0f2f1;
    display: flex; /* Added for image alignment */
    align-items: center; /* Added for image alignment */
}

.logo-img { /* New style for the logo image */
    height: 30px; /* Adjust as needed */
    width: 30px; /* Adjust as needed */
    margin-right: 10px; /* Space between logo and text */
    border-radius: 5px; /* Optional: adds a slight roundness to the image */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #c8e6c9;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(58, 107, 53, 0.7), rgba(26, 79, 11, 0.7)), url('https://source.unsplash.com/random/1600x900/?forest,nature') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: white;
}

.hero p {
    font-size: large;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #e0f2f1;
}

.btn {
    display: inline-block;
    background-color: #81c784;
    color: #1a4f0b;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: #66bb6a;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Section Styling */
section {
    padding: 6rem 0;
}

section:nth-of-type(even) {
    background-color: #e8f5e9;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a4f0b;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #81c784;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* About Section */
.about-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    text-align: justify;
    font-size: 1.1rem;
    color: #4a4a4a;
}

/* Roadmap Section */
.roadmap-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.roadmap-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.roadmap-item h3 {
    color: #3a6b35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.roadmap-item ul {
    list-style: none;
    padding: 0;
}

.roadmap-item ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.roadmap-item ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #66bb6a;
    font-weight: bold;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: center;
    margin-top: 3rem;
}

.tokenomics-item {
    background-color: #c8e6c9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.tokenomics-item h3 {
    color: #1a4f0b;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.tokenomics-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3a6b35;
}

.tokenomics-note {
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
    color: #555;
}

/* Social Section */
.social-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-links {
    text-align: center;
    margin-top: 2rem;
}

.social-icon {
    display: inline-block;
    background-color: #81c784;
    color: #1a4f0b;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.social-icon:hover {
    background-color: #66bb6a;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #1a4f0b;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        justify-content: center;
    }

    nav ul li {
        margin: 0.5rem 0.8rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .about-section p, .tokenomics-note, .social-section p {
        font-size: 1rem;
    }

    .roadmap-item, .tokenomics-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 25px;
        width: 25px;
        margin-right: 8px;
    }

    nav ul li {
        margin: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 6rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn, .social-icon {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-icon {
        margin: 0.5rem 0;
        width: 80%;
        max-width: 200px;
    }
}
