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

body {
    font-family: 'Aptos', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    padding: 5px;
}

.title-section h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.title-section h2 {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Navigation Styles */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.band-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Crop black bars by scaling and positioning */
    transform: scale(1.1);
    overflow: hidden;
}

.hero-text h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: #fbbf24;
    color: #1e40af;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
    background: white;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #1e40af;
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section h4 {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.content-section a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Fundraisers Section */
.fundraiser-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.support-section,
.events-section,
.media-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #3b82f6;
}

/* Volunteer Section */
.volunteer-opportunity {
    background: #f8fafc;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #10b981;
}

.volunteer-details {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

/* Calendar Section */
.calendar-content {
    text-align: center;
}

.calendar-links {
    margin-bottom: 30px;
}

.calendar-links p {
    margin-bottom: 10px;
}

.embedded-calendar {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Signup Section */
.signup-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-form {
    margin-top: 30px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.submit-button {
    width: 100%;
    background: #fbbf24;
    color: #1e40af;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

.main-footer p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-text {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h3 {
        font-size: 2rem;
    }
    
    .title-section h1 {
        font-size: 1.4rem;
    }
    
    .title-section h2 {
        font-size: 1rem;
    }
    
    .fundraiser-content {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Placeholder for missing images */
.logo {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1e40af;
    font-size: 0.8rem;
}

.logo::before {
    content: "🏴‍☠️";
    font-size: 30px;
}

.band-image {
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.band-image::before {
    content: "🎺 Band Performance 🎵";
}

/* Signup page styles */
.signup-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
}

.signup-section h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.signup-content p {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-group input {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button {
    background: #fbbf24;
    color: #1e3a8a;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Events page styles */
.events-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.events-schedule-image {
    text-align: center;
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #059669;
}

.events-schedule-image h3 {
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.schedule-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.schedule-image:hover {
    transform: scale(1.02);
}

.events-calendar {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #3b82f6;
}

.events-calendar h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.calendar-info {
    margin-bottom: 30px;
}

.calendar-links {
    margin-top: 15px;
}

.calendar-links a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

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

.embedded-calendar iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.upcoming-events h3 {
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #fbbf24;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-card h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.event-date {
    font-weight: bold;
    color: #059669;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.event-time {
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-details {
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-location {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 15px;
}

.event-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    background: #eff6ff;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.event-link:hover {
    background: #dbeafe;
    text-decoration: none;
}

.event-types h3 {
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.event-type {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.event-type:hover {
    transform: translateY(-3px);
}

.event-type h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.event-type p {
    color: #374151;
    line-height: 1.6;
}

/* Contact page styles */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3b82f6;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-card h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-email a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: #eff6ff;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

.school-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.school-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.school-details a:hover {
    text-decoration: underline;
}

.contact-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.contact-card li {
    margin-bottom: 8px;
    color: #374151;
}

.contact-map {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #059669;
}

.contact-map h3 {
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.map-address {
    text-align: center;
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #fbbf24;
}

.contact-form h3 {
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.message-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Aptos', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-card,
    .contact-map,
    .contact-form {
        padding: 30px 20px;
    }
}
