/* Hero Section with Gradient */
#hero.radio-hero {
    height: 60vh;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    
    /* Background Image setup */
    background-image: url('img/church.jpg'); /* Retained background image */
    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 (Slightly different gradient for a fresh look) */
#hero.radio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Gradient Color: Focused on blue/teal for a broadcast/tech feel */
    background: linear-gradient(135deg, 
        rgba(0, 80, 150, 0.85) 0%, /* Darker Blue */
        rgba(0, 120, 180, 0.85) 40%, 
        rgba(0, 160, 160, 0.85) 100% /* Teal */
    );
    z-index: 5;
}

.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; /* Accent 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;
}

/* Radio Page Main */
.radio-page {
    padding-top: 0;
    min-height: 100vh;
}

/* --- Broadcast Times Section (NEW) --- */
.broadcast-times-section {
    padding: 80px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.broadcast-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.broadcast-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.broadcast-container .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.stations-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.station-card {
    background: #e3f2fd; /* Light blue background */
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 350px;
    border: 2px solid #00a0a0;
}

.station-card i {
    font-size: 48px;
    color: #0066b8; /* Blue color */
    margin-bottom: 15px;
}

.station-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.station-card .day-time {
    font-size: 18px;
    font-weight: 500;
    color: #008080;
    margin: 5px 0;
}

.call-to-action {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-top: 30px;
}

/* --- Introduction Section (Renamed/Modified) --- */
.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 (Icons changed for focus) */
.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: #f39c12; /* Accent color for ministry needs */
    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 (Retained styling) --- */
.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;
}

/* 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;
}

/* --- Verse Section (Retained styling, different verse) --- */
.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;
}


/* --- Mobile Responsive Updates --- */
@media (max-width: 768px) {
    .stations-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .station-card {
        padding: 25px 30px;
        max-width: 100%;
    }

    .broadcast-container h2 {
        font-size: 32px;
    }

    /* Keep existing mobile styles for other sections */
    #hero.radio-hero {
        height: 50vh;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .station-card h3 {
        font-size: 22px;
    }

    .station-card .day-time {
        font-size: 16px;
    }
}

/* Animations (Retained) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}