:root {
    --gold: #f5c76b;
    --gold-hover: #ffd98a;
    --dark-blue: #14202b;
    --deep-blue: #101722;
    --text: #2c3e50;
    --muted: #66707a;
    --light: #ffffff;
    --soft-bg: #f8f5ef;
    --border: #e6ded1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
}

a {
    color: inherit;
}

.welcome-banner {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    padding: 2rem;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.42),
            rgba(0, 0, 0, 0.48)
        ),
        url("../images/cross-light-sunrise.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.welcome-content {
    max-width: 950px;
    padding: 2rem;
}

.welcome-content h1 {
    font-size: clamp(3rem, 8vw, 6.25rem);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.65);
}

.tagline {
    font-size: clamp(1.25rem, 3vw, 2.15rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.65);
}

.intro {
    max-width: 780px;
    margin: 0 auto 2rem auto;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.button {
    display: inline-block;
    background: var(--gold);
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 9px 26px rgba(0, 0, 0, 0.32);
}

.content-section {
    padding: 4.75rem 1.5rem;
}

.content-section.alternate {
    background: var(--soft-bg);
}

.container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

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

h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 1.25rem;
}

h3 {
    color: var(--dark-blue);
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.12rem;
    margin-bottom: 1.35rem;
}

.lead {
    color: var(--muted);
    font-size: 1.22rem;
    text-align: center;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.call-to-action {
    background: linear-gradient(135deg, #152130, #30485f);
    color: var(--light);
    text-align: center;
    padding: 4.75rem 1.5rem;
}

.call-to-action h2 {
    color: var(--light);
}

.call-to-action p {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    color: #edf2f5;
}

.site-footer {
    background: var(--deep-blue);
    color: #c7d0d9;
    text-align: center;
    padding: 2rem 1rem;
}

.site-footer p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.site-footer a {
    color: var(--gold);
    text-decoration: none;
}

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

@media (max-width: 850px) {
    .welcome-banner {
        min-height: 78vh;
        padding: 1.5rem;
    }

    .welcome-content {
        padding: 1rem;
    }

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

    .content-section {
        padding: 3.5rem 1.25rem;
    }

    .call-to-action {
        padding: 3.5rem 1.25rem;
    }
}
