/* Styles unique to belief.php.
   Everything shared (tokens, header, nav, drawer, footer, layout,
   cards, responsive rules) lives in style.css. */

.page-hero {
    position: relative;
    height: 52vh;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../../pic/ch1.jpg') center/cover no-repeat;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,33,88,0.82) 0%, rgba(26,79,160,0.60) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 2rem;
    animation: heroUp 0.9s ease-out;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,162,39,0.22);
    border: 1px solid rgba(201,162,39,0.5);
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.page-hero h1 em { color: var(--gold-light); font-style: normal; }

.page-hero p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    opacity: 0.88;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
}

.breadcrumb-bar .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb-bar a { color: var(--blue); text-decoration: none; }

.breadcrumb-bar a:hover { text-decoration: underline; }

.breadcrumb-bar i { font-size: 0.65rem; }

.section-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
}

.section-heading .heading-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-body { padding: 1.75rem; }

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.accordion { margin-top: 1.25rem; }

.accordion-item { border-bottom: 1px solid var(--border); }

.accordion-item:last-child { border-bottom: none; }

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    gap: 0.75rem;
    transition: color 0.2s;
}

.accordion-header:hover { color: var(--blue); }

.accordion-header .belief-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--cream);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(201,162,39,0.3);
}

.accordion-header .belief-title { flex: 1; }

.accordion-chevron {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.accordion-header.open .accordion-chevron { transform: rotate(180deg); }

.accordion-header.open { color: var(--blue); }

.accordion-body {
    display: none;
    padding: 0 0.25rem 1rem 2.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    animation: accOpen 0.2s ease;
}

.accordion-body.open { display: block; }

@keyframes accOpen {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sidebar-card-header.blue { background: var(--blue); }

.sidebar-card-header.blue i, .sidebar-card-header.blue h3 { color: var(--white); }

.belief-jump-list { list-style: none; }

.belief-jump-list li { border-bottom: 1px solid var(--border); }

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

.belief-jump-list a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    font-size: 0.84rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.belief-jump-list a:hover { color: var(--blue); }

.belief-jump-list .bnum {
    min-width: 22px;
    height: 22px;
    background: var(--cream);
    border: 1px solid rgba(201,162,39,0.3);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list { list-style: none; }

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.contact-list li i { color: var(--gold); margin-top: 2px; width: 14px; text-align: center; }

.contact-list a { color: var(--blue); text-decoration: none; }

.contact-list a:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.85rem; }
}
