:root {
    --bg-dark: #0f0f0f;
    --bg-alt: #1a1616;
    --bg-red: #3a0808;
    --accent-red: #8B0000;
    --gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.5);
    --gold-light: #FFEA70;
    --text-light: #f5f5f5;
    --text-muted: #c0c0c0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: block;
    object-fit: contain;
    max-height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    box-shadow: 0 0 5px var(--gold-glow);
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(10, 0, 0, 0.95);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(139,0,0,0.5);
    z-index: 1;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    top: 100%;
    left: 0;
    flex-direction: column;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-transform: none;
    font-size: 0.9rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: rgba(139, 0, 0, 0.5);
    color: var(--gold-light);
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero-image {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--gold-glow));
    animation: pulse 3s infinite alternate;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-title span {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--gold-light);
}

.hero-vision {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-red), #600000);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.8), inset 0 0 10px rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(45deg, #a00000, var(--accent-red));
    color: var(--text-light);
    box-shadow: 0 0 25px var(--gold-glow);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-controls button {
    background: rgba(0,0,0,0.5);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--accent-red);
    color: var(--text-light);
    box-shadow: 0 0 15px var(--gold-glow);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Mission Section */
.mission {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-red));
}

.lead-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-muted);
}

.mission-box {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.glow-text {
    color: var(--gold);
    font-size: 2rem;
    text-shadow: 0 0 15px var(--gold-glow);
}

.scripture-ref {
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    color: var(--gold-light);
}

/* Pillars Section */
.pillars {
    background: url('hero-motif.png') center/cover no-repeat fixed;
    position: relative;
}

.pillars::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 0, 0, 0.95);
}

.pillars .container {
    position: relative;
    z-index: 2;
}

.pillars-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    color: var(--text-muted);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.5);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.8), 0 0 15px var(--gold-glow);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.pillar-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
}

.pillar-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.ref {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gold-light);
    font-family: var(--font-heading);
}

/* Beliefs / Accordion */
.beliefs {
    background: var(--bg-alt);
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 0, 0, 0.5);
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.1);
    border: none;
    text-align: left;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(139, 0, 0, 0.3);
}

.accordion-header.active {
    background: rgba(139, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content p {
    padding: 1.5rem;
    color: var(--text-muted);
}

/* Podcast Section */
.podcast {
    background: var(--bg-dark);
}

.podcast-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.podcast-info {
    flex: 1;
    min-width: 300px;
}

.podcast-info h3 {
    margin-bottom: 1rem;
}

.podcast-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.podcast-platforms {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.platform-link {
    color: var(--gold-light);
    margin: 0 0.5rem;
}

.platform-link:hover {
    color: #fff;
    text-shadow: 0 0 5px var(--gold-glow);
}

.podcast-player {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.player-mockup {
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.player-art {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 10px rgba(255,0,0,0.3);
}

.player-details h4 {
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
}

.player-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.play-btn {
    margin-left: auto;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: scale(1.05);
}

/* Visit Section */
.visit {
    background: linear-gradient(to top, var(--bg-alt), rgba(139, 0, 0, 0.1));
    border-top: 1px solid rgba(255, 215, 0, 0.05);
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.visit-card {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.5);
    border-color: var(--gold);
}

.visit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visit-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.visit-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 8px;
}

.contact-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
}

.captcha-container {
    display: flex;
    justify-content: center;
}

.captcha-mockup {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f9f9f9;
    padding: 0.8rem 1rem;
    border-radius: 3px;
    border: 1px solid #d3d3d3;
    color: #333;
    width: 100%;
    max-width: 300px;
}

.captcha-mockup input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.captcha-mockup label {
    margin-bottom: 0;
    color: #333;
    font-family: sans-serif;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #050000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(139, 0, 0, 0.5);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 10px var(--gold-glow);
}

.footer-logo p {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-scriptures h4 {
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-scriptures ul {
    list-style: none;
    color: var(--text-muted);
}

.footer-scriptures li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.credit {
    margin-top: 0.5rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    from {
        filter: drop-shadow(0 0 10px var(--gold-glow));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    }
}

@keyframes pulse {
    from {
        filter: drop-shadow(0 0 10px var(--gold-glow));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-links {
        gap: 1rem;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
    .brand-logo {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }
    
    .mission-box, .contact-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: 2px solid var(--gold);
    outline: none;
    background-color: var(--accent-red);
    color: var(--gold-light);
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 10px var(--gold-glow);
    transition: var(--transition);
    text-transform: uppercase;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
}

.scroll-top-btn.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 0 15px var(--gold-glow);
    transform: translateY(-3px);
}
