/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Navigation */
nav {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid black;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: normal;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Main content */
main {
    padding: 0 20px;
}

section {
    margin-bottom: 40px;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

/* Progress bar styles */
.progress-section {
    text-align: center;
    margin-bottom: 50px;
}

.progress-container {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    border: 2px solid black;
    background-color: white;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #16a34a; /* PumpFun green */
    transition: width 0.3s ease;
    min-width: 2px; /* Ensure visibility even at low percentages */
}

.progress-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.raised {
    color: #16a34a; /* PumpFun green */
}

.goal {
    color: black;
}

.percentage {
    color: #16a34a; /* PumpFun green */
    margin-left: 10px;
}

/* About section */
.about-section {
    margin-top: 50px;
}

.about-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-content h2:first-child {
    margin-top: 0;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    main {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}
