* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    flex-wrap: wrap;
    gap: 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    margin-top: 0;
    min-width: 150px;
    list-style: none;
    z-index: 1000;
}

/* Create invisible bridge to prevent gap */
.nav-menu .dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}

.nav-menu .dropdown:hover .dropdown-menu,
.nav-menu .dropdown.active .dropdown-menu {
    display: block;
}

/* Keep dropdown open when hovering over it */
.nav-menu .dropdown-menu:hover {
    display: block;
}

/* Add padding to parent link to create hover area */
.nav-menu .dropdown > a {
    padding: 0.5rem 0;
    position: relative;
    padding-right: 1rem;
}

/* Add dropdown arrow indicator */
.nav-menu .dropdown > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-menu .dropdown:hover > a::after,
.nav-menu .dropdown.active > a::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.nav-menu a.donate-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-menu a.donate-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: absolute;
    right: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Page Header (for separate pages) */
.page-header {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
    z-index: 0;
}

/* Next Concert Section */
.next-concert {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

.next-concert h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.concert-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.concert-item {
    text-align: center;
}

.concert-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.concert-detail {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Announcement Banner */
.announcement {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
}

.announcement .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement p {
    font-size: 1.1rem;
    font-weight: 500;
}

.learn-more-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.learn-more-link:hover {
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.crisis-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 5px;
}

.crisis-notice h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.crisis-notice p {
    margin-bottom: 0;
    color: var(--text-color);
}

/* Team Member Section */
.team-member {
    text-align: center;
    margin: 2rem 0 3rem;
}

.team-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.team-photo.small-photo {
    width: 180px;
    height: 180px;
}

.team-role {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.center {
    text-align: center;
}

/* Statistics Section */
.statistics {
    padding: 5rem 0;
    background: var(--bg-light);
}

.statistics h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.statistics-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.statistics-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.statistics .learn-more-link {
    color: var(--secondary-color);
    display: block;
    text-align: center;
    font-size: 1.1rem;
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.program-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.program-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.program-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: var(--bg-light);
}

.events h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
    scroll-margin-top: 100px;
}

.events h2:first-of-type {
    margin-top: 0;
}

/* Upcoming Events Header - Red */
.events h2.upcoming-header {
    color: #e74c3c;
}

/* Upcoming Event Calendar Background - Red */
.event-card.upcoming-event .event-date {
    background: #e74c3c;
}

/* Past Events Header - Blue */
.events h2.past-header {
    color: var(--secondary-color);
}

.events .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.event-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    gap: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.event-date {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.date-year {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.event-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.event-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Donate Section */
.donate {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.donate h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.donate p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.social-section {
    margin-top: 2rem;
}

.social-section h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.application-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.application-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.application-form-wrapper .contact-form {
    display: flex;
    flex-direction: column;
}

.application-form-wrapper .contact-form button[type="submit"] {
    align-self: center;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}

/* Ensure button inherits all cta-button styles */
button.cta-button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        justify-content: space-between;
        gap: 0;
    }

    .logo {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .dropdown-menu {
        position: static;
        transform: none;
        display: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 5px;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .announcement .container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .next-concert h2 {
        font-size: 2rem;
    }

    .concert-info {
        gap: 1.5rem;
    }

    .team-photo {
        width: 200px;
        height: 200px;
    }

    .team-photo.small-photo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about h2,
    .statistics h2,
    .section-header h2,
    .events h2,
    .donate h2,
    .contact-info h2,
    .contact-form-wrapper h2,
    .next-concert h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

