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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #e0e0e0;
    background-color: #000000;
}

/* Import Open Sans Light */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Times+New+Roman&display=swap');

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.header-content {
    animation: fadeInDown 0.8s ease-out;
}

header h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.tagline {
    font-size: 1.4em;
    opacity: 0.98;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.9;
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

/* Navigation Bar */
.navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 10px 0 0 0;
    margin: 0;
    flex-wrap: wrap;
    height: 100%;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    font-size: 1em;
    transition: color 0.3s ease, border-bottom 0.3s ease, text-shadow 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-links a:hover {
    color: #3498db;
    border-bottom-color: #3498db;
    text-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Main Content */
main {
    background: transparent;
    margin: 300px auto 40px auto;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

section {
    background: #1a2332;
    padding: 50px 40px;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

section:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', Times, serif;
}

h2 {
    color: #ffffff;
    font-size: 2.2em;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-subtitle {
    color: #5dade2;
    font-size: 1.15em;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    font-weight: 400;
    font-style: italic;
}

h3 {
    color: #ffffff;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

p {
    margin-bottom: 18px;
    text-align: left;
    line-height: 1.8;
    color: #ffffff;
}

/* About Content */
.about-content p {
    font-size: 1.05em;
    line-height: 1.9;
}

/* Role Cards */
.role-card {
    background: linear-gradient(135deg, #2a3f5f 0%, #1f2e45 100%);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    opacity: 0.9;
}

.role-card:hover {
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 12px 28px rgba(52, 152, 219, 0.4), 0 0 20px rgba(52, 152, 219, 0.2);
    border-left-color: #2980b9;
    background: linear-gradient(135deg, #3a5f7f 0%, #2a3e55 100%);
    opacity: 1;
}

.role-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
}

.role-card h3 i {
    color: #3498db;
    margin-right: 12px;
    font-size: 1.1em;
}

.role-card p {
    color: #ffffff;
}

/* Experience/Volunteer Cards */
.volunteer-card {
    background: linear-gradient(135deg, #2a3f5f 0%, #1f2e45 100%);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid #3498db;
    position: relative;
    opacity: 0.9;
}

.volunteer-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 32px rgba(52, 152, 219, 0.4), 0 0 20px rgba(52, 152, 219, 0.2);
    border-top-color: #2980b9;
    background: linear-gradient(135deg, #3a5f7f 0%, #2a3e55 100%);
    opacity: 1;
}

.organization-link {
    font-size: 1em;
    margin-bottom: 12px;
    text-align: left;
}

.organization-link a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.organization-link a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.organization-since,
.organization-location {
    font-size: 0.95em;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    font-style: italic;
}

.volunteer-card p {
    color: #ffffff;
}

.impact-highlight {
    background: rgba(52, 152, 219, 0.1);
    padding: 12px 15px;
    border-left: 3px solid #3498db;
    margin-top: 15px;
    border-radius: 4px;
    font-weight: 500;
    color: #ffffff;
}

/* Partnership Cards */
.partnership-card {
    background: linear-gradient(135deg, #2a3f5f 0%, #1f2e45 100%);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid #27ae60;
    position: relative;
    opacity: 0.9;
}

.partnership-card:hover {
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 16px 32px rgba(39, 174, 96, 0.4), 0 0 20px rgba(39, 174, 96, 0.2);
    border-left-color: #229954;
    background: linear-gradient(135deg, #3a5f7f 0%, #2a3e55 100%);
    opacity: 1;
}

.partnership-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.3em;
}

.partnership-card h3 i {
    color: #27ae60;
    margin-right: 12px;
    font-size: 1.2em;
}

.organization-mission {
    font-size: 0.95em;
    color: #b0b0b0;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    font-style: italic;
}

.partnership-highlight {
    background: rgba(39, 174, 96, 0.1);
    padding: 12px 15px;
    border-left: 3px solid #27ae60;
    margin-top: 15px;
    border-radius: 4px;
    font-weight: 500;
    color: #ffffff;
}

.partnerships-summary {
    background: rgba(52, 152, 219, 0.1);
    padding: 20px;
    border-left: 4px solid #3498db;
    border-radius: 6px;
    margin-top: 30px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #ffffff;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.impact-item {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0.9;
}

.impact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.35s ease;
    z-index: 0;
}

.impact-item:hover::before {
    left: 100%;
}

.impact-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(52, 152, 219, 0.5), 0 0 25px rgba(52, 152, 219, 0.3);
    opacity: 1;
}

.impact-item h3 {
    color: white;
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: center;
}

.impact-item p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-size: 0.95em;
    text-align: center;
}

.impact-statement {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    font-size: 1.05em;
    color: white;
}

/* Services List */
.services-list {
    margin-left: 30px;
    margin-bottom: 20px;
}

.services-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1em;
    transition: all 0.3s ease;
    padding-left: 10px;
    position: relative;
}

.services-list li:hover {
    padding-left: 15px;
    color: #2980b9;
    text-shadow: 0 1px 2px rgba(52, 152, 219, 0.1);
}

/* CTA Buttons */
.cta-button-container {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.05em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.cta-button-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.cta-button-secondary {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.cta-button-secondary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

/* Program Highlight */
h4.program-highlight {
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #3498db;
    padding-left: 15px;
    letter-spacing: 0.3px;
}

.partnership-list,
.program-offerings {
    margin-left: 30px;
    margin-bottom: 15px;
}

.partnership-list li,
.program-offerings li {
    margin-bottom: 10px;
    line-height: 1.7;
    transition: all 0.3s ease;
    padding-left: 10px;
    position: relative;
}

.partnership-list li:hover,
.program-offerings li:hover {
    padding-left: 15px;
    color: #2980b9;
    text-shadow: 0 1px 2px rgba(52, 152, 219, 0.1);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2a3f5f 0%, #1f2e45 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid #3498db;
}

.contact-section h2 {
    text-align: center;
    color: #ffffff;
}

.contact-section p {
    text-align: center;
    color: #ffffff;
}

.contact-cta {
    background: rgba(52, 152, 219, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.contact-cta p {
    margin-bottom: 12px;
    text-align: center;
    color: #ffffff;
}

.contact-actions-text {
    margin: 20px 0;
    padding: 15px;
    text-align: center;
    color: #ffffff;
    font-size: 1em;
    line-height: 1.8;
    font-weight: 500;
}

.contact-info {
    background: rgba(52, 152, 219, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1em;
    line-height: 1.6;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-info a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    text-decoration: none;
}

/* Lists */
ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Partnership List Links */
.partnership-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.partnership-list a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Program Offerings Links */
.program-offerings a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.program-offerings a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Paragraph Links */
p a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

p a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 8px 0;
    text-align: center;
}

.footer-tagline {
    font-size: 0.95em;
    opacity: 0.9;
    font-style: italic;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3em;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.social-label {
    color: #ffffff;
    font-size: 0.75em;
    font-weight: 500;
    text-align: center;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 60px 0 40px;
    }

    header h1 {
        font-size: 2.5em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .subtitle {
        font-size: 1em;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 1000;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 8px 20px;
        border-bottom: 1px solid #ecf0f1;
        width: 100%;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 0.85em;
        display: block;
        width: 100%;
        padding: 3px 0;
        line-height: 1.3;
    }

    main {
        padding: 40px 25px;
        margin: 20px auto;
    }

    h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 1.2em;
    }

    h4.program-highlight {
        font-size: 1.1em;
    }

    .role-card,
    .volunteer-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 1em;
        min-width: 180px;
    }

    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .impact-item {
        padding: 20px;
    }

    .impact-item h3 {
        font-size: 1.8em;
    }

    .services-list li {
        font-size: 0.95em;
    }

    .footer-social {
        gap: 25px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1em;
    }

    .social-label {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    header {
        padding: 50px 0 30px;
    }

    header h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }

    .subtitle {
        font-size: 0.9em;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 1000;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 8px 20px;
        border-bottom: 1px solid #ecf0f1;
        width: 100%;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 0.8em;
        display: block;
        width: 100%;
        padding: 3px 0;
        line-height: 1.3;
    }

    main {
        padding: 20px;
        margin: 15px;
        border-radius: 8px;
    }

    h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    h3 {
        font-size: 1.1em;
    }

    h4.program-highlight {
        font-size: 1em;
        margin-top: 15px;
    }

    .role-card,
    .volunteer-card {
        padding: 18px;
        margin-bottom: 15px;
    }

    .cta-button-container {
        margin-top: 20px;
        flex-direction: column;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95em;
        min-width: 100%;
        width: 100%;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .impact-item {
        padding: 18px;
    }

    .impact-item h3 {
        font-size: 1.6em;
    }

    .contact-cta {
        padding: 20px;
    }

    p {
        font-size: 0.95em;
    }

    ul {
        margin-left: 20px;
    }

    li {
        margin-bottom: 10px;
    }

    .partnership-list,
    .program-offerings {
        margin-left: 20px;
    }

    .footer-social {
        gap: 20px;
        margin-top: 15px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }

    .social-label {
        font-size: 0.65em;
    }
}
