:root {
    --bg-color: #0a192f;
    --text-color: #e6f1ff;
    --accent-color: #d4af37;
    --secondary-color: #172a45;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #112240 0%, #0a192f 100%);
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 2s ease-in-out;
}

.logo-svg {
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: float 6s ease-in-out infinite;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-color);
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.highlight {
    color: var(--accent-color);
}

.slogan {
    font-size: 1.5rem;
    font-style: italic;
    color: #8892b0;
    margin-top: 1rem;
    max-width: 800px;
}

.bible-ref {
    display: block;
    /* Ensures it sits on its own line */
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.8;
    animation: fadeIn 3s ease-in-out, pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    from {
        text-shadow: 0 0 2px rgba(212, 175, 55, 0.2);
    }

    to {
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    }
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    margin-bottom: 6rem;
    text-align: center;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background: var(--accent-color);
    margin: 0.5rem auto 0;
}

.intro p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ccd6f6;
}

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

.product-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-card p {
    margin-bottom: 2rem;
    color: #8892b0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(212, 175, 55, 0.1);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(136, 146, 176, 0.1);
    color: #8892b0;
    border-radius: 20px;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #020c1b;
    color: #8892b0;
    margin-top: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .slogan {
        font-size: 1.2rem;
    }

    .logo-svg {
        width: 100px;
        height: 100px;
    }
}