/* Donation Page Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--main-green) 0%, var(--accent-brown) 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/Camp.jpg) center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* Donation Info Section */
.donation-info {
    padding: 4rem 0;
    background: var(--offwhite);
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.donation-content h2 {
    font-size: 2.8rem;
    color: var(--main-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    position: relative;
}

.donation-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
    border-radius: 2px;
}

.donation-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Impact Highlights */
.impact-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(56, 102, 65, 0.15);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--main-green);
    margin-bottom: 1rem;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--main-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Bank Details */
.bank-details h3 {
    font-size: 2rem;
    color: var(--main-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.bank-card {
    background: linear-gradient(135deg, white 0%, #f8fcf8 100%);
    border: 2px solid rgba(56, 102, 65, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(56, 102, 65, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
    border-radius: var(--radius) var(--radius) 0 0;
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(56, 102, 65, 0.1);
}

.bank-header i {
    font-size: 2rem;
    color: var(--main-green);
}

.bank-header h4 {
    font-size: 1.5rem;
    color: var(--main-green);
    font-weight: 600;
    margin: 0;
}

.bank-info {
    display: grid;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(56, 102, 65, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: var(--main-green);
    font-size: 0.95rem;
    min-width: 120px;
    flex-shrink: 0;
}

.value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
}

.copy-text {
    background: var(--main-green);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.copy-text:hover {
    background: var(--accent-brown);
    transform: scale(1.05);
}

.copy-text i {
    font-size: 0.8rem;
}

/* Tax Benefit */
.tax-benefit {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 1px solid rgba(56, 102, 65, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tax-benefit i {
    font-size: 2rem;
    color: var(--main-green);
    flex-shrink: 0;
}

.tax-benefit h4 {
    font-size: 1.2rem;
    color: var(--main-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tax-benefit p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Donation Impact Section */
.donation-impact {
    padding: 4rem 0;
    background: white;
}

.donation-impact h2 {
    font-size: 2.8rem;
    color: var(--main-green);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.donation-impact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
    border-radius: 2px;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.impact-card {
    background: linear-gradient(135deg, white 0%, #f8fcf8 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(56, 102, 65, 0.08);
    border: 1px solid rgba(56, 102, 65, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(56, 102, 65, 0.18);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main-green) 0%, var(--accent-brown) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(56, 102, 65, 0.2);
}

.impact-icon i {
    font-size: 2rem;
    color: white;
}

.impact-card h3 {
    font-size: 1.8rem;
    color: var(--main-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.impact-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Contact Support Section */
.contact-support {
    padding: 4rem 0;
    background: var(--offwhite);
}

.support-content {
    text-align: center;
    margin-bottom: 3rem;
}

.support-content h2 {
    font-size: 2.5rem;
    color: var(--main-green);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.support-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(56, 102, 65, 0.15);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--main-green);
    margin-bottom: 1rem;
}

.contact-item h4 {
    font-size: 1.3rem;
    color: var(--main-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-item a {
    color: var(--accent-brown);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .donation-impact h2 {
        font-size: 2.5rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .donation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .donation-info {
        padding: 3rem 0;
    }

    .donation-content h2 {
        font-size: 2rem;
    }

    .donation-impact {
        padding: 3rem 0;
    }

    .donation-impact h2 {
        font-size: 2rem;
    }

    .contact-support {
        padding: 3rem 0;
    }

    .support-content h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .label {
        min-width: auto;
        font-weight: 700;
        color: var(--main-green);
        font-size: 1rem;
    }

    .value {
        text-align: left;
        margin-left: 0;
        font-size: 1.1rem;
        word-break: break-all;
    }

    .copy-text {
        align-self: flex-start;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 0.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .tagline {
        font-size: 0.95rem;
    }

    .donation-content h2 {
        font-size: 1.8rem;
    }

    .donation-impact h2 {
        font-size: 1.8rem;
    }

    .support-content h2 {
        font-size: 1.8rem;
    }

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

    .contact-options {
        grid-template-columns: 1fr;
    }

    .bank-card {
        padding: 1.5rem;
    }

    .info-row {
        padding: 0.8rem 0;
    }

    .label {
        font-size: 0.95rem;
    }

    .value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .bank-card {
        padding: 1.5rem;
    }

    .impact-card {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {

    .donation-info,
    .donation-impact,
    .contact-support {
        background: white !important;
        padding: 1rem 0;
    }

    .bank-card,
    .impact-card,
    .contact-item {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

    .bank-card,
    .impact-card,
    .contact-item {
        background: white;
        border: 2px solid var(--main-green);
    }

    .copy-text {
        background: var(--main-green);
        color: white;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .hero h1,
    .hero .tagline,
    .donation-content h2,
    .donation-content p,
    .highlight-item,
    .bank-card,
    .tax-benefit,
    .impact-card,
    .contact-item,
    .highlight-item:hover,
    .impact-card:hover,
    .contact-item:hover {
        animation: none;
        transition: none;
        transform: none;
    }
}