@import url(style.css);
/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 26, 47, 0.8), rgba(10, 26, 47, 0.9)), 
                url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
}

/* Featured Articles */
.section-title {
    text-align: center;
    margin: 4rem 0 2rem;
    color: var(--gold);
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0.5rem auto;
    border-radius: 2px;
}

.article-card {
    background: var(--light-navy);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
}

.article-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.article-excerpt {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gold);
    font-size: 0.8rem;
}

/* Word of the Day */
.scripture-card {
    background: linear-gradient(135deg, var(--light-navy), var(--dark-navy));
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.scripture-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
    animation: glow 8s infinite linear;
}

.scripture-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.scripture-text {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: white;
    animation: textGlow 3s infinite alternate;
}

.scripture-reference {
    color: var(--light-gold);
    font-size: 1.1rem;
}

/* Categories */
.categories {
    margin: 4rem auto;
}

.category-card {
    background: var(--light-navy);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    background: var(--dark-navy);
    border: 1px solid var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.category-desc {
    color: #ccc;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-desc {
    text-align: center;
    margin-bottom: 2rem;
    color: #ccc;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    color: white;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #c19b2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
