/* Made New in Christ - Shared Styles */

:root {
    --dark-blue: rgb(15, 90, 135);
    --light-blue: rgb(32, 130, 180);
    --light-blue-hover: rgb(40, 140, 195);
    --navy: #243752;
    --dark-navy: #1B2B4B;
    --off-white: #F5F5F5;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--navy);
    background: var(--off-white);
    line-height: 1.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(7, 74, 115, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(7, 74, 115, 0.05) 0%, transparent 40%);
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.logo-container svg {
    width: 120px;
    height: 160px;
    filter: drop-shadow(0 4px 20px rgba(32, 130, 180, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--dark-blue);
}

.hero-verse {
    font-size: 1.4rem;
    color: var(--light-blue);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-blue);
    margin-bottom: 0.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-reference {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    stroke: var(--light-blue);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Container & Section Styles */
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.container.narrow {
    max-width: 800px;
}

.section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* Scripture Section */
.scripture-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.scripture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.scripture-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--dark-blue);
}

.scripture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 43, 75, 0.1);
}

.scripture-card .verse {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.scripture-card .reference {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.scripture-card .quote-mark {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--dark-blue);
    opacity: 0.15;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    background: var(--off-white);
}

.content-section.white {
    background: var(--white);
}

.section-content {
    font-size: 1.15rem;
    color: #444;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.section-content strong {
    color: var(--navy);
}

.centered-intro {
    text-align: center;
    margin-bottom: 2rem;
}

/* Drop Cap - shared style */
.section-content p:first-of-type::first-letter,
.message-content p:first-of-type::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--light-blue);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
}

.section-content.no-drop-cap p:first-of-type::first-letter {
    font-size: inherit;
    float: none;
    margin: 0;
    color: inherit;
}

/* Message Section (index.html) */
.message-section {
    padding: 6rem 2rem;
    background: var(--off-white);
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444;
}

/* Highlight Box */
.highlight-box {
    background: var(--navy);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--light-blue);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-size: 1.2rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}

.highlight-box .reference {
    color: var(--light-blue);
    font-weight: 600;
    display: block;
    margin-top: 1rem;
    font-style: normal;
}

/* Steps (know-jesus.html) */
.steps-container {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    margin-bottom: 0;
    color: #444;
}

/* Prayer Section (know-jesus.html) */
.prayer-section {
    padding: 4rem 2rem;
    background: var(--navy);
}

.prayer-section .section-title {
    color: var(--white);
}

.prayer-intro {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prayer-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    border-left: 4px solid var(--light-blue);
    max-width: 700px;
    margin: 0 auto;
}

.prayer-text {
    color: var(--white);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.9;
}

.prayer-text p {
    margin-bottom: 1.5rem;
}

.prayer-text p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23074A73' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-section .subtitle {
    color: var(--light-blue);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* CTA Section - Light variant (know-jesus.html) */
.cta-section.light {
    background: var(--off-white);
    padding: 4rem 2rem;
}

.cta-section.light::before {
    display: none;
}

.cta-section.light h2 {
    font-size: 2.2rem;
    color: var(--navy);
}

.cta-section.light p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--light-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(32, 130, 180, 0.4);
}

/* Final Scripture */
.final-scripture {
    padding: 5rem 2rem;
    background: var(--off-white);
    text-align: center;
}

.final-scripture blockquote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.8rem;
    color: var(--navy);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.final-scripture cite {
    color: var(--dark-blue);
    font-style: normal;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

footer svg {
    width: 45px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-verse,
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        margin-bottom: 2.5rem;
    }

    .scripture-section {
        padding: 4rem 2rem;
    }

    .scripture-grid {
        grid-template-columns: 1fr;
    }

    .message-section {
        padding: 4rem 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .final-scripture {
        padding: 4rem 2rem;
    }

    .final-scripture blockquote {
        font-size: 1.4rem;
    }

    .highlight-box {
        padding: 2rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .prayer-box {
        padding: 1.5rem;
    }

    .prayer-text {
        font-size: 1.1rem;
    }
}
