:root {
    /* Brand Colors - Based on user preference for peach/blue/white */
    --color-primary: #FFFFFF;
    --color-secondary: #FFF5F0;
    /* Light Peach */
    --color-background: #FAFAFA;

    /* Accents */
    --color-brand-peach: #FFAD90;
    --color-brand-blue: #6B9AC4;
    --color-brand-gradient: linear-gradient(135deg, #FFAD90 0%, #6B9AC4 100%);

    /* Text */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;

    /* Typography Updates to match the 'God's Children' PFP font (Serif) */
    --font-heading: 'Playfair Display', serif;
    /* Updated to Playfair for luxury/elegance */
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

/* Gradient Text for Main Headings (Optional, to tie in brand) */
.gradient-text {
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 3rem;
    }
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--color-brand-gradient);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 154, 204, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-brand-blue);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-brand-blue);
    color: var(--color-brand-blue);
}

.btn-outline:hover {
    background: var(--color-brand-blue);
    color: var(--color-white);
}

.btn-bg-gold {
    background: var(--color-brand-gradient);
    color: var(--color-white);
    border: none;
}

.btn-nav {
    background: var(--color-brand-gradient);
    color: var(--color-white);
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 0.8rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-text);
    letter-spacing: 0;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-brand-peach);
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 25px;
        align-items: center;
        font-weight: 500;
        font-size: 0.95rem;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 95vh;
    min-height: 600px;
    background-image: url('assets/images/hero-background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-white);
}

/* Use brand gradient in overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        linear-gradient(to bottom, rgba(255, 173, 144, 0.2), rgba(107, 154, 196, 0.4));
}

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

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 3rem;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.8rem;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 600px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Credibility Strip */
.credibility-strip {
    background-color: var(--color-white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.credibility-item .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-xs);
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.credibility-item p {
    font-weight: 600;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    letter-spacing: 0;
}

/* Emotional Section */
.emotional-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-secondary);
}

.emotional-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .emotional-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .emotional-text,
    .emotional-image {
        flex: 1;
    }

    .emotional-text {
        padding-right: var(--spacing-lg);
    }
}

.emotional-text h2 {
    color: var(--color-brand-blue);
    margin-bottom: var(--spacing-md);
}

.emotional-text p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.emotional-text .highlight {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    margin: var(--spacing-md) 0;
    display: block;
}

.emotional-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Testimony Section */
.testimony-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    text-align: center;
}

.testimony-card {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: var(--spacing-sm);
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimony-caption {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-top: var(--spacing-xs);
    font-style: italic;
}

.link-arrow {
    color: var(--color-brand-blue);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.link-arrow:hover {
    text-decoration: underline;
    color: var(--color-brand-peach);
}

/* Beliefs Section */
.beliefs-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-primary);
}

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

.belief-list {
    text-align: left;
    display: inline-block;
    margin-top: var(--spacing-md);
}

.belief-list li {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    padding-left: 1.5rem;
    text-indent: -1.5rem;
    color: var(--color-text);
}

/* Prayer Section */
.prayer-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F0 100%);
    text-align: center;
}

.prayer-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    border-top: 6px solid var(--color-brand-peach);
}

.prayer-text {
    font-style: italic;
    font-size: 1.3rem;
    color: #555;
    font-family: var(--font-accent);
    margin-bottom: var(--spacing-md);
}

.btn-amen {
    background: transparent;
    border: 2px solid var(--color-brand-blue);
    padding: 10px 30px;
    border-radius: 4px;
    color: var(--color-brand-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition);
}

.btn-amen:hover {
    background: var(--color-brand-blue);
    color: white;
}

.link-underline {
    color: var(--color-brand-peach);
    text-decoration: underline;
    font-weight: 600;
}

/* Community Section */
.community-section {
    padding: var(--spacing-xl) 0;
    background: #343434;
    /* Dark neutral base */
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    text-align: center;
}

/* Subtle gradient border top */
.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-brand-gradient);
}

.community-text h2 {
    color: var(--color-white);
}

.community-text p {
    color: #ddd;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto var(--spacing-md);
}

@media (min-width: 600px) {
    .email-form {
        flex-direction: row;
    }
}

.email-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.email-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 173, 144, 0.5);
}

.fine-print {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.6;
}

/* Footer - Updated to Light Theme */
.site-footer {
    background-color: var(--color-secondary);
    /* LIGHT background */
    color: var(--color-text);
    /* DARK text */
    padding: var(--spacing-lg) 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(107, 154, 196, 0.1);
    /* Subtle blue border */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
}

.footer-logo .logo-text {
    color: var(--color-text);
    /* Ensure visible on light bg */
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links a {
    color: var(--color-text-light);
}

.footer-links a:hover {
    color: var(--color-brand-blue);
}

.disclaimer {
    margin-top: 5px;
    font-size: 0.75rem;
    color: var(--color-text-light);
    /* Lighter dark, not white */
    opacity: 0.8;
}