:root {
    --bg-dark: #003a00;
    --bg-light: #008a00;
    --text-main: #ffffff;
    --accent-red: #cc0000;
    --accent-gold: #ffcc00;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Background Effects */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, var(--bg-light) 0%, var(--bg-dark) 80%);
    z-index: -2;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15));
    background-size: 100% 4px;
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 1rem 4rem;
    /* Increased padding slightly for more visual space */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(0, 30, 0, 0.8), rgba(0, 20, 0, 0.95)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    border-bottom: 2px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-logo {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
}

.header-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.header-logo span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .header-logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 2rem;
    }
}

.brand {
    margin-bottom: 1.5rem;
}

.badge {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
    font-family: 'Oswald', sans-serif;
}

.title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.metallic-text {
    display: block;
    font-size: clamp(3.5rem, 12vw, 8rem);
    background: linear-gradient(to bottom, #f0f0f0 0%, #a0a0a0 40%, #ffffff 50%, #606060 60%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.5));
    letter-spacing: -2px;
    margin-top: -10px;
}

.scripture {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 3vw, 1.2rem);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Event Details */
.event-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.detail-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.detail-card i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.detail-card div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.detail-card strong {
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.detail-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Main Content */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    flex: 1;
    width: 100%;
}

.welcome-banner {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-banner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.welcome-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Action Cards */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.action-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: white;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.action-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.whatsapp-card:hover .card-icon {
    background: #25D366;
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.materials-card:hover .card-icon {
    background: var(--accent-gold);
    color: #000;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex: 1;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #25D366;
    color: #000;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.action-card:hover .btn-primary {
    background: #1ebc59;
    padding-right: 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.action-card:hover .btn-primary i {
    transform: translateX(5px);
}

.action-card:hover .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    padding-right: 1.5rem;
}

.action-card:hover .btn-secondary i {
    transform: translateX(5px);
}

.btn-primary i,
.btn-secondary i {
    transition: transform 0.3s ease;
}

.glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    pointer-events: none;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.whatsapp-card .glow {
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
}

.materials-card .glow {
    background: radial-gradient(circle, rgba(255, 204, 0, 0.3) 0%, transparent 70%);
}

.action-card:hover .glow {
    opacity: 1;
    transform: scale(1.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

footer p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.sub-footer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem 1rem;
    }

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

    .detail-card {
        width: 100%;
    }

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