/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

#container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

/* Header Styles */
#header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Navigation Styles */
#navigation {
    background-color: #2c3e50;
    padding: 0;
}

#navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#navigation li {
    margin: 0;
}

#navigation a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

#navigation a:hover {
    background-color: #34495e;
}

/* Main Content Styles */
#main-content {
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23f8f9fa" width="1200" height="400"/><circle fill="%23e9ecef" cx="200" cy="100" r="50"/><circle fill="%23dee2e6" cx="800" cy="200" r="80"/><circle fill="%23e9ecef" cx="1000" cy="300" r="60"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

.btn.large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* Content Sections */
.content-section {
    padding: 3rem 2rem;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-section {
    background-color: #f8f9fa;
    border-top: 3px solid #e74c3c;
    border-bottom: 3px solid #e74c3c;
}

/* Story Section */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Donation Section */
.donation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.donation-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.donation-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.donation-options {
    text-align: center;
}

.donation-note {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

.donation-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Events Section */
.updates-list {
    max-width: 800px;
    margin: 0 auto;
}

.update-item {
    background-color: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e74c3c;
}

.update-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Awareness Section */
.awareness-content {
    max-width: 800px;
    margin: 0 auto;
}

.awareness-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.awareness-resources {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.awareness-resources h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.awareness-resources ul {
    list-style: none;
}

.awareness-resources li {
    margin-bottom: 0.5rem;
}

.awareness-resources a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.awareness-resources a:hover {
    text-decoration: underline;
}

/* Store Section */
.store-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.store-placeholder {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    border: 2px dashed #ccc;
    margin-top: 2rem;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Footer */
#footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .donation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #navigation ul {
        flex-direction: column;
    }
    
    #navigation a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn.large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
