/* Brochure page styles */

/* Navigation bar */
.brochure-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b6914;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}

.back-link:hover {
    color: #b8960c;
}

/* Hero cover */
.brochure-hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brochure-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.brochure-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.3));
}

.brochure-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px;
}

.brochure-hero-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 16px;
}

.brochure-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
}

.brochure-hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.03em;
}

/* Article body */
.brochure-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 40px;
}

.article-section {
    margin-bottom: 36px;
}

.article-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #3a3225;
    margin-bottom: 16px;
}

.article-section p:last-child {
    margin-bottom: 0;
}

.article-section em {
    color: #5a4a32;
    font-style: italic;
}

.text-red {
    color: #c0392b;
}

/* Section headings */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #3a3225;
    margin-bottom: 16px;
}

.section-heading--red {
    color: #c0392b;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Proverb blockquote */
.proverb {
    margin: 28px 0;
    padding: 24px 28px;
    background: #f7f4ee;
    border-left: 4px solid #b8960c;
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a3f30;
}

/* Highlight section */
.article-section--highlight {
    background: linear-gradient(135deg, #fdf8ed, #f7f0e0);
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid rgba(184, 150, 12, 0.15);
}

.article-section--highlight h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #3a3225;
    margin: 20px 0 12px;
}

/* Action list */
.action-list {
    list-style: none;
    padding: 0;
}

.action-list li {
    position: relative;
    padding: 12px 0 12px 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3225;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.action-list li:last-child {
    border-bottom: none;
}

.action-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: #c0392b;
    border-radius: 50%;
}

/* Prayer section */
.article-section--prayer {
    background: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.prayer {
    margin: 20px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f9f6f0, #f0ebe3);
    border-left: 4px solid #d4af37;
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.9;
    color: #4a3f30;
}

/* Article image */
.article-image {
    margin: 40px -24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.article-image img {
    width: 100%;
    display: block;
}

/* Divider */
.article-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8960c, transparent);
    margin: 48px auto;
}

/* Verse */
.article-verse {
    text-align: center;
    padding: 20px 0;
}

.article-verse p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #5a4a32;
    line-height: 1.7;
}

.article-verse cite {
    display: block;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
    color: #b8960c;
    letter-spacing: 0.05em;
}

/* Decision */
.article-decision {
    text-align: center;
    padding: 40px 0 20px;
}

.article-decision .section-heading {
    font-size: 1.4rem;
    color: #3a3225;
}

/* Responsive */
@media (max-width: 768px) {
    .brochure-hero {
        height: 55vh;
        min-height: 320px;
    }

    .brochure-hero-title {
        font-size: 2.6rem;
    }

    .brochure-article {
        padding: 40px 20px 30px;
    }

    .article-image {
        margin: 32px -20px;
    }

    .article-section--highlight,
    .article-section--prayer {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .brochure-hero-title {
        font-size: 2rem;
    }

    .brochure-hero {
        height: 45vh;
        min-height: 280px;
    }
}
