/* Base styles for Words to Pray */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* --- Hero Section --- */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a2332;
    position: relative;
    min-height: 70vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-section h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* --- ACTS Explainer --- */
.acts-explainer .card {
    border-top: 3px solid var(--bs-primary);
    text-align: center;
}

.acts-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        animation-delay: 0ms !important;
    }
}
