/* ========================================
   Tzuzoo Rescue - Adoption Donation Page Styles
   ======================================== */

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

.header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.back-nav {
    text-align: left;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s;
}

.back-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateX(-3px);
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    margin-bottom: 40px;
}

.intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-green);
    text-align: center;
}

.intro h2 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.donation-table-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow-light);
    overflow: hidden;
    margin: 40px 0;
    border: 3px solid var(--primary-green);
}

.table-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.table-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.table-header p {
    font-size: 1rem;
    opacity: 0.95;
}

.donation-table {
    width: 100%;
    border-collapse: collapse;
}

.donation-table th,
.donation-table td {
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.donation-table th {
    background: var(--primary-purple);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donation-table tbody tr {
    transition: all 0.3s ease;
}

.donation-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.donation-table tbody tr:hover {
    background: #e8f5e8;
    transform: scale(1.02);
}

.donation-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.donation-table td:last-child {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--primary-green);
}

.price-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.price-note p {
    color: #856404;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.info-section {
    background: #e8f5e8;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid var(--primary-green);
}

.info-section h3 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

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

.services-covered {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.services-covered h4 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.service-item i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 1.2rem;
    width: 25px;
}

.forever-foster {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.forever-foster h4 {
    color: #1565c0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.forever-foster p {
    color: #1565c0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
    background: #f0f0f0;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .content {
        padding: 20px;
    }

    .donation-table th,
    .donation-table td {
        padding: 15px 10px;
        font-size: 1rem;
    }

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

    .btn-group {
        flex-direction: column;
        align-items: center;
    }
}
