/* Scholarships & Donations Page Styles */

:root {
    --light-blue: #7EADED;
    --dark-blue: #4A90E2;
    --gradient-bg: linear-gradient(135deg, rgba(126, 173, 237, 0.1), rgba(74, 144, 226, 0.1));
    --hero-gradient: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

/* General Styles */
.scholarships-page {
    font-family: 'Lexend Peta', sans-serif;
    background: #000;
    color: #fff;
}

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

/* Hero Section */
.scholarships-hero {
    background: var(--hero-gradient), url('/wp-content/uploads/2025/09/DSC03480_40-scaled.jpg') center/cover;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scholarships-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 1;
    z-index: 0;
}

.scholarships-hero .container {
    position: relative;
    z-index: 1;
}

.scholarships-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.scholarships-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease-out;
}

/* Hero Impact Stats */
.hero-impact-stats {
    margin: 50px 0 40px;
    animation: fadeInUp 1.1s ease-out;
}

.hero-impact-stats h2 {
    color: var(--light-blue);
    margin-bottom: 30px;
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.hero-stat-card {
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(126, 173, 237, 0.15);
    backdrop-filter: blur(10px);
}

.hero-stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--light-blue);
    background: rgba(255, 255, 255, 0.12);
}

.hero-stat-card:nth-child(even):hover {
    border-color: var(--dark-blue);
}

.hero-stat-number {
    font-size: 1.8rem;
    color: var(--light-blue);
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stat-card:nth-child(even) .hero-stat-number {
    color: var(--dark-blue);
}

.hero-stat-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-donate-container {
    margin-top: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-donate-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FA8072, #7EADED);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(126, 173, 237, 0.3);
}

.hero-donate-button:hover {
    background: linear-gradient(135deg, #7EADED, #FA8072);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(126, 173, 237, 0.4);
}

/* Impact Stats - Removed as moved to hero */

/* Allocation Options */
.allocation-options {
    padding: 80px 0;
    background: transparent;
}

.allocation-options h2 {
    text-align: center;
    color: var(--light-blue);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.option-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(126, 173, 237, 0.15);
    backdrop-filter: blur(10px);
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
}

.option-card h3 {
    color: var(--light-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.option-card p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.option-note {
    font-size: 0.9rem;
    color: var(--light-blue);
    font-style: italic;
    padding-top: 10px;
    border-top: 1px solid rgba(126, 173, 237, 0.1);
}

.allocation-note {
    text-align: center;
    color: var(--light-blue);
    font-style: italic;
    margin-top: 30px;
}

/* Donation Process */
.donation-process {
    padding: 80px 0;
    background: var(--hero-gradient);
    color: white;
    text-align: center;
}

.donation-content {
    max-width: 800px;
    margin: 0 auto;
}

.donation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.email-instructions {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.email-instructions p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: white;
}

.email-template {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.template-item {
    margin-bottom: 20px;
}

.template-item:last-child {
    margin-bottom: 0;
}

.template-item .label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.template-item .value {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 1rem;
}

.template-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.template-item li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: white;
}

.template-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: white;
}

.response-note {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.donation-email {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.donation-email:hover {
    color: var(--light-blue);
    text-decoration: none;
}

/* Fundraising Goal Section */
.fundraising-goal {
    padding: 80px 0;
    background: var(--gradient-bg);
    text-align: center;
}

.fundraising-goal h2 {
    color: var(--light-blue);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.goal-message {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.goal-progress {
    max-width: 600px;
    margin: 0 auto 40px;
}

.goal-text {
    color: var(--light-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    height: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.progress-bar {
    background: linear-gradient(90deg, var(--light-blue), var(--dark-blue));
    height: 100%;
    width: 40%;
    border-radius: 25px;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.impact-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #FA8072, #7EADED);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.impact-button:hover {
    background: linear-gradient(135deg, #7EADED, #FA8072);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(126, 173, 237, 0.3);
}

/* Given Back Section */
.given-back {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.given-back h2 {
    color: var(--light-blue);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.given-back-amount {
    font-size: 4rem;
    color: var(--light-blue);
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.given-back-description {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Where Your Support Makes a Difference */
.support-impact {
    padding: 80px 0;
    background: transparent;
}

.support-impact h2 {
    text-align: center;
    color: var(--light-blue);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.impact-option-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(126, 173, 237, 0.15);
    backdrop-filter: blur(10px);
}

.impact-option-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
    box-shadow: 0 10px 30px rgba(126, 173, 237, 0.2);
}

.impact-option-card h3 {
    color: var(--light-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.impact-option-card p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

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

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .scholarships-hero {
        background-attachment: scroll;
        padding: 60px 0 80px;
    }
    
    .scholarships-hero h1 {
        font-size: 2.5rem;
    }

    .scholarships-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-impact-stats h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

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

    .hero-stat-card {
        padding: 15px 10px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-card p {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .allocation-options h2,
    .donation-content h2,
    .fundraising-goal h2,
    .given-back h2,
    .impact-stats h2,
    .support-impact h2 {
        font-size: 2rem;
    }

    .goal-text {
        font-size: 1.4rem;
    }

    .given-back-amount {
        font-size: 3rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .email-instructions {
        padding: 20px;
    }

    .email-template {
        padding: 20px;
    }

    .template-item .value {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .scholarships-hero {
        padding: 50px 0 70px;
    }

    .scholarships-hero h1 {
        font-size: 2rem;
    }

    .hero-impact-stats h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }

    .hero-stat-card {
        padding: 12px 8px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-card p {
        font-size: 0.75rem;
    }

    .stat-card,
    .option-card,
    .impact-option-card {
        padding: 20px;
    }

    .given-back-amount {
        font-size: 2.5rem;
    }

    .goal-text {
        font-size: 1.2rem;
    }

    .email-instructions {
        padding: 15px;
    }

    .email-template {
        padding: 15px;
    }

    .template-item .label {
        font-size: 0.9rem;
    }

    .template-item .value {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}
