* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d7d7d;
    text-shadow: 0 1px 3px rgba(255,127,80,0.2);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2d7d7d;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4fd1c7 0%, #81e6d9 50%, #ff7f50 100%);
    color: white;
    position: relative;
}

.welcome-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.welcome-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #ff7f50;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255,127,80,0.3);
}

.cta-button:hover {
    background: #ff6347;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255,127,80,0.5);
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

.about-image .section-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.events-image .section-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.placeholder-image {
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    color: rgba(255,255,255,0.8);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission, .why {
    margin-bottom: 2rem;
}

.mission h3, .why h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.about-image .placeholder-image {
    background: #e9ecef;
    border: 2px dashed #dee2e6;
    color: #6c757d;
}

/* Events Section */
.events-section {
    padding: 4rem 0;
}

.events-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.events-list h3, .participation h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.events-list ul, .contribution-options ul {
    list-style: none;
    padding-left: 0;
}

.events-list li, .contribution-options li {
    padding: 0.8rem 1rem;
    border-left: 4px solid #4fd1c7;
    background: rgba(79,209,199,0.08);
    margin-bottom: 0.7rem;
    border-radius: 0 15px 15px 0;
    transition: all 0.3s ease;
}

.events-list li:hover, .contribution-options li:hover {
    background: rgba(255,127,80,0.1);
    border-left-color: #ff7f50;
    padding-left: 1.5rem;
}

.contribution-options {
    margin-top: 1.5rem;
}

.contribution-options h4 {
    color: #34495e;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d7d7d 0%, #4fd1c7 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    border-top: 4px solid #ff7f50;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.email-large {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #3498db;
    margin-top: 1rem;
}

.back-to-top {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    background: #3498db;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #333;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-nav a {
    color: #333;
    text-decoration: none;
    padding: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
    background-color: #f8f9fa;
}

/* Contact Form */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

#contactForm input, #contactForm textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

#contactForm textarea {
    min-height: 120px;
    resize: vertical;
}

#contactForm button {
    background: #667eea;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#contactForm button:hover {
    background: #5a6fd8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .events-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-text h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .welcome-text h2 {
        font-size: 1.8rem;
    }
    
    .welcome-section {
        padding: 2rem 0;
    }
    
    .about-section,
    .events-section {
        padding: 3rem 0;
    }
}

/* Updated theme colors */
body {
    font-family: 'Open Sans', sans-serif;
}

.logo {
    color: #1565c0;
    text-shadow: 0 1px 2px #ffc10733;
}

.menu-toggle {
    color: #1565c0;
}

.welcome-section {
    background: linear-gradient(135deg, #1565c0 0%, #2196f3 50%, #ffc107 100%);
}

.welcome-section::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffc107" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23ffc107" opacity="0.2"/><circle cx="40" cy="80" r="1" fill="%23ffc107" opacity="0.4"/></svg>');
}

.cta-button {
    background: linear-gradient(45deg, #ffc107, #ffc10780);
    color: #1565c0;
    border: 2px solid #1565c0;
}

.cta-button:hover {
    background: linear-gradient(45deg, #1565c0, #2196f3);
    color: #ffc107;
    box-shadow: 0 8px 25px #1565c066;
    border-color: #ffc107;
}