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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

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

/* Section backgrounds to white or very light blue, text to dark */
.hero,
.announcement,
.about,
.background,
.faith-statement,
.vision,
.bible-study,
.services,
.ministries,
.events,
.media,
.contact,
.resources {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    color: #fff;
}

h1, h2, h3, h4, h5, h6, p, .section-header h2, .section-header p, .about-values h3, .about-testimonials h3, .about-mission h3, .about-cta h3, .background-text h3, .faith-statement h2, .vision-text h3, .bible-study-text h3, .services-grid h3, .ministries-grid h3, .events-grid h3, .media-sermons h3, .media-gallery h3, .contact h2, .resources-intro h2 {
    color: #fff !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 1400px;
    max-width: 100vw;
    overflow-x: auto;
    background: #e3f0ff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.nav-logo h2 {
    color: #000 !important;
    margin: 0;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.5px !important;
    font-family: 'Playfair Display', serif !important;
}

.nav-logo span {
    color: #000 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.nav-logo-right {
    display: flex;
    align-items: center;
}

.logo-image:hover {
    transform: scale(1.1);
}

.nav-menu-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

/* Navbar background modified for better visibility */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 120px 0 80px;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-text {
    text-align: left;
    margin-bottom: 2.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.hero-text blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.hero-text blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #667eea;
    line-height: 1;
    margin-right: 0.5rem;
    vertical-align: top;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

.hero {
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .hero-carousel {
        height: 350px;
    }
    .carousel-image {
        height: 350px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #667eea;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text ul {
    list-style: none;
    margin-left: 0;
}

.about-text li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.about-text li:last-child {
    border-bottom: none;
}



/* Background Section */
.background {
    padding: 100px 0;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

.background-content {
    max-width: 900px;
    margin: 0 auto;
}

.background-text h3 {
    color: #667eea;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.background-text h3:first-child {
    margin-top: 0;
}

.background-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.background-text p:last-child {
    margin-bottom: 0;
}

/* Faith Statement Section */
.faith-statement {
    padding: 100px 0;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

.faith-content {
    max-width: 900px;
    margin: 0 auto;
}

.faith-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
    font-family: 'Inter', sans-serif;
}

.faith-text p:last-child {
    margin-bottom: 0;
}

/* Amharic text specific styling */
.faith-statement h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #667eea;
}

/* Vision Section */
.vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-text h3 {
    color: #667eea;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.vision-text h3:first-child {
    margin-top: 0;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.vision-text p:last-child {
    margin-bottom: 0;
}

/* Bible Study Section */
.bible-study {
    padding: 100px 0;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

.bible-study-content {
    max-width: 900px;
    margin: 0 auto;
}

.bible-study-text h3 {
    color: #667eea;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.bible-study-text h3:first-child {
    margin-top: 0;
}

.bible-study-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.bible-study-text p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    color: #000;
}

.services h1, .services h2, .services h3, .services h4, .services h5, .services h6, .services p, .services .section-header h2, .services .section-header p, .services .service-card h3, .services .service-card p {
    color: #000 !important;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.service-time {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Ministries Section */
.ministries {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    color: #000;
}

.ministries h1, .ministries h2, .ministries h3, .ministries h4, .ministries h5, .ministries h6, .ministries p, .ministries .section-header h2, .ministries .section-header p, .ministries .ministry-card h3, .ministries .ministry-card p {
    color: #000 !important;
}

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

.ministry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ministry-card:hover {
    transform: translateY(-5px);
}

.ministry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ministry-icon i {
    font-size: 1.5rem;
    color: white;
}

.ministry-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    color: #000;
}

.events h1, .events h2, .events h3, .events h4, .events h5, .events h6, .events p, .events .section-header h2, .events .section-header p, .events .event-card h3, .events .event-card p {
    color: #000 !important;
}

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

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.event-time {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.event-time i {
    margin-right: 5px;
}

/* Media Section */
.media {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    color: #000;
}

.media h1, .media h2, .media h3, .media h4, .media h5, .media h6, .media p, .media .section-header h2, .media .section-header p, .media .sermon-card h4, .media .sermon-card p {
    color: #000 !important;
}

.media-sermons, .media-gallery {
    margin-bottom: 60px;
}

.media-sermons h3, .media-gallery h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.sermons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sermon-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.sermon-card:hover {
    transform: translateY(-5px);
}



.sermon-card h4 {
    margin-bottom: 10px;
}

.sermon-card p {
    color: #777;
    font-size: 0.9rem;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

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

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

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

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

.footer-section a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}
.footer-section a:hover {
    color: #ffd700;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu-container {
        display: none;
    }

    .nav-menu-container.active {
        display: block;
    }

    .nav-menu {
        position: static;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        margin-top: 0.5rem;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

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

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-text blockquote {
        font-size: 1.1rem;
        margin: 1.5rem 0;
        padding: 1.2rem;
        text-align: center;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .background-content {
        max-width: 100%;
    }

    .background-text h3 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .background-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .faith-content {
        max-width: 100%;
    }

    .faith-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .vision-content {
        max-width: 100%;
    }

    .vision-text h3 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .vision-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .bible-study-content {
        max-width: 100%;
    }

    .bible-study-text h3 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .bible-study-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .event-card {
        flex-direction: column;
    }

    .event-date {
        min-width: auto;
        padding: 1rem;
    }

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

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

    h1 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-text blockquote {
        font-size: 1rem;
        margin: 1.2rem 0;
        padding: 1rem;
    }

    .service-card,
    .ministry-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Announcement Section */
.announcement {
    background: transparent;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    color: #000;
}

.announcement h1, .announcement h2, .announcement h3, .announcement h4, .announcement h5, .announcement h6, .announcement p, .announcement .announcement-text, .announcement .announcement-details, .announcement .announcement-theme, .announcement .detail-content h4, .announcement .detail-content p, .announcement .announcement-description p, .announcement .announcement-quote {
    color: #000 !important;
}

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

.announcement-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.announcement h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.announcement-text, .announcement-details {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.announcement-text em {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

/* Resources Section */
.resources {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    color: #000;
}

.resources h1, .resources h2, .resources h3, .resources h4, .resources h5, .resources h6, .resources p, .resources .section-header h2, .resources .section-header p, .resources .resource-category h3, .resources .resource-category p, .resources .resource-link, .resources .resources-intro p, .resources .resources-disclaimer p {
    color: #000 !important;
}

.resources-content {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.resources-intro blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #667eea;
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    background: rgba(102, 126, 234, 0.1);
}

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

.resource-category {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.resource-category h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-category h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.resource-link:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
    border-color: #667eea;
}

.resource-link i {
    color: #667eea;
    margin-top: 0.2rem;
    transition: color 0.3s ease;
}

.resource-link:hover i {
    color: white;
}

.resource-link span {
    line-height: 1.6;
}

.resource-link strong {
    color: inherit;
}

.resources-disclaimer {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #667eea;
}

.resources-disclaimer h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.resources-disclaimer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resources-disclaimer blockquote {
    font-style: italic;
    color: #667eea;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.resources-cta {
    text-align: center;
    margin-top: 3rem;
}

.resources-cta .cta-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

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

/* Responsive Design for Resources */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resource-category {
        padding: 1.5rem;
    }
    
    .resource-link {
        padding: 0.75rem;
    }
    
    .resources-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .resources-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .resources {
        padding: 2rem 0;
    }
    
    .resources-intro p {
        font-size: 1rem;
    }
    
    .resources-intro blockquote {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .resource-category h3 {
        font-size: 1.2rem;
    }
    
    .resource-link {
        font-size: 0.95rem;
    }
} 

.bethel-logo {
    height: 48px;
    width: auto;
    margin-right: 1rem;
    vertical-align: middle;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
    background: white;
    object-fit: contain;
    display: inline-block;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-logo-text h2 {
    color: #000 !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.5px !important;
    font-family: 'Playfair Display', serif !important;
}

.nav-logo-text span {
    color: #000 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 768px) {
    .bethel-logo {
        height: 36px;
        margin-right: 0.7rem;
    }
    .nav-logo-text h2 {
        font-size: 1.1rem;
    }
} 

.nav-container, .nav-menu-container {
    position: relative;
    z-index: 2;
    height: 90px;
    display: flex;
    align-items: center;
}

.bethel-logo-footer {
    display: block;
    margin: 0 auto 1.5rem auto;
    height: 64px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
    background: white;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar, .nav-container, .nav-menu-container {
    height: 90px;
    min-height: 90px;
    max-height: 90px;
    }
    .bethel-logo-footer {
        height: 44px;
    }
} 

/* Navbar logo styling */
.bethel-logo-navbar {
    height: 48px;
    width: auto;
    margin-right: 1rem;
    vertical-align: middle;
    border-radius: 8px;
    background: white;
    object-fit: contain;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
}

@media (max-width: 768px) {
    .bethel-logo-navbar {
        height: 32px;
        margin-right: 0.5rem;
    }
} 

/* Adjust donate button for blue theme */
.donate-btn {
    margin-left: 1.5rem;
    font-size: 1rem;
    padding: 10px 28px;
    background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
    color: #222;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 204, 51, 0.15);
    transition: background 0.3s, color 0.3s;
}
.donate-btn:hover {
    background: linear-gradient(90deg, #ffcc33 0%, #ffb347 100%);
    color: #fff;
}

@media (max-width: 768px) {
    .donate-btn {
        margin-left: 0.5rem;
        font-size: 0.95rem;
        padding: 8px 18px;
    }
}

/* Conference Poster Section Styles */
.conference-poster-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.conference-poster-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.conference-poster-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.conference-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.conference-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conference-poster-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.poster-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.poster-display {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.poster-display:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.poster-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.conference-poster-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.poster-image-container:hover .conference-poster-image {
    transform: scale(1.02);
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poster-image-container:hover .poster-overlay {
    opacity: 1;
}

.poster-overlay .btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.poster-overlay .btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.poster-overlay .btn i {
    margin-right: 8px;
}



.poster-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.poster-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.conference-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    opacity: 0.8;
}

.conference-description {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.conference-description p {
    margin: 0;
    line-height: 1.6;
}

.conference-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.conference-actions .btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.conference-actions .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.conference-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.conference-actions .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.conference-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design for Conference Poster */
@media (max-width: 768px) {
    .poster-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .conference-poster-section h2 {
        font-size: 2rem;
    }
    
    .poster-display,
    .poster-info {
        padding: 25px;
    }
    
    .conference-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .conference-actions .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
} 

/* Search results dropdown style for blue theme */
#searchResults {
    color: #222;
}

/* Mark highlight for search */
mark {
    background: #ffd700;
    color: #222;
    border-radius: 3px;
    padding: 0 2px;
} 