:root {
    --navy: #07002c;
    --gold: #ffde71;
    --light-gold: #F4E4A6;
    --dark-navy: #040016; 
    --light-navy: #1b1a40;
}

body {
    background-color: var(--navy);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(10, 26, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}





/* Footer */
.footer {
    background: var(--dark-navy);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-logo {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-navy);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

@keyframes glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .scripture-text {
        font-size: 1.4rem;
    }
    
    .newsletter {
        padding: 2rem 1.5rem;
    }
}




/* Redesign bootstrap classes */
.alert-danger {
    background-color: #8B0000 !important;
    color: white !important;
    border: none !important;
}
.alert-danger hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.alert-danger .close {
    color: white !important;
    opacity: 1 !important;
}

.alert-success {
    background-color: #004d00 !important;
    color: white !important;
    border: none !important;
}
.alert-success hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.alert-success .close {
    color: white !important;
    opacity: 1;
}
option{
    color: black !important;
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.subscribe-form .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}
.subscribe-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    outline: none;
    color: white;
}

.subscribe-form .widget-title{
    font-family: 'Playfair Display', serif;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    outline: none;
    color: white;
}
.subscribe-form .btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}
.subscribe-form .btn-gold:hover {
    background: #c19b2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
    color: var(--navy);
}