/* Hero Section with Gradient */
#hero.give-hero {
    height: 60vh;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    /* Removed background shorthand */
    
    /* Background Image setup */
    background-image: url('img/church.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* New: Gradient Overlay using a pseudo-element */
#hero.give-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Gradient Color */
    background: linear-gradient(135deg, 
        rgba(0, 102, 184, 0.8) 0%, /* #0066b8 with 80% opacity */
        rgba(0, 128, 200, 0.8) 25%, /* #0080c8 with 80% opacity */
        rgba(0, 160, 160, 0.8) 50%, /* #00a0a0 with 80% opacity */
        rgba(0, 184, 142, 0.8) 75%, /* #00b88e with 80% opacity */
        rgba(74, 201, 126, 0.8) 100% /* #4ac97e with 80% opacity */
    );
    z-index: 5; /* Place the overlay beneath the content but above the image */
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.hero-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    color: #f39c12; /* Updated: Love icon color */
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

/* Give Page */
.give-page {
    padding-top: 0;
    min-height: 100vh;
}

/* Introduction Section */
.give-intro-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.give-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.give-intro-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.give-intro-container > p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-card i {
    font-size: 48px;
    color: #00a0a0;
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #666;
}

/* Bank Information Section */
.bank-info-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.bank-info-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* Bank Details Card */
.bank-details-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bank-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.bank-header i {
    font-size: 36px;
    color: #00a0a0;
}

.bank-header h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
}

/* Account Details */
.account-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.copy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.copy-item:hover {
    background: #e9ecef;
    border-color: #00a0a0;
}

.copy-item.copied {
    background: #d4edda;
    border-color: #28a745;
}

.detail-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.detail-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.copy-icon-btn {
    background: #00a0a0;
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.copy-icon-btn:hover {
    background: #008080;
    transform: scale(1.05);
}

.copy-item.copied .copy-icon-btn {
    background: #28a745;
}

/* Bank Note */
.bank-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #e3f2fd;
    border-radius: 10px;
    border-left: 4px solid #0066b8;
}

.bank-note i {
    font-size: 24px;
    color: #0066b8;
    flex-shrink: 0;
}

.bank-note p {
    font-size: 15px;
    color: #2c3e50;
    margin: 0;
    text-align: left;
}

/* Give Online Section */
.give-online-section {
    padding: 80px 20px;
    background: white;
}

.give-online-container {
    max-width: 700px;
    margin: 0 auto;
}

.online-content {
    text-align: center;
}

.section-icon {
    font-size: 56px;
    color: #00a0a0;
    margin-bottom: 25px;
}

.give-online-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.give-online-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Note Box */
.note-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.note-box i {
    font-size: 24px;
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 2px;
}

.note-box p {
    font-size: 15px;
    color: #2c3e50;
    margin: 0;
    text-align: left;
}

/* Give Now Button */
.give-now-btn {
    background: linear-gradient(135deg, #00a0a0, #00b88e);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 160, 160, 0.3);
}

.give-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 160, 160, 0.4);
}

.give-now-btn i {
    font-size: 20px;
}

/* Verse Section */
.verse-section {
    background: linear-gradient(135deg, #0066b8, #00a0a0);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 200px;
}

.verse-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.verse-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 48px;
    color: white;
    opacity: 0.8;
    margin-bottom: 25px;
}

.verse-text {
    font-size: 28px;
    font-weight: 500;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.verse-reference {
    font-size: 20px;
    color: white;
    font-weight: 600;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #hero.give-hero {
        height: 50vh;
        margin-top: 70px;
    }

    .hero-icon {
        font-size: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .give-intro-container h2,
    .section-title,
    .give-online-title {
        font-size: 28px;
    }

    .give-intro-section,
    .bank-info-section,
    .give-online-section,
    .verse-section {
        padding: 60px 20px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .bank-details-card {
        padding: 25px 20px;
    }

    .bank-header {
        flex-direction: column;
        gap: 10px;
    }

    .bank-header h3 {
        font-size: 20px;
    }

    .copy-item {
        padding: 15px;
    }

    .detail-value {
        font-size: 16px;
    }

    .copy-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .verse-text {
        font-size: 20px;
    }

    .verse-reference {
        font-size: 16px;
    }

    .give-now-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .give-intro-container h2,
    .section-title,
    .give-online-title {
        font-size: 24px;
    }

    .stat-card i {
        font-size: 36px;
    }

    .stat-card h3 {
        font-size: 20px;
    }

    .detail-value {
        font-size: 14px;
        word-break: break-word;
    }

    .verse-text {
        font-size: 18px;
    }
}