* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: var(--primary-color); /* Main color */
    --primary-dark: #9e0a92; /* Darker shade of the main color */
    --secondary-color: #e74c3c; /* Secondary color */
    --accent-color: var(--primary-color); /* Accent color */
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e1e5e9;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(238, 38, 238, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Floating Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Header Styles - Clean and Simple */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  
}

.logo i {
    font-size: 1.8rem;
    
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;

}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -5px);
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}



nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transition: all 0.3s ease;
}

nav a:hover::after {
    width: 100%;
    left: 0;
}

nav a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Classic Button Styles */
.btn-classic {
    position: relative;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    overflow: hidden;
}

.btn-classic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-classic:hover::before {
    left: 100%;
}

.btn-classic:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.btn-classic:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-primary-classic {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.btn-primary-classic:hover {
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.btn-secondary-classic {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary-classic:hover {
    background: white;
    color: #1d4ed8;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

/* Social Media Links - Clean */
.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: 90px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(238, 38, 238, 0.2); /* Lighter shade of the main color */
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: #f9fafb;
    color: #dc2626;
}



/* Floating Elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles - Clean */
section {
    padding: 4rem 0;
    position: relative;
}

.section-gray {
    background: #f9fafb;
}

.section-red {
    background: #dc2626;
    color: white;
}

.section-light {
    background: #fef2f2;
}

.section-dark {
    background: #1f2937;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}



.section-red .section-title h2 {
    color: white;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-red .section-title p {
    color: #f3f4f6;
}

/* YouTube Section Styles */
.youtube-section {
    background: #1f2937;
    color: white;
    padding: 4rem 0;
}

.youtube-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-container {
    background: #374151;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-2px);
}

.video-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.2rem;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-description {
    color: #9ca3af;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6b7280;
}

.video-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.video-duration {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.featured-video {
    grid-column: 1 / -1;
}

.featured-video .video-frame {
    padding-bottom: 45%;
}

.featured-video .video-info {
    padding: 1.5rem;
}

.featured-video .video-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.featured-video .video-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.live-indicator {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: #dc2626;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 10;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.youtube-cta {
    text-align: center;
    margin-top: 2rem;
}

.youtube-subscribe {
    background: #dc2626;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.youtube-subscribe:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

/* Cards - Clean Design */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-header {
    padding: 1.5rem 1.2rem 0.8rem;
    text-align: center;
}

.card-content {
    padding: 0 1.2rem 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.card-description {
    color: #6b7280;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-time {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}


.card1 {
    width: 100%;
    max-width: 350px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card1-header {
    height: 180px;
    overflow: hidden;
}

.card1-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card1:hover .card1-header img {
    transform: scale(1.05);
}

.card1-body {
    padding: 20px;
}

.time-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.time-container i {
    margin-right: 8px;
    color: #ff6b6b;
}

.card1-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.card1-text {
    color: #3d3b3b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #555;
}

.feature i {
    margin-right: 5px;
    color: #4dabf7;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: #4dabf7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.read-more:hover {
    color: #228be6;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(3px);
}

.red-icon { color: #dc2626; }
.yellow-icon { color: #fbbf24; }
.gray-icon { color: #6b7280; }

/* About Section */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}



.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

/* Pastor Section */
.pastor-section {
    max-width: 900px;
    margin: 0 auto;
}

.pastor-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pastor-content {
    display: flex;
    flex-direction: column;
}

.pastor-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.pastor-info {
    padding: 2rem;
}

.pastor-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.pastor-info .pastor-title {
    font-size: 1.1rem;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pastor-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.pastor-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pastor-details p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.pastor-details strong {
    color: #1f2937;
}

/* Image Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-2px);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: -35px;
    right: 0;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
}



/* Books Section Styles */
#books {
    padding: 50px 0;
    background-color: #f9f9f9;
    
}

.book-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-footer {
    text-align: center;
    margin-top: 15px;
}

.card-footer .btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
}

.card-footer .btn-primary:hover {
    background-color: #0056b3;
}


/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
    justify-content: center;
}

.star {
    color: #fbbf24;
}

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.office-hours {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.office-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-list p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.2rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #374151;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.animate__animated.animate__bounce {
    display: inline-block;
    margin-top: 1rem;
  
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
  }

  .span1{
    display: inline-block;
    font-size: 2.2rem;
    color: #dc2626;
    font-weight: 600;
    animation: pulse 1.5s infinite;
  }

  /* This only changes this particular animation duration */
.animate__animated.animate__bounce {
    --animate-duration: 2s;
  }
  
  /* This changes all the animations globally */
  :root {
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
    }

    .service-time {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.3rem;
        font-weight: bold;
        color: #b91c1c;
        margin-bottom: 0.9rem;
        text-transform: uppercase;
        margin-left: 75px;
    }

    .service-time1{
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.3rem;
        font-weight: bold;
        color: #fbbf24;
        margin-bottom: 0.9rem;
        text-transform: uppercase;
        margin-left: 75px;
    }

    .span2{
        margin-left: 10px;
    }

  

  /* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    left: -300px;
    width: 250px;
    padding: 15px;
    background-color: #ff4d4d; /* Red background */
    color: #fff; /* White text */
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: left 0.5s ease-in-out;
    z-index: 1000;
}

.notification.visible {
    left: 20px; /* Slide in from the left */
}

.notification.hidden {
    left: -300px; /* Hidden off-screen */
}

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 1.8rem;
    color: #dc2626;
}

.footer-brand-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-social {
    margin-top: 0.8rem;
}

.footer-social .social-link {
    width: 35px;
    height: 35px;
    background: #374151;
}

.footer-social .social-link:hover {
    background: #dc2626;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Event Card Images */
.event-image {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

/* Donate Section Styles */
.donate-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.donate-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bank-logo {
    width: 50px;
    height: 50px;
}

.success-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.donation-success {
    margin-top: 20px;
    padding: 15px;
    background-color: #e6ffe6;
    border: 1px solid #4caf50;
    border-radius: 5px;
    display: none;
}

.hidden {
    display: none;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 5px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 5px;
}

.btn-secondary:hover {
    background-color: #218838;
}




.donation-wrapper {
    position: relative;
}

.donation-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, #ffffff 0%, #eae2f1 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}


.card-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.card-content {
    padding: 30px 20px;
}

.amount-section {
    margin-bottom: 30px;
}

.amount-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.amount-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.custom-amount {
    margin-bottom: 15px;
}

.custom-amount input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.custom-amount input:focus {
    outline: none;
    border-color: #667eea;
}

.selected-amount {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
    padding: 10px;
    background: #f8f9ff;
    border-radius: 8px;
}

.account-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.label {
    color: #666;
    font-weight: 500;
}

.value {
    font-weight: bold;
    color: #333;
    font-family: 'Courier New', monospace;
}

.card-footer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5a6fd8;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-social {
    background: #17a2b8;
    color: white;
}

.btn-social:hover {
    background: #138496;
}

.btn-icon {
    font-size: 18px;
}

/* Thank You Card Styles */
.thank-you-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
}

.thank-you-card.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.thank-you-content {
    text-align: center;
    padding: 40px 20px;
}

.heart-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.thank-you-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.thank-you-content p {
    font-size: 18px;
    opacity: 0.9;
}

.confetti {
    position: relative;
    margin-top: 20px;
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: confetti 2s ease-in-out infinite;
}

.confetti-piece:nth-child(1) { left: 10%; animation-delay: 0s; }
.confetti-piece:nth-child(2) { left: 30%; animation-delay: 0.2s; }
.confetti-piece:nth-child(3) { left: 50%; animation-delay: 0.4s; }
.confetti-piece:nth-child(4) { left: 70%; animation-delay: 0.6s; }
.confetti-piece:nth-child(5) { left: 90%; animation-delay: 0.8s; }

/* Animations */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes confetti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-30px) rotate(360deg);
        opacity: 0;
    }
}

/* Button click animation */
.btn.clicked {
    animation: buttonClick 0.3s ease;
}

@keyframes buttonClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .card-content {
        padding: 20px 15px;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .amount-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}


.card2 {
    width: 100%;
    max-width: 300px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    height: 400px;
}

.card2-header {
    height: 160px; /* Reduced header height */
    overflow: hidden;
    position: relative;
}

.card2-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease;
}

.card2:hover .card2-header::after {
    background-color: rgba(0, 0, 0, 0.5);
}

.card2-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card2:hover .card2-header img {
    transform: scale(1.05);
}

.card2-body {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    transform: translateY(0);
    transition: transform 0.5s ease;
    box-sizing: border-box;
    height: 240px; /* Fixed body height */
    display: flex;
    flex-direction: column;
}

.card2:hover .card2-body {
    transform: translateY(-10px); /* Reduced hover movement */
}

.card2-title {
    font-size: 18px; /* Slightly smaller font */
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    text-transform: uppercase;
    line-height: 1.3;
}

.card2-text {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
    overflow: hidden;
    font-size: 14px; /* Smaller font for content */
    padding-right: 5px; /* Prevent text touching edge */
}

/* Different header images for each card2 */
.card2:nth-child(1) .card2-header img {
    background-image: url('ds.jpg');
}

.card2:nth-child(2) .card2-header img {
    background-image: url('');
}

.card2:nth-child(3) .card2-header img {
    background-image: url('');
}

.card2:nth-child(4) .card2-header img {
    background-image: url('');
}

/* Scrollbar for text overflow */
.card2-text {
    overflow-y: auto;
    padding-right: 8px;
}

.card2-text::-webkit-scrollbar {
    width: 4px;
}

.card2-text::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 2px;
}

.card11{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    gap: 30px;
}


/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #dc2626;
    transform: translateY(-3px);
}

.date-red { color: #dc2626; }
.date-yellow { color: #fbbf24; }
.date-gray { color: #6b7280; }

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 50px;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .pastor-info {
        padding: 1.5rem;
    }

    .pastor-info h3 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        height: 60px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .container {
        padding: 0 0.8rem;
    }


    .card11{
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pastor-content {
        flex-direction: row;
    }

    .pastor-image {
        width: 35%;
        height: auto;
    }

    .image-container{
        width: 100%;
        height: 100%;
        position: relative;
    }


    .Tracts-image{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .youtube-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 3.2rem;
    }
}


.heroo {
    display: flex;
    flex-direction: row;
    min-height: 80vh;
    padding: 2rem 5%;
    background-color: var(--light);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.heroo-content {
    flex: 1;
    z-index: 2;
}

.heroo h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.heroo p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn1 {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn1-primary {
    background-color: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
}

.btn1-primary:hover {
    background-color: transparent;
    color: var(--secondary);
}

.btn1-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn1-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.heroo-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.heroo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .heroo {
        flex-direction: column;
        text-align: center;
        padding: 4rem 5%;
    }
    
    .heroo-content {
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .heroo h1 {
        font-size: 2.2rem;
    }
    
    .heroo p {
        font-size: 1.1rem;
    }
    
    .btn1-group {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .heroo h1 {
        font-size: 1.8rem;
    }
    
    .heroo p {
        font-size: 1rem;
    }
    
    .btn1 {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }
}

/* Hero Section Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: url('worship.png') center/cover no-repeat;
    color: white;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    margin-top: 40px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: -10px;
    
}


.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
   
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-address {
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

.hero-right {
    flex: 1;
    max-width: 500px;
    text-align: center;
    margin-top: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        max-width: 100%;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 60px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.9rem;
        padding: 8px 15px;
        
    }

    .giving-card {
        padding: 2rem;
        margin: 0 15px;
    }

    .detail-item{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        

    }
}

     /* Giving Section */
     .giving-section {
        padding: 100px 0;
        background: var(--bg-white);
    }

    .giving-card {
        background: var(--bg-light);
        padding: 3rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-medium);
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .giving-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    }

    .giving-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-heavy);
    }

    .giving-icon {
        width: 80px;
        height: 80px;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        color: white;
        font-size: 2rem;
    }

    .giving-card h3 {
        color: var(--accent-color);
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .bank-details {
        background: var(--bg-white);
        padding: 2rem;
        border-radius: var(--border-radius);
        margin: 2rem 0;
        border-left: 4px solid var(--accent-color);
        box-shadow: var(--shadow-light);
    }

    .detail-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .detail-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .detail-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        color: var(--accent-color);
    }

    .detail-value {
        font-weight: 600;
        color: var(--text-dark);
        font-family: 'Courier New', monospace;
    }

    .bible-verse {
        margin-top: 2rem;
        padding: 2rem;
        background: rgba(44, 90, 160, 0.1);
        border-radius: var(--border-radius);
        border-left: 4px solid var(--accent-color);
    }

    .bible-verse i {
        color: var(--accent-color);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .bible-verse p {
        color: var(--text-light);
        font-style: italic;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .bible-verse span {
        color: var(--accent-color);
        font-weight: 600;
    }

/* Giving Section Styles */
.section-light {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

     /* Giving Section */
     .giving-section {
        padding: 100px 0;
        background: var(--bg-white);
    }

    .giving-card {
        background: var(--bg-light);
        padding: 3rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-medium);
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .giving-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    }

    .giving-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-heavy);
    }

    .giving-icon {
        width: 80px;
        height: 80px;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        color: white;
        font-size: 2rem;
    }

    .giving-card h3 {
        color: var(--accent-color);
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .bank-details {
        background: var(--bg-white);
        padding: 2rem;
        border-radius: var(--border-radius);
        margin: 2rem 0;
        border-left: 4px solid var(--accent-color);
        box-shadow: var(--shadow-light);
    }

    .detail-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .detail-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .detail-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        color: var(--accent-color);
    }

    .detail-value {
        font-weight: 600;
        color: var(--text-dark);
        font-family: 'Courier New', monospace;
    }

    .bible-verse {
        margin-top: 2rem;
        padding: 2rem;
        background: rgba(44, 90, 160, 0.1);
        border-radius: var(--border-radius);
        border-left: 4px solid var(--accent-color);
    }

    .bible-verse i {
        color: var(--accent-color);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .bible-verse p {
        color: var(--text-light);
        font-style: italic;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .bible-verse span {
        color: var(--accent-color);
        font-weight: 600;
    }

    :root {
        ---primary-color: #2c5aa0;
        --primary-dark: #1e3f73;
        --secondary-color: #e74c3c;
        --accent-color: var(--primary-color);
        --text-dark: #333;
        --text-light: #666;
        --text-muted: #999;
        --bg-light: #f8f9fa;
        --bg-white: #ffffff;
        --border-light: #e1e5e9;
        --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
        --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
        --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.1);
        --border-radius: 15px;
        --transition: all 0.3s ease;
    }
