/* 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: 1rem 0;
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-title {
    flex: 1;
    text-align: center;
}

.header-title h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Styles */
#navigation {
    background-color: #2c3e50;
    padding: 0;
    position: relative;
    z-index: 999;
}

#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;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    #navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #2c3e50;
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    #navigation.active {
        left: 0;
    }
    
    #navigation ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
    
    #navigation a {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

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

/* Hero Images Section */
.hero-images-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                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;
}

/* Hero Content Section */
.hero-content-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content-section .hero-content p {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


.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 {
    max-width: 800px;
    margin: 0 auto;
}

.store-info {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.store-info h3 {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.shirt-promo-image {
    margin: 0 auto 2rem auto;
    max-width: 600px;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shirt-promo-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.shirt-promo-image:hover img {
    transform: scale(1.02);
}

.store-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.shirt-details {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #e74c3c;
}

.shirt-details p:first-child {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.shirt-features {
    list-style: none;
    padding-left: 0;
}

.shirt-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #eee;
}

.shirt-features li:last-child {
    border-bottom: none;
}

.shirt-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.store-action {
    text-align: center;
    margin: 2.5rem 0;
}

.store-action .btn {
    font-size: 1.25rem;
    padding: 1rem 3rem;
    font-weight: 600;
}

.store-note,
.store-proceeds {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.store-note strong {
    color: #2c3e50;
}

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

.store-note a:hover {
    text-decoration: underline;
}

.store-proceeds {
    font-weight: 600;
    color: #27ae60;
    font-size: 1.1rem;
}

/* 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-title h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .hero-images-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-content-section .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-content-section {
        padding: 3rem 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;
    }
}

@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;
    }
}
