/* Faith By ANC - Digital Ministry Website Styles */
/* Based on ANC Holdings Group design system */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #c6aa76;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Navigation */
.navbar {
    background-color: #000000;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #c6aa76;
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c6aa76;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background-color: #c6aa76;
    color: #000000;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #b89a66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 170, 118, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #c6aa76;
    padding: 10px 20px;
    text-decoration: none;
    border: 1px solid #c6aa76;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #c6aa76;
    color: #000000;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #111 100%);
    position: relative;
    overflow: hidden;
}

.hero::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 100 100"><defs><pattern id="faith-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23c6aa76" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faith-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #c6aa76 0%, #b89a66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.25rem;
    color: #c6aa76;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #c6aa76;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Social Media Feeds */
.social-feeds {
    padding: 80px 0;
    background-color: #111;
}

.section-subtitle {
    text-align: center;
    color: #c6aa76;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c6aa76, transparent);
    border-radius: 1px;
}

.feeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.feed-card {
    background-color: #0a0a0a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feed-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
    box-shadow: 0 8px 25px rgba(198, 170, 118, 0.2);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.social-icon {
    font-size: 1.2rem;
    background: #c6aa76;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.feed-info h3 {
    margin: 0;
    font-size: 1.2rem;
}

.feed-info p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.feed-preview {
    margin-top: 1rem;
}

.post-item {
    background-color: #111;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.post-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #c6aa76, #b89a66);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.placeholder-image {
    font-size: 3rem;
    color: #000000;
}

.post-text {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-engagement {
    display: flex;
    gap: 1rem;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Daily Devotional */
.daily-devotional {
    padding: 80px 0;
    background-color: #000000;
}

.devotional-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.devotional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.devotional-header {
    text-align: center;
    margin-bottom: 2rem;
}

.devotional-date {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.bible-verse {
    font-size: 1.5rem;
    color: #c6aa76;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
    line-height: 1.6;
}

.verse-reference {
    color: #cccccc;
    font-size: 1rem;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}

.devotional-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.devotional-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Ministry Features */
.ministry-features {
    padding: 80px 0;
    background-color: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 10px 30px rgba(198, 170, 118, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Community Testimonials */
.community-testimonials {
    padding: 80px 0;
    background-color: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
    box-shadow: 0 8px 25px rgba(198, 170, 118, 0.2);
}

.testimonial-content p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    color: #c6aa76;
    display: block;
    margin-bottom: 0.25rem;
}

.author-location {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border-top: 1px solid #333;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #111;
    color: #ffffff;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #c6aa76;
}

.newsletter-privacy {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
footer {
    background-color: #111;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c6aa76;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: #111;
    border: 2px solid #333;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}
.social-link:hover {
    color: #ffffff;
    background-color: rgba(198, 170, 118, 0.1);
    border-color: #c6aa76;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #c6aa76;
}

.footer-bottom p {
    color: #c6aa76;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        z-index: 1001;
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid #333;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-stats {
        gap: 2rem;
    }

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

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .devotional-actions,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

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

    .hero {
        padding: 40px 0;
    }

    .feature-card,
    .testimonial-card,
    .devotional-card {
        padding: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

/* Staggered animations for grids */
.animate-stagger > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Additional Styles for Faith By ANC Pages */

/* Page Header Styles */
.page-header {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #333;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #111 100%);
}

.page-header h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.our-story {
    padding: 80px 0;
    background-color: #000000;
}

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

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

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: #111;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.stat-card h3 {
    font-size: 2rem;
    color: #c6aa76;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #cccccc;
    margin: 0;
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background-color: #111;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mission-card, .vision-card {
    background-color: #0a0a0a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background-color: #000000;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

/* Ministry Approach */
.ministry-approach {
    padding: 80px 0;
    background-color: #111;
}

.approach-content {
    margin-top: 3rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-item {
    background-color: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

/* Impact Stories */
.impact-stories {
    padding: 80px 0;
    background-color: #000000;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.story-quote p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-author strong {
    color: #c6aa76;
    display: block;
    margin-bottom: 0.25rem;
}

.story-author span {
    color: #cccccc;
    font-size: 0.9rem;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #111;
    border-top: 1px solid #333;
}

.about-cta h2 {
    margin-bottom: 1rem;
}

.about-cta p {
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Media Page Styles */
.social-overview {
    padding: 80px 0;
    background-color: #000000;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c6aa76, #b89a66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.platform-info h3 {
    margin: 0;
    font-size: 1.3rem;
}

.platform-info p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.platform-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    color: #c6aa76;
    font-weight: 600;
}

.stat-label {
    font-size: 0.8rem;
    color: #cccccc;
}

.platform-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Live Feeds */
.live-feeds {
    padding: 80px 0;
    background-color: #111;
}

.feeds-container {
    margin-top: 3rem;
}

.feed-section {
    margin-bottom: 3rem;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.feed-header h3 {
    margin: 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.instagram-post {
    background-color: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.instagram-post .post-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #c6aa76, #b89a66);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-post .placeholder-image {
    font-size: 2rem;
    color: #000000;
}

.instagram-post .post-engagement {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.twitter-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.twitter-post {
    background-color: #0a0a0a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.twitter-post:hover {
    transform: translateY(-2px);
    border-color: #c6aa76;
}

.twitter-post .post-content p {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.twitter-post .post-engagement {
    display: flex;
    gap: 1rem;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Hashtag Campaigns */
.hashtag-campaigns {
    padding: 80px 0;
    background-color: #000000;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.campaign-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.campaign-header h3 {
    margin: 0;
    color: #c6aa76;
}

.campaign-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.campaign-status.active {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.campaign-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.campaign-stats {
    display: flex;
    gap: 1rem;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Social Tips */
.social-tips {
    padding: 80px 0;
    background-color: #111;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background-color: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

/* Social CTA */
.social-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #000000;
}

.social-cta h2 {
    margin-bottom: 1rem;
}

.social-cta p {
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Page Styles */
.daily-devotionals {
    padding: 80px 0;
    background-color: #000000;
}

.devotionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.devotional-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}

.devotional-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.devotional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.devotional-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.devotional-header {
    margin-bottom: 1.5rem;
}

.devotional-header h3 {
    margin-bottom: 0.5rem;
    color: #c6aa76;
}

.devotional-date {
    color: #cccccc;
    font-size: 0.9rem;
}

.devotional-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.devotionals-archive {
    text-align: center;
    margin-top: 3rem;
}

/* Bible Study */
.bible-study {
    padding: 80px 0;
    background-color: #111;
}

.study-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.study-card {
    background-color: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.study-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
}

.study-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

.study-card h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.study-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.study-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.topic-tag {
    background: rgba(198, 170, 118, 0.2);
    color: #c6aa76;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

/* Content Categories */
.content-categories {
    padding: 80px 0;
    background-color: #000000;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

.category-card h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.category-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-count {
    color: #c6aa76;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Featured Series */
.featured-series {
    padding: 80px 0;
    background-color: #111;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.series-card {
    background-color: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.series-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
}

.series-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #c6aa76, #b89a66);
    display: flex;
    align-items: center;
    justify-content: center;
}

.series-image .placeholder-image {
    font-size: 3rem;
    color: #000000;
}

.series-content {
    padding: 2rem;
}

.series-content h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.series-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.series-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.series-duration, .series-level {
    background: rgba(198, 170, 118, 0.2);
    color: #c6aa76;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

/* Content Search */
.content-search {
    padding: 80px 0;
    background-color: #000000;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #111;
    color: #ffffff;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: #c6aa76;
}

.search-button {
    padding: 12px 24px;
    background-color: #c6aa76;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #b89a66;
    transform: translateY(-2px);
}

.search-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #111;
    color: #ffffff;
    font-family: inherit;
}

.filter-select:focus {
    outline: none;
    border-color: #c6aa76;
}

/* Content Newsletter */
.content-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border-top: 1px solid #333;
}

/* Community Page Styles */
.community-overview {
    padding: 80px 0;
    background-color: #000000;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.community-features {
    padding: 80px 0;
    background-color: #111;
}

/* Prayer Requests */
.prayer-requests {
    padding: 80px 0;
    background-color: #000000;
}

.prayer-form-section {
    margin-bottom: 3rem;
}

.prayer-form-card {
    background-color: #111;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    max-width: 600px;
    margin: 0 auto;
}

.prayer-form-card h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
    text-align: center;
}

.prayer-form-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: center;
}

.prayer-form .form-group {
    margin-bottom: 1.5rem;
}

.prayer-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #c6aa76;
    font-weight: 500;
}

.prayer-form input,
.prayer-form textarea,
.prayer-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: inherit;
}

.prayer-form input:focus,
.prayer-form textarea:focus,
.prayer-form select:focus {
    outline: none;
    border-color: #c6aa76;
}

.prayer-requests-list h3 {
    margin-bottom: 2rem;
    color: #c6aa76;
}

.prayer-requests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.prayer-request-card {
    background-color: #111;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.prayer-request-card:hover {
    transform: translateY(-2px);
    border-color: #c6aa76;
}

.request-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.request-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.request-type {
    background: rgba(198, 170, 118, 0.2);
    color: #c6aa76;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

.request-date {
    color: #cccccc;
    font-size: 0.8rem;
}

.request-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pray-button {
    background: linear-gradient(135deg, #c6aa76, #b89a66);
    color: #000000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pray-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 170, 118, 0.3);
}

.prayer-count {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Community Testimonies */
.community-testimonies {
    padding: 80px 0;
    background-color: #111;
}

.testimonies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimony-card {
    background-color: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.testimony-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.testimony-content p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimony-author strong {
    color: #c6aa76;
    display: block;
    margin-bottom: 0.25rem;
}

.testimony-author span {
    color: #cccccc;
    font-size: 0.9rem;
}

.share-testimony {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #333;
}

.share-testimony h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.share-testimony p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Community Guidelines */
.community-guidelines {
    padding: 80px 0;
    background-color: #000000;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guideline-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.guideline-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

.guideline-card h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.guideline-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Join Community CTA */
.join-community-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #111;
}

.join-community-cta h2 {
    margin-bottom: 1rem;
}

.join-community-cta p {
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Styles */
.contact-overview {
    padding: 80px 0;
    background-color: #000000;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(198, 170, 118, 0.3));
}

.contact-method h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.contact-method p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-card {
    background-color: #0a0a0a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.contact-form-card h2 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.contact-form-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #c6aa76;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #111;
    color: #ffffff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #c6aa76;
}

.contact-info-card {
    background-color: #0a0a0a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.contact-info-card h3 {
    margin-bottom: 2rem;
    color: #c6aa76;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: #c6aa76;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Prayer Request Section */
.prayer-request-section {
    padding: 4rem 0;
}

.prayer-form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: #c6aa76;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #c6aa76;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Newsletter */
.contact-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border-top: 1px solid #333;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision-grid,
    .values-grid,
    .approach-grid,
    .stories-grid,
    .platforms-grid,
    .campaigns-grid,
    .tips-grid,
    .devotionals-grid,
    .study-materials-grid,
    .categories-grid,
    .series-grid,
    .community-stats,
    .prayer-requests-grid,
    .testimonies-grid,
    .guidelines-grid,
    .contact-methods,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .devotional-card.featured {
        grid-column: span 1;
    }
    
    .platform-actions,
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-filters {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Devotional Modal Styles */
.devotional-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #c6aa76;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background-color: rgba(198, 170, 118, 0.1);
    transform: scale(1.1);
}

.modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
    margin-bottom: 0.5rem;
    color: #c6aa76;
    font-size: 1.8rem;
}

.modal-content .devotional-date {
    text-align: center; /* Center the date */
    display: block; /* Make it a block element */
    margin: 0 auto 2rem auto; /* Center horizontally */
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.modal-content .bible-verse {
    font-size: 1.3rem;
    color: #c6aa76;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
    line-height: 1.6;
}

.modal-content .verse-reference {
    color: #cccccc;
    font-size: 1rem;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}

.modal-content .devotional-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-content .devotional-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Devotional Cards */
.devotional-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.devotional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.devotional-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.devotional-card.featured {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 2px solid #c6aa76;
    box-shadow: 0 10px 30px rgba(198, 170, 118, 0.3);
}

.devotional-card.featured::before {
    height: 4px;
    background: linear-gradient(90deg, #c6aa76, #b89a66, #c6aa76);
}

/* Devotional Archive Styles */
.devotionals-archive {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border-radius: 12px;
    border: 1px solid #333;
}

.devotionals-archive h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
}

.devotionals-archive p {
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Devotional Date Styling */
.devotional-date {
    color: #c6aa76;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(198, 170, 118, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

/* Enhanced Bible Verse Styling */
.bible-verse {
    font-size: 1.4rem;
    color: #c6aa76;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
    line-height: 1.6;
    position: relative;
    padding: 1.5rem;
    background: rgba(198, 170, 118, 0.05);
    border-radius: 8px;
    border-left: 4px solid #c6aa76;
}

.bible-verse::before {
    content: '"';
    font-size: 3rem;
    color: #c6aa76;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
}

.bible-verse::after {
    content: '"';
    font-size: 3rem;
    color: #c6aa76;
    position: absolute;
    bottom: -20px;
    right: 10px;
    opacity: 0.3;
}

/* Verse Reference Styling */
.verse-reference {
    color: #cccccc;
    font-size: 1rem;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
    font-weight: 500;
    background: rgba(198, 170, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

/* Devotional Text Styling */
.devotional-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

/* Devotional Actions Styling */
.devotional-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.devotional-actions .btn-primary,
.devotional-actions .btn-secondary {
    min-width: 150px;
    text-align: center;
}

/* Responsive Devotional Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        margin: 10px;
        max-height: 90vh;
    }
    
    .modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
        font-size: 1.5rem;
    }
    
    .modal-content .bible-verse {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .modal-content .devotional-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .devotional-actions .btn-primary,
    .devotional-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Devotional Loading Animation */
.devotional-loading {
    text-align: center;
    padding: 2rem;
    color: #cccccc;
}

.devotional-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #c6aa76;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Devotional Share Button Enhancement */
.devotional-actions a[data-share="instagram"],
.devotional-actions button[data-share="devotional"] {
    background: linear-gradient(135deg, #c6aa76 0%, #b89a66 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.devotional-actions a[data-share="instagram"]:hover,
.devotional-actions button[data-share="devotional"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 170, 118, 0.4);
}

/* Devotional Archive Grid Enhancement */
.devotionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.devotionals-grid .devotional-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.devotionals-grid .devotional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.devotionals-grid .devotional-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

/* Devotional Search Enhancement */
.devotional-search {
    margin-bottom: 2rem;
    text-align: center;
}

.devotional-search input {
    padding: 12px 20px;
    border: 1px solid #333;
    border-radius: 25px;
    background-color: #111;
    color: #ffffff;
    font-family: inherit;
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
}

.devotional-search input:focus {
    outline: none;
    border-color: #c6aa76;
    box-shadow: 0 0 0 3px rgba(198, 170, 118, 0.1);
}

.devotional-search input::placeholder {
    color: #666666;
}

/* Content Page Specific Styles */
.daily-devotionals {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.study-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.study-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.study-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.study-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.study-card h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.study-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.study-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.topic-tag {
    background: rgba(198, 170, 118, 0.1);
    color: #c6aa76;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

/* Content Categories */
.content-categories {
    padding: 4rem 0;
    background: #000000;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-count {
    color: #c6aa76;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(198, 170, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

/* Featured Series */
.featured-series {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.series-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.series-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.series-image {
    height: 200px;
    background: linear-gradient(135deg, #c6aa76, #b89a66);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 4rem;
    opacity: 0.8;
}

.series-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.series-content h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.series-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.series-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.series-duration,
.series-level {
    background: rgba(198, 170, 118, 0.1);
    color: #c6aa76;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

/* Content Search */
.content-search {
    padding: 4rem 0;
    background: #000000;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #333;
    border-radius: 25px;
    background-color: #111;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #c6aa76;
    box-shadow: 0 0 0 3px rgba(198, 170, 118, 0.1);
}

.search-input::placeholder {
    color: #666666;
}

.search-button {
    background: linear-gradient(135deg, #c6aa76 0%, #b89a66 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 170, 118, 0.4);
}

.search-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #111;
    color: #ffffff;
    font-family: inherit;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: #c6aa76;
}

/* Content Newsletter */
.content-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.content-newsletter .newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.content-newsletter h2 {
    color: #c6aa76;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-newsletter p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Content Page */
@media (max-width: 768px) {
    .study-materials-grid,
    .categories-grid,
    .series-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-select {
        width: 100%;
        max-width: 300px;
    }
    
    .series-card {
        flex-direction: column;
    }
    
    .series-image {
        height: 150px;
    }
}

/* Devotional Archive Loading State */
.devotional-loading {
    text-align: center;
    padding: 3rem;
    color: #cccccc;
    font-style: italic;
}

.devotional-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #c6aa76;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Simplified Ministry Design */
.nav-tagline {
    font-size: 0.8rem;
    color: #c6aa76;
    font-weight: 500;
    margin-top: -5px;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c6aa76;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(198, 170, 118, 0.1);
    border: 1px solid rgba(198, 170, 118, 0.3);
    border-radius: 25px;
    display: inline-flex;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    color: #c6aa76;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Coming Soon Section */
.coming-soon {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coming-soon-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.coming-soon-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.coming-soon-card h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.coming-soon-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon-status {
    background: rgba(198, 170, 118, 0.1);
    color: #c6aa76;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(198, 170, 118, 0.3);
    display: inline-block;
}

/* Mission Statement */
.mission-statement {
    padding: 4rem 0;
    background: #000000;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-quote {
    font-size: 1.8rem;
    color: #c6aa76;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
    padding: 2rem;
    background: rgba(198, 170, 118, 0.05);
    border-radius: 12px;
    border-left: 4px solid #c6aa76;
}

.mission-quote::before {
    content: '"';
    font-size: 4rem;
    color: #c6aa76;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.mission-quote::after {
    content: '"';
    font-size: 4rem;
    color: #c6aa76;
    position: absolute;
    bottom: -20px;
    right: 20px;
    opacity: 0.3;
}

.mission-text {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

/* Footer Updates */
.footer-tagline {
    color: #c6aa76;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(198, 170, 118, 0.1);
    border: 1px solid rgba(198, 170, 118, 0.3);
    border-radius: 20px;
    display: inline-flex;
}

.footer-badge .badge-icon {
    font-size: 1rem;
}

.footer-badge .badge-text {
    color: #c6aa76;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-tagline {
        font-size: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .mission-quote {
        font-size: 1.4rem;
        padding: 1.5rem;
    }
    
    .mission-text {
        text-align: center;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.mission-section,
.vision-section,
.values-section {
    padding: 4rem 0;
}

.mission-section {
    background: #000000;
}

.vision-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.values-section {
    background: #000000;
}

.mission-content,
.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-quote {
    font-size: 1.8rem;
    color: #c6aa76;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
    padding: 2rem;
    background: rgba(198, 170, 118, 0.05);
    border-radius: 12px;
    border-left: 4px solid #c6aa76;
}

.mission-quote::before {
    content: '"';
    font-size: 4rem;
    color: #c6aa76;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.mission-quote::after {
    content: '"';
    font-size: 4rem;
    color: #c6aa76;
    position: absolute;
    bottom: -20px;
    right: 20px;
    opacity: 0.3;
}

.mission-text {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

.vision-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.vision-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.vision-list li {
    color: #cccccc;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 2rem;
}

.vision-list li:before {
    content: "✓";
    color: #c6aa76;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1rem;
}

.vision-list li:last-child {
    border-bottom: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: #cccccc;
    line-height: 1.6;
}

.coming-soon-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-quote {
        font-size: 1.4rem;
        padding: 1.5rem;
    }
    
    .mission-text {
        text-align: center;
    }
    
    .vision-list {
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* 40-Day Devotional Series Styles */
.devotional-series {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.series-overview {
    max-width: 800px;
    margin: 0 auto;
}

.series-card.featured {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #c6aa76;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(198, 170, 118, 0.3);
}

.series-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c6aa76, #b89a66, #c6aa76);
}

.series-date {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #c6aa76;
    font-weight: 600;
}

.start-date,
.end-date {
    background: rgba(198, 170, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

.series-card h3 {
    color: #c6aa76;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.series-card p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.series-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(198, 170, 118, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(198, 170, 118, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span:last-child {
    color: #c6aa76;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Expectations Section */
.expectations {
    padding: 4rem 0;
    background: #000000;
}

.expectations-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expectation-item {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expectation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.expectation-item:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.expectation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.expectation-item h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.expectation-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Enhanced Devotional Card */
.daily-devotional .devotional-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 2px solid #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.daily-devotional .devotional-card::before {
    height: 4px;
    background: linear-gradient(90deg, #c6aa76, #b89a66, #c6aa76);
}

/* Responsive Design */
@media (max-width: 768px) {
    .series-card.featured {
        padding: 2rem;
    }
    
    .series-card h3 {
        font-size: 2rem;
    }
    
    .series-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expectations-content {
        grid-template-columns: 1fr;
    }
    
    .series-date {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Content Page - 40-Day Series */
.series-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.sample-devotionals {
    padding: 4rem 0;
    background: #000000;
}

.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.series-status {
    margin-top: 2rem;
}

.status-badge {
    background: linear-gradient(135deg, #c6aa76 0%, #b89a66 100%);
    color: #000000;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
}

.status-badge.active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    animation: pulse 2s infinite;
}

.series-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.status-badge {
    background: linear-gradient(135deg, #c6aa76 0%, #b89a66 100%);
    color: #000000;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.step-item:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c6aa76 0%, #b89a66 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Enhanced Devotional Modal */
.devotional-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 2px solid #c6aa76;
    border-radius: 16px;
    padding: 3rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(198, 170, 118, 0.4);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #c6aa76;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.close-modal:hover {
    background-color: rgba(198, 170, 118, 0.1);
    transform: scale(1.1);
    color: #ffffff;
}

.modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
    margin-bottom: 0.5rem;
    color: #c6aa76;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.modal-content .devotional-date {
    text-align: center; /* Center the date */
    display: block; /* Make it a block element */
    margin: 0 auto 2rem auto; /* Center horizontally */
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
    background: rgba(198, 170, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

.modal-content .bible-verse {
    font-size: 1.4rem;
    color: #c6aa76;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
    line-height: 1.6;
    position: relative;
    padding: 2rem;
    background: rgba(198, 170, 118, 0.05);
    border-radius: 12px;
    border-left: 4px solid #c6aa76;
}

.modal-content .bible-verse::before {
    content: '"';
    font-size: 4rem;
    color: #c6aa76;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.modal-content .bible-verse::after {
    content: '"';
    font-size: 4rem;
    color: #c6aa76;
    position: absolute;
    bottom: -20px;
    right: 20px;
    opacity: 0.3;
}

.modal-content .verse-reference {
    color: #c6aa76;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    margin-bottom: 2.5rem;
    font-weight: 500;
    background: rgba(198, 170, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

.modal-content .devotional-text {
    margin-bottom: 2.5rem;
}

.modal-content .devotional-text h4 {
    color: #c6aa76;
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-content .devotional-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.modal-content .prayer-text {
    font-style: italic;
    background: rgba(198, 170, 118, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #c6aa76;
    margin-top: 1rem;
}

.modal-content .devotional-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.modal-content .devotional-actions .btn-primary,
.modal-content .devotional-actions .btn-secondary {
    min-width: 180px;
    text-align: center;
    padding: 12px 24px;
    font-weight: 600;
}

/* Button Styles for Devotional Actions */
.devotional-actions button {
    background: linear-gradient(135deg, #c6aa76 0%, #b89a66 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.devotional-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 170, 118, 0.4);
}

.devotional-actions .btn-secondary {
    background: transparent;
    color: #c6aa76;
    border: 2px solid #c6aa76;
}

.devotional-actions .btn-secondary:hover {
    background: #c6aa76;
    color: #000000;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
        font-size: 1.8rem;
    }
    
    .modal-content .bible-verse {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    
    .modal-content .devotional-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content .devotional-actions button {
        width: 100%;
        max-width: 300px;
    }
    
    .close-modal {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

/* Sample Devotionals Grid */
.sample-devotionals .devotionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sample-devotionals .devotional-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sample-devotionals .devotional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.sample-devotionals .devotional-card:hover {
    transform: translateY(-8px);
    border-color: #c6aa76;
    box-shadow: 0 15px 40px rgba(198, 170, 118, 0.2);
}

.sample-devotionals .devotional-header h3 {
    color: #c6aa76;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.sample-devotionals .devotional-date {
    color: #cccccc;
    font-size: 0.9rem;
    background: rgba(198, 170, 118, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(198, 170, 118, 0.3);
}

.sample-devotionals .bible-verse {
    font-size: 1.2rem;
    color: #c6aa76;
    font-style: italic;
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.5;
    padding: 1rem;
    background: rgba(198, 170, 118, 0.05);
    border-radius: 8px;
    border-left: 3px solid #c6aa76;
}

.sample-devotionals .verse-reference {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.sample-devotionals .devotional-text p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sample-devotionals .devotional-actions {
    margin-top: 1.5rem;
}

.sample-devotionals .devotional-actions button {
    background: transparent;
    color: #c6aa76;
    border: 2px solid #c6aa76;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.sample-devotionals .devotional-actions button:hover {
    background: #c6aa76;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 170, 118, 0.3);
}

/* Fix Close Button Overlap Issue */
.modal-content .devotional-header {
    text-align: center; /* Center all content */
    position: relative;
    padding-right: 60px; /* Make space for close button */
    margin-bottom: 2rem;
}

.modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
    margin-bottom: 0.5rem;
    color: #c6aa76;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    padding-right: 20px; /* Extra padding to prevent overlap */
    word-wrap: break-word; /* Handle long titles */
}

.close-modal {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #c6aa76;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0; /* Prevent shrinking */
}

.close-modal:hover {
    background-color: rgba(198, 170, 118, 0.1);
    transform: scale(1.1);
    color: #ffffff;
}

/* Ensure the header content doesn't extend under the close button */
.modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
    max-width: calc(100% - 70px); /* Account for close button width + padding */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .modal-content .devotional-header {
    text-align: center; /* Center all content */
        padding-right: 50px;
    }
    
    .modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
        font-size: 1.8rem;
        padding-right: 15px;
        max-width: calc(100% - 60px);
    }
    
    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* Additional spacing for very long titles */
.modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

/* Ensure proper spacing between title and date */
.modal-content .devotional-date {
    text-align: center; /* Center the date */
    display: block; /* Make it a block element */
    margin: 0 auto 2rem auto; /* Center horizontally */
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

/* Enhanced Close Button Design */
.close-modal {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #c6aa76;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    outline: none; /* Remove focus outline */
}

.close-modal:hover {
    background-color: rgba(198, 170, 118, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.close-modal:active {
    transform: scale(0.95);
}

/* Remove the "Close" text button and keep only X */
.modal-content .devotional-actions .btn-secondary.close-modal {
    display: none; /* Hide the text "Close" button */
}

/* Ensure only one close button is visible */
.modal-content .devotional-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.modal-content .devotional-actions .btn-primary {
    min-width: 180px;
    text-align: center;
    padding: 12px 24px;
    font-weight: 600;
}

/* Mobile adjustments for close button */
@media (max-width: 768px) {
    .close-modal {
        width: 45px;
        height: 45px;
        font-size: 2.2rem;
    }
    
    .modal-content .devotional-header {
    text-align: center; /* Center all content */
        padding-right: 55px;
    }
    
    .modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
        max-width: calc(100% - 65px);
    }
}

/* Center the Day X - Title */
.modal-content .devotional-header {
    text-align: center; /* Center all content */
    position: relative;
    padding-right: 60px; /* Make space for close button */
    margin-bottom: 2rem;
    text-align: center; /* Center the content */
}

.modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
    margin-bottom: 0.5rem;
    color: #c6aa76;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    padding-right: 20px; /* Extra padding to prevent overlap */
    word-wrap: break-word; /* Handle long titles */
    text-align: center; /* Center the title */
    width: 100%; /* Full width for centering */
}

.modal-content .devotional-date {
    text-align: center; /* Center the date */
    display: block; /* Make it a block element */
    margin: 0 auto 2rem auto; /* Center horizontally */
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
    background: rgba(198, 170, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(198, 170, 118, 0.3);
    text-align: center; /* Center the date */
}

/* Prevent background scrolling when modal is open */
.devotional-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(5px);
    overflow-y: auto; /* Allow scrolling within modal */
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Ensure modal content is scrollable */
.modal-content {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 2px solid #c6aa76;
    border-radius: 16px;
    padding: 3rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(198, 170, 118, 0.4);
    animation: modalSlideIn 0.3s ease-out;
    margin: auto; /* Center the modal content */
}

/* Mobile adjustments for centered title */
@media (max-width: 768px) {
    .modal-content .devotional-header {
    text-align: center; /* Center all content */
        padding-right: 55px;
        text-align: center;
    }
    
    .modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
        font-size: 1.8rem;
        padding-right: 15px;
        max-width: calc(100% - 60px);
        text-align: center;
        margin: 0 auto; /* Center the title */
    }
    
    .modal-content .devotional-date {
    text-align: center; /* Center the date */
    display: block; /* Make it a block element */
    margin: 0 auto 2rem auto; /* Center horizontally */
        text-align: center;
        margin: 1rem auto 2rem auto; /* Center the date */
    }
    
    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* Center the Day X - Title and Date in Modal */
.modal-content .devotional-header {
    text-align: center; /* Center all content */
    position: relative;
    padding-right: 60px; /* Make space for close button */
    margin-bottom: 2rem;
    text-align: center; /* Center all content */
}

.modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
    margin-bottom: 0.5rem;
    color: #c6aa76;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    padding-right: 20px; /* Extra padding to prevent overlap */
    word-wrap: break-word; /* Handle long titles */
    text-align: center; /* Center the title */
    width: 100%; /* Full width for centering */
}

.modal-content .devotional-date {
    text-align: center; /* Center the date */
    display: block; /* Make it a block element */
    margin: 0 auto 2rem auto; /* Center horizontally */
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
    background: rgba(198, 170, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(198, 170, 118, 0.3);
    text-align: center; /* Center the date */
    margin: 0 auto 2rem auto; /* Center horizontally */
}

/* Mobile adjustments for centered title and date */
@media (max-width: 768px) {
    .modal-content .devotional-header {
    text-align: center; /* Center all content */
        padding-right: 55px;
        text-align: center;
    }
    
    .modal-content .devotional-header h2 {
    text-align: center; /* Center the title */
    margin: 0 auto; /* Center horizontally */
        font-size: 1.8rem;
        padding-right: 15px;
        max-width: calc(100% - 60px);
        text-align: center;
        margin: 0 auto; /* Center the title */
    }
    
    .modal-content .devotional-date {
    text-align: center; /* Center the date */
    display: block; /* Make it a block element */
    margin: 0 auto 2rem auto; /* Center horizontally */
        text-align: center;
        margin: 1rem auto 2rem auto; /* Center the date */
        display: block; /* Make it a block element for better centering */
        width: fit-content; /* Fit content width */
    }
    
    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* Enhanced Modal Date Styling */
.modal-content .devotional-date {
    background: rgba(198, 170, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(198, 170, 118, 0.3);
    width: fit-content;
    margin: 0 auto 2rem auto;
    text-align: center;
}

/* Fix Modal Content Distribution and Centering */
.devotional-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content .devotional-header {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-right: 60px; /* Space for close button */
}

.modal-content .devotional-header h2 {
    text-align: center;
    margin: 0 auto 0.5rem auto;
    width: fit-content;
    max-width: calc(100% - 60px);
}

.modal-content .devotional-date {
    text-align: center;
    margin: 0 auto 1.5rem auto;
    width: fit-content;
    display: block;
}

.modal-content .devotional-content {
    width: 100%;
    text-align: left; /* Content should be left-aligned for readability */
}

.modal-content .bible-verse {
    text-align: center; /* Keep verse centered */
    margin: 1.5rem auto;
}

.modal-content .verse-reference {
    text-align: center; /* Keep reference centered */
    display: block;
    margin: 0 auto 1.5rem auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem;
        max-height: 95vh;
    }
    
    .modal-content .devotional-header h2 {
        font-size: 1.8rem;
        max-width: calc(100% - 50px);
    }
    
    .modal-content .devotional-date {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Force Modal Centering - More Specific Rules */
.devotional-modal .modal-content .devotional-header {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-right: 60px !important;
}

.devotional-modal .modal-content .devotional-header h2 {
    text-align: center !important;
    margin: 0 auto 0.5rem auto !important;
    width: fit-content !important;
    max-width: calc(100% - 60px) !important;
    display: block !important;
}

.devotional-modal .modal-content .devotional-date {
    text-align: center !important;
    margin: 0 auto 1.5rem auto !important;
    width: fit-content !important;
    display: block !important;
    background: rgba(198, 170, 118, 0.1) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    border: 1px solid rgba(198, 170, 118, 0.3) !important;
}

/* Ensure modal content is properly centered */
.devotional-modal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.devotional-modal .modal-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 700px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Debug: Make centering very obvious */
.devotional-modal .modal-content .devotional-header h2 {
    border: 2px solid red !important; /* Debug border */
    background: rgba(255, 0, 0, 0.1) !important; /* Debug background */
}

.devotional-modal .modal-content .devotional-date {
    border: 2px solid blue !important; /* Debug border */
    background: rgba(0, 0, 255, 0.1) !important; /* Debug background */
}

/* Clean up debug styling and fix date */
.devotional-modal .modal-content .devotional-header h2 {
    border: none !important; /* Remove debug border */
    background: none !important; /* Remove debug background */
    text-align: center !important;
    margin: 0 auto 0.5rem auto !important;
    width: fit-content !important;
    max-width: calc(100% - 60px) !important;
    display: block !important;
    color: #c6aa76 !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
}

.devotional-modal .modal-content .devotional-date {
    border: none !important; /* Remove debug border */
    background: rgba(198, 170, 118, 0.1) !important; /* Proper gold background */
    color: #cccccc !important;
    text-align: center !important;
    margin: 0 auto 1.5rem auto !important;
    width: fit-content !important;
    display: block !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    border: 1px solid rgba(198, 170, 118, 0.3) !important;
    font-size: 1rem !important;
}

/* Additional Mobile Menu Fixes */
@media (max-width: 768px) {
    .nav-menu {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle {
        z-index: 1002;
        position: relative;
    }
    
    .nav-toggle:hover {
        opacity: 0.8;
    }
    
    .nav-toggle:active {
        transform: scale(0.95);
    }
}

/* Enhanced Mobile Menu Toggle */
@media (max-width: 768px) {
    .nav-toggle {
        z-index: 1002;
        position: relative;
        padding: 10px;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .nav-toggle:hover {
        opacity: 0.8;
    }
    
    .nav-toggle:active {
        transform: scale(0.95);
    }
    
    .nav-toggle span {
        pointer-events: none;
    }
    
    /* Ensure the toggle button is large enough for touch */
    .nav-toggle::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        z-index: 1;
    }
}

/* Follow Us Section */
.follow-us {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 4rem 0;
    text-align: center;
}

.follow-content h2 {
    color: #c6aa76;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.follow-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: #111;
    border: 2px solid #333;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}
.social-link:hover {
    border-color: #c6aa76;
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 170, 118, 0.2);
}

.social-link.instagram:hover {
    border-color: #E4405F;
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.2);
}

.social-link.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.2);
}

.social-icon {
    font-size: 1.2rem;
    background: #c6aa76;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.follow-note {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Mobile adjustments for Follow Us */
@media (max-width: 768px) {
    .follow-content h2 {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: #111;
    border: 2px solid #333;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}}

/* Enhanced Social Link Styling */
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link span:last-child {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Instagram specific styling */
.social-link.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.instagram:hover {
    border-color: #E4405F;
    box-shadow: 0 4px 20px rgba(228, 64, 95, 0.3);
}

/* Twitter specific styling */
.social-link.twitter .social-icon {
    background: #1DA1F2;
    color: white;
}

.social-link.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 4px 20px rgba(29, 161, 242, 0.3);
}

/* Hide Admin Access Icon */
.admin-access-icon {
    display: none !important;
}

/* No Testimonies Styling */
.no-testimonies {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 2px solid #333;
    border-radius: 16px;
    margin: 2rem 0;
}

.no-testimonies-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-testimonies-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.no-testimonies h3 {
    color: #c6aa76;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-testimonies p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.no-testimonies p:last-child {
    color: #999;
    font-size: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .no-testimonies {
        padding: 3rem 1.5rem;
    }
    
    .no-testimonies-icon {
        font-size: 3rem;
    }
    
    .no-testimonies h3 {
        font-size: 1.5rem;
    }
    
    .no-testimonies p {
        font-size: 1rem;
    }
}

/* Devotional Platform Styles */
.devotional-platform {
    padding: 2rem 0;
    min-height: 80vh;
}

.platform-header {
    text-align: center;
    margin-bottom: 3rem;
}

.platform-title {
    font-size: 3rem;
    color: #c6aa76;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.platform-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.devotional-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #c6aa76;
    color: #c6aa76;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #c6aa76;
    color: #000;
}

.nav-btn.active {
    background: #c6aa76;
    color: #000;
}

.devotional-content {
    max-width: 800px;
    margin: 0 auto;
}

.devotional-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.devotional-header {
    text-align: center;
    margin-bottom: 2rem;
}

.devotional-title {
    font-size: 2rem;
    color: #c6aa76;
    margin-bottom: 1rem;
}

.devotional-date {
    background: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    border: 1px solid #c6aa76;
}

.devotional-verse {
    font-size: 1.3rem;
    color: #fff;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    border-left: 4px solid #c6aa76;
}

.devotional-reference {
    color: #c6aa76;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.devotional-text h4 {
    color: #c6aa76;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.devotional-text p {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.devotional-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.action-btn {
    padding: 12px 24px;
    background: #c6aa76;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover:not(:disabled) {
    background: #b89a5f;
    transform: translateY(-2px);
}

.action-btn:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
}

.action-btn.secondary {
    background: transparent;
    color: #c6aa76;
    border: 2px solid #c6aa76;
}

.action-btn.secondary:hover {
    background: #c6aa76;
    color: #000;
}

/* Archive Styles */
.archive-title, .progress-title {
    font-size: 2.5rem;
    color: #c6aa76;
    text-align: center;
    margin-bottom: 2rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.archive-item {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.archive-item:hover {
    border-color: #c6aa76;
    transform: translateY(-2px);
}

.archive-item.read {
    border-color: #28a745;
}

.archive-item.missed {
    border-color: #dc3545;
}

.archive-item h4 {
    color: #c6aa76;
    margin-bottom: 0.5rem;
}

.archive-item p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* Progress Styles */
.progress-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
}

.stat-number {
    font-size: 2.5rem;
    color: #c6aa76;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar-container {
    background: #333;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

.progress-bar {
    background: linear-gradient(90deg, #c6aa76, #b89a5f);
    height: 100%;
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
}

/* Missed Notice */
.missed-notice {
    background: #2d1b1b;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

/* No Devotional */
.no-devotional {
    text-align: center;
    padding: 3rem;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333;
}

.no-devotional h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
}

.no-devotional p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .devotional-platform {
        padding: 1rem 0;
    }
    
    .platform-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .platform-subtitle {
        font-size: 1rem;
    }
    
    .devotional-nav {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .devotional-content {
        padding: 0 1rem;
    }
    
    .devotional-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .devotional-title {
        font-size: 1.5rem;
    }
    
    .devotional-date {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .devotional-verse {
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
    
    .devotional-reference {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .devotional-text h4 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .devotional-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .devotional-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .action-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .archive-title, .progress-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .archive-item {
        padding: 1rem;
    }
    
    .progress-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .progress-bar-container {
        height: 15px;
    }
    
    .progress-text {
        font-size: 0.9rem;
    }
    
    .no-devotional h3 {
        font-size: 1.5rem;
    }
    
    .no-devotional p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .platform-title {
        font-size: 1.8rem;
    }
    
    .platform-subtitle {
        font-size: 0.9rem;
    }
    
    .devotional-card {
        padding: 1rem;
    }
    
    .devotional-title {
        font-size: 1.3rem;
    }
    
    .devotional-verse {
        font-size: 1rem;
    }
    
    .archive-title, .progress-title {
        font-size: 1.5rem;
    }
    
    .progress-stats {
        grid-template-columns: 1fr;
    }
    
    .no-devotional h3 {
        font-size: 1.3rem;
    }
}

/* Improved Padding System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Padding Improvements */
section {
    padding: 4rem 0;
}

.page-header {
    padding: 6rem 0 4rem;
}

/* Card Padding Improvements */
.card, .feature-card, .value-card, .coming-soon-card, .archive-item, .stat-card {
    padding: 2rem;
}

/* Button Padding Improvements */
.btn, .btn-primary, .btn-secondary, .action-btn {
    padding: 12px 24px;
}

/* Form Padding Improvements */
input, textarea, select {
    padding: 12px 16px;
}

/* Modal Padding Improvements */
.modal-content {
    padding: 2.5rem;
}

/* Mobile Padding Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .card, .feature-card, .value-card, .coming-soon-card, .archive-item, .stat-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 3rem 0 1.5rem;
    }
    
    .card, .feature-card, .value-card, .coming-soon-card, .archive-item, .stat-card {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
}
