/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000000; 
    background-color: #ffffff;
    text-align: center; /* Center align all text */
}

h1, h2, h3, p {
    text-align: center; /* Ensure all headers and paragraphs are centered */
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* Navigation Styles */
header {
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    text-align: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li {
    margin: 10px 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.nav-links a:hover {
    color: #e84393;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger i {
    color: #ffffff;
    font-size: 24px;
}

/* Hero Section */
.hero-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    padding: 0 20px;
}

.hero-logo {
    display: block;
    max-width: 80%;
    margin: 0 auto 20px auto;
}

@media (min-width: 768px) {
    .hero-logo {
        max-width: 60%;
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        max-width: 40%;
    }
}

.hero-content h1 {
    font-size: 24px;
    word-break: break-all;
}

/* Governance Section */
.governance-section {
    padding: 100px 0;
    background-color: #000000; 
}

.governance-section h2,
.governance-section p {
    color: #ffffff;
    font-weight: 700;
}

.governance-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.governance-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: #000000;
}

.tokenomics-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.tokenomics-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    word-break: break-all;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: #000000;
    color: #ffffff;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.about-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features Section (Mort and Mila) */
.features-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: #000000;
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: flex;
    justify-content: center; /* Center items */
    flex-wrap: wrap;
    gap: 20px; /* Add gap to bring images closer together */
}

.feature-item {
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .feature-item {
        width: 30%;
    }
}

.feature-image {
    max-height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.features-story {
    margin-top: 40px;
}

.features-story p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #000000;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-links a {
        text-align: center;
        display: block;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .features-grid {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        width: 100%;
        margin-bottom: 40px;
    }
}
