:root {
            --gold: #D4AF37;
            --dark-gold: #B8941F;
            --black: #1a1a1a;
            --light-black: #2d2d2d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: var(--black) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            transition: all 0.3s;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
        }

        .navbar-brand {
            color: var(--gold) !important;
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            font-size: 2rem;
        }

        .nav-link {
            color: white !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1200') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero .gold-text {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--black);
            padding: 15px 40px;
            border: none;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-gold:hover {
            background: var(--dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        /* Welcome Section */
        .welcome {
            padding: 100px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: var(--black);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }

        .section-title p {
            color: #666;
            font-size: 1.2rem;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--light-black);
            color: white;
        }

        .service-card {
            background: var(--black);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .service-card i {
            font-size: 3.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        /* Events Section */
        .events {
            padding: 100px 0;
            background: white;
        }

        .event-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            height: 100%;
        }

        .event-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .event-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .event-card-body {
            padding: 30px;
        }

        .event-date {
            background: var(--gold);
            color: var(--black);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Footer */
        .footer {
            background: var(--black);
            color: white;
            padding: 60px 0 20px;
        }

        .footer h4 {
            color: var(--gold);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--gold);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #999;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .section-title h2 {
                font-size: 2rem;
            }
        }
        .btn-primary {
           background-color: gold;
           color: black;
           border: 1px solid gold;
        }
        .btn:hover {
            color: white;
            background-color: gold;
            border-color: gold;
        }
        .text-primary {
            --bs-text-opacity: 1;
            color: gold !important;
        }
        
        .prayer-request {
            background-color: var(--light-gray);
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .prayer-form {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
        }
        
        .form-control {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-gold {
            background-color: var(--gold);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }
        
        .btn-gold:hover {
            background-color: #b8941f;
            color: white;
            transform: translateY(-2px);
        }
        
        .privacy-note {
            font-size: 0.85rem;
            color: #666;
            margin-top: 15px;
            text-align: center;
        }
        
        .prayer-icon {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .prayer-icon i {
            font-size: 48px;
            color: var(--gold);
        }
        
        .alert {
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .g-recaptcha {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
        }