:root {
    --primary: #D4AF37;
    /* Gold */
    --secondary: #FDFDFD;
    /* Pure White */
    --accent: #FFD700;
    --dark: #121212;
    --glass: rgba(255, 255, 255, 0.7);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.4);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body {
    background-color: var(--dark);
    color: var(--secondary);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    text-align: center;
    /* Global center alignment */
}

/* Background Texture */
.marble-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/white-marble.png');
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

/* Header/Nav */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.5s;
}

.nav-container.scrolled {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: var(--gold-glow);
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    margin-left: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.5), var(--dark)),
        url('tomb.png');
    background-size: cover;
    background-position: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    max-width: 1000px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    word-break: keep-all;
    /* Prevent awkward breaks */
}

.hero-title span {
    color: var(--primary);
    display: block;
    font-size: 3.5rem;
    letter-spacing: 15px;
}

.hero-tagline {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.btn-soul {
    background: transparent;
    border: 3px solid var(--primary);
    color: var(--primary);
    padding: 25px 80px;
    /* Larger size */
    font-family: var(--font-heading);
    font-size: 1.6rem;
    /* Larger font */
    font-weight: 900;
    letter-spacing: 4px;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-soul:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

/* Section: The Word */
.section-word {
    padding: 150px 10%;
    background: var(--dark);
    text-align: center;
    position: relative;
}

.scripture-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.scripture-card::before {
    content: '1 COR 15:22';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.5;
}

.scripture-text {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.4;
    color: var(--secondary);
    margin-bottom: 40px;
    word-break: keep-all;
    /* Prevent orphans */
}

.scripture-meaning {
    font-size: 1.2rem;
    color: #999;
    max-width: 900px;
    margin: 0 auto;
    word-break: keep-all;
}

/* Section: The Face of Grace */
.section-grace {
    padding: 150px 10%;
    display: flex;
    flex-direction: column;
    /* Force stack for center alignment */
    align-items: center;
    gap: 60px;
}

.grace-image {
    flex: 1;
}

.grace-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--gold-glow);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.grace-content {
    flex: 1;
}

.grace-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.grace-text {
    font-size: 1.1rem;
    color: #AAA;
    margin-bottom: 30px;
}

/* Transitions */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .nav-links {
        display: none;
    }

    .section-grace {
        flex-direction: column;
        text-align: center;
    }
}