/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* BACKGROUND IMAGE: Replace this URL with your church image */
    background: url('banner.webp') no-repeat center center/cover;
}

/* Dark Overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

/* Premium Glassmorphism Card */
.content-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.status-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.2);
    color: #ffd700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.subtitle {
    font-style: italic;
    color: #ccc;
    font-size: 1.1rem;
}

.divider {
    height: 1px;
    width: 60px;
    background: #ffd700;
    margin: 2rem auto;
}

.description {
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #bbb;
}

.info-item i {
    color: #ffd700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    .content-box { padding: 2rem 1.5rem; }
}