/*
Theme Name: HSFC Scholarship Theme
Theme URI: https://example.com/
Author: Holy Spirit Fathers Club
Author URI: https://example.com/
Description: Custom theme for the Holy Spirit Fathers Club scholarship and donor website.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: hsfc
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1d2733;
    background: #ffffff;
}

a {
    color: #0A2342;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout containers */
.site-header,
.site-footer {
    background: #0A2342;
    color: #ffffff;
}

.site-header-inner,
.site-footer-inner,
.hsfc-section-inner,
.hsfc-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

/* Header */
.site-branding h1,
.site-branding p {
    margin: 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-title a {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

.site-tagline {
    font-size: 0.9rem;
    opacity: 0.85;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffff;
    font-weight: 500;
}

.main-navigation .donate-link a {
    background: #D4AF37;
    color: #0A2342;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.main-navigation .donate-link a:hover {
    background: #b89220;
}

/* Footer */
.site-footer {
    margin-top: 3rem;
    font-size: 0.9rem;
}

.site-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

/* Shared section styles */
.hsfc-section-inner {
    padding: 3rem 1.5rem;
}

.hsfc-section-inner h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #0A2342;
}

.hsfc-section-intro {
    max-width: 640px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #4a5563;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.btn-gold {
    background: #D4AF37;
    color: #0A2342;
}

.btn-gold:hover {
    background: #b89220;
    color: #ffffff;
}

.btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0A2342;
}

.btn-full {
    width: 80%;
    text-align: center;
    background: #0A2342;
    color: #ffffff;
}

.btn-full:hover {
    background: #07172c;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Links styled as buttons */
.link-btn {
    font-weight: 600;
    color: #0A2342;
    text-decoration: none;
}

.link-btn:hover {
    text-decoration: underline;
}

/* Hero */
.hsfc-home {
    /* wrapper for homepage */
}

.hsfc-hero {
    background: linear-gradient(135deg, #0A2342, #15294b);
    color: #ffffff;
    padding: 4rem 1.5rem 3rem;
}

.hsfc-hero-inner {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    align-items: center;
}

.hsfc-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hsfc-hero p {
    margin-bottom: 1rem;
}

.hsfc-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.hsfc-hero-subnote {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hsfc-hero-card {
    background: #ffffff;
    color: #0A2342;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hsfc-hero-card h2 {
    margin-top: 0;
}

/* Impact Stats */
.hsfc-impact {
    background: #f3f4f6;
}

.hsfc-impact-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 1.5rem;
}

.impact-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: #ffffff;
}

.impact-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0A2342;
}

.impact-label {
    display: block;
    margin-top: 0.25rem;
    color: #4b5563;
}

/* Donation Ladder */
.hsfc-ladder {
    background: #ffffff;
}

.hsfc-ladder-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin-top: 2rem;
}

.ladder-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.ladder-card h3 {
    margin-bottom: 0.5rem;
    color: #0A2342;
}

.ladder-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.hsfc-center-link {
    margin-top: 2rem;
    text-align: center;
}

.hsfc-center-link a {
    color: #0A2342;
    font-weight: 600;
}

/* Pathways */
.hsfc-pathways-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 1.5rem;
}

.path-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

/* Scholars */
.hsfc-scholars-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 1.5rem;
}

.scholar-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.scholar-meta {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Testimonial */
.hsfc-testimonial {
    background: #0A2342;
    color: #ffffff;
    text-align: center;
    padding: 3rem 1.5rem;
}

.hsfc-testimonial blockquote {
    font-size: 1.3rem;
    max-width: 720px;
    margin: 0 auto 1rem;
    font-style: italic;
}

.testimonial-name {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Events */
.hsfc-events {
    background: #f3f4f6;
}

.hsfc-events-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin-top: 1.5rem;
}

.event-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

/* Final CTA */
.hsfc-final-cta {
    background: #0A2342;
    color: #ffffff;
    text-align: center;
}

.hsfc-final-cta h2 {
    color: #ffffff;
}

.hsfc-final-cta p {
    margin-bottom: 1.5rem;
}

/* Main content (other pages) */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hsfc-hero-inner {
        grid-template-columns: 1fr;
    }

    .hsfc-hero {
        text-align: left;
    }

    .hsfc-hero-cta {
        justify-content: flex-start;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}
/* --------------------------------------------
   DONATE PAGE – Enhanced Tabs, Progress, Donor Wall
   -------------------------------------------- */

/* Page header */
.hsfc-donate-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hsfc-donate-page .page-header h1 {
    color: #0A2342;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hsfc-donate-page .page-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #4a5563;
    font-size: 1.05rem;
}

/* Progress Bar */
.hsfc-donate-progress {
    margin-bottom: 2.5rem;
}

.hsfc-donate-progress .progress-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    font-size: 0.95rem;
    color: #374151;
}

.hsfc-donate-progress .progress-bar-outer {
    margin-top: 0.75rem;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    height: 14px;
}

.hsfc-donate-progress .progress-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #f3d67c);
    border-radius: 999px;
    transition: width 0.5s ease;
}

.hsfc-donate-progress .progress-caption {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #6b7280;
}

/* Layout Columns */
.hsfc-donate-main {
    margin-top: 1.5rem;
}

.hsfc-donate-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .hsfc-donate-columns {
        grid-template-columns: 1fr;
    }
}

/* Tabs */
.hsfc-donate-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    background: #f3f4f6;
    padding: 0.25rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hsfc-donate-tabs .donate-tab {
    border: none;
    background: transparent;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    cursor: pointer;
    color: #4b5563;
    font-weight: 500;
}

.hsfc-donate-tabs .donate-tab.active {
    background: #0A2342;
    color: #ffffff;
}

/* Panels */
.hsfc-donate-panel {
    display: none;
}

.hsfc-donate-panel.active {
    display: block;
}

/* Tier Cards */
.hsfc-donate-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.donate-tier {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.donate-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.12);
}

.donate-tier h3 {
    color: #0A2342;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.donate-tier .donate-amount {
    color: #D4AF37;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

/* Buttons inside tiers */
.hsfc-donate-page .btn.btn-small {
    margin-top: 0.75rem;
    width: 80%;
    text-align: center;
    background: #D4AF37;
    color: #0A2342;
    border: none;
}

.hsfc-donate-page .btn.btn-small:hover {
    background: #b89220;
    color: #ffffff;
}

/* Right Column */
.hsfc-donate-right {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
}

.hsfc-donate-right h2 {
    color: #0A2342;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.hsfc-donate-right p {
    color: #4a5563;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hsfc-donate-right form {
    margin: 1.5rem 0;
}

.hsfc-donate-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    line-height: 1.4;
}

.hsfc-donate-right .btn-gold {
    width: 100%;
    font-size: 1.05rem;
}

/* Donor Wall */
.hsfc-donor-wall {
    background: #f3f4f6;
    margin-top: 3rem;
    border-radius: 0;
}

.hsfc-donor-wall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.donor-wall-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.donor-wall-card h3 {
    color: #0A2342;
    margin-bottom: 0.75rem;
}

.donor-wall-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #4b5563;
    font-size: 0.95rem;
}

/* APPLY PAGE STYLES */

.hsfc-apply-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-apply-page .page-header h1 {
    color: #0A2342;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.hsfc-apply-page .page-header p {
    max-width: 720px;
    margin: 0 auto;
    color: #4a5563;
}

/* Instructions list */
.hsfc-apply-instructions ol {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    padding-left: 1.5rem;
    color: #374151;
}

/* Form wrapper */
.hsfc-apply-form-wrapper {
    background: #f3f4f6;
    border-radius: 0;
}

.hsfc-apply-form-embed {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* THANK YOU PAGE */
.hsfc-apply-thankyou-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-apply-thankyou-page .page-header h1 {
    color: #0A2342;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.hsfc-apply-thankyou-page .page-header .subhead {
    color: #4a5563;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

.hsfc-apply-thankyou-page .path-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.06);
}

.hsfc-apply-thankyou-page .btn-gold {
    margin-top: 1rem;
}

/* APPLY BUTTON STYLE */
.hsfc-apply-start {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.2rem;
}

/* List spacing */
.hsfc-apply-steps {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    padding-left: 1.5rem;
    color: #374151;
    line-height: 1.65;
}

.hsfc-apply-note {
    text-align: center;
    font-size: 1rem;
    color: #4b5563;
    margin-top: 1rem;
}

/* --------------------------------------------
   IMPACT DASHBOARD PAGE
   -------------------------------------------- */

.hsfc-impact-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-impact-page .page-header h1 {
    color: #0A2342;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hsfc-impact-page .impact-tagline {
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Metrics Grid */
.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.impact-metric-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.impact-metric-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    color: #0A2342;
    font-size: 1.1rem;
}

.impact-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.3rem;
}

.impact-label {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Year-over-year table */
.impact-yoy {
    background: #f9fafb;
    border-radius: 0;
}

.impact-yoy-table {
    max-width: 760px;
    margin: 1.5rem auto 0;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.impact-yoy-row {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1.5fr 1.5fr;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.impact-yoy-header {
    background: #0A2342;
    color: #ffffff;
    font-weight: 600;
}

.impact-yoy-row:nth-child(even):not(.impact-yoy-header) {
    background: #f3f4f6;
}

/* Story highlight */
.impact-story {
    background: #0A2342;
    color: #ffffff;
}

.impact-story-inner {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    align-items: center;
}

.impact-story-text h2 {
    color: #ffffff;
}

.impact-story-text p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.impact-story-meta {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.impact-story-side .impact-story-stat {
    background: #111827;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.impact-story-side .impact-number {
    font-size: 2rem;
    color: #D4AF37;
}

/* Final CTA */
.impact-final-cta {
    text-align: center;
}

.impact-final-cta p {
    max-width: 640px;
    margin: 0.5rem auto 1.5rem;
}

.impact-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 900px) {
    .impact-story-inner {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------
   GUARDIAN ANGELS SOCIETY PAGE
   -------------------------------------------- */

.hsfc-guardian-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-guardian-page .page-header h1 {
    color: #0A2342;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hsfc-guardian-page .guardian-tagline {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.05rem;
}

/* Why Monthly */
.guardian-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.guardian-why-card {
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* Tiers */
.guardian-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.guardian-tier-card {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.guardian-tier-card h3 {
    margin-top: 0;
    color: #0A2342;
    font-size: 1.2rem;
}

.guardian-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.4rem;
}

.guardian-perks {
    margin: 0.75rem 0 0.75rem;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    color: #4b5563;
}

/* Highlight tier */
.highlight-tier {
    border: 2px solid #D4AF37;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

.guardian-badge {
    position: absolute;
    top: -0.75rem;
    right: 1.25rem;
    background: #D4AF37;
    color: #0A2342;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Buttons in tiers */
.hsfc-guardian-page .btn-small {
    width: 80%;
    text-align: center;
    background: #D4AF37;
    color: #0A2342;
    border: none;
    margin-top: 0.75rem;
}

.hsfc-guardian-page .btn-small:hover {
    background: #b89220;
    color: #ffffff;
}

/* Guardian impact */
.guardian-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.guardian-impact-card {
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* FAQ */
.guardian-faq {
    background: #f3f4f6;
    border-radius: 0;
}

.guardian-faq-item + .guardian-faq-item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.guardian-faq-item h3 {
    color: #0A2342;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

/* Final CTA */
.guardian-final-cta {
    text-align: center;
}

.guardian-final-cta p {
    max-width: 640px;
    margin: 0.5rem auto 1.5rem;
}

.guardian-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* --------------------------------------------
   MAJOR GIFTS & LEGACY PAGE
   -------------------------------------------- */

.hsfc-major-gifts-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-major-gifts-page .page-header h1 {
    color: #0A2342;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hsfc-major-gifts-page .major-tagline {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.05rem;
}

/* Why Major Gifts */
.major-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.major-why-card {
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* Ways to Give */
.major-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.major-way-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* Examples */
.major-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.major-example-card {
    text-align: center;
    background: #0A2342;
    color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
}

.major-example-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #D4AF37;
}

/* Conversation */
.major-conversation {
    text-align: center;
}

.major-conversation p {
    max-width: 640px;
    margin: 0.5rem auto 1.5rem;
}

.major-conversation-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.major-disclaimer {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* --------------------------------------------
   CORPORATE SPONSORSHIPS PAGE
   -------------------------------------------- */

.hsfc-corporate-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-corporate-page .page-header h1 {
    color: #0A2342;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hsfc-corporate-page .corporate-tagline {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.05rem;
}

/* Why Partner */
.corporate-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.corporate-why-card {
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* Levels */
.corporate-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.corporate-level-card {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.corporate-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.4rem;
}

.corporate-level-card ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.corporate-badge {
    position: absolute;
    top: -0.75rem;
    right: 1.2rem;
    background: #D4AF37;
    color: #0A2342;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Impact */
.corporate-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.corporate-impact-card {
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* Next steps */
.corporate-next-steps {
    text-align: center;
}

.corporate-next-steps p {
    max-width: 640px;
    margin: 0.5rem auto 1.5rem;
}

.corporate-next-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.corporate-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* --------------------------------------------
   ANNUAL REPORT PAGE
   -------------------------------------------- */

.hsfc-annual-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-annual-page .page-header h1 {
    color: #0A2342;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hsfc-annual-page .annual-tagline {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.05rem;
}

/* Letter */
.annual-letter-body {
    max-width: 720px;
    margin: 0 auto;
    color: #374151;
    line-height: 1.7;
}

/* Financials */
.annual-financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.annual-financial-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.annual-financial-card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.annual-financial-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Stories */
.annual-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.annual-story-card {
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* Download */
.annual-download {
    text-align: center;
}

.annual-download p {
    max-width: 640px;
    margin: 0.5rem auto 1.5rem;
}

.annual-download-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* --------------------------------------------
   PRIMARY NAV DROPDOWN / "GIVE" MENU
   -------------------------------------------- */

/* Base nav is already flex; we add dropdown styling */
.main-navigation ul li {
    position: relative;
}

/* Hide submenus by default */
.main-navigation ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #0A2342;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    padding: 0.5rem 0;
    display: none;
    z-index: 50;
}

/* Submenu list style */
.main-navigation ul li ul li {
    display: block;
    white-space: nowrap;
}

/* Submenu links */
.main-navigation ul li ul li a {
    display: block;
    padding: 0.45rem 1rem;
    font-size: 0.95rem;
}

/* Hover to open dropdown on desktop */
.main-navigation ul li.menu-item-has-children:hover > ul {
    display: block;
}

/* Optional: caret indicator for parent items */
.main-navigation ul li.menu-item-has-children > a::after {
    content: " ▾";
    font-size: 0.75rem;
}

/* Mobile-friendly tweak: show submenu stacked for small screens */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .main-navigation ul li {
        position: static;
    }

    .main-navigation ul li ul {
        position: static;
        box-shadow: none;
        border-radius: 0.5rem;
        margin-top: 0.25rem;
        background: #0D2B52;
    }

    .main-navigation ul li.menu-item-has-children > ul {
        display: none;
    }

    /* Simple tap-to-toggle behavior via :focus-within (no JS needed) */
    .main-navigation ul li.menu-item-has-children:focus-within > ul,
    .main-navigation ul li.menu-item-has-children:active > ul {
        display: block;
    }

    .main-navigation ul li.menu-item-has-children > a::after {
        content: " ▸";
    }

    .main-navigation ul li.menu-item-has-children:focus-within > a::after,
    .main-navigation ul li.menu-item-has-children:active > a::after {
        content: " ▾";
    }
}

/* --------------------------------------------
   GIVE MENU ICONS (using emojis/icons via ::before)
   -------------------------------------------- */

.main-navigation .give-donate > a::before,
.main-navigation .give-guardian > a::before,
.main-navigation .give-impact > a::before,
.main-navigation .give-major > a::before,
.main-navigation .give-corporate > a::before,
.main-navigation .give-alumni > a::before,
.main-navigation .give-parish > a::before {
    display: inline-block;
    margin-right: 0.35rem;
    font-size: 0.95em;
}

/* Individual icons */
.main-navigation .give-donate > a::before {
    content: "❤";
}

.main-navigation .give-guardian > a::before {
    content: "🕊";
}

.main-navigation .give-impact > a::before {
    content: "📊";
}

.main-navigation .give-major > a::before {
    content: "🕯";
}

.main-navigation .give-corporate > a::before {
    content: "🤝";
}

.main-navigation .give-alumni > a::before {
    content: "🎓";
}

.main-navigation .give-parish > a::before {
    content: "⛪";
}

.main-navigation .give-ways > a::before {
    content: "✨";
    display: inline-block;
    margin-right: 0.35rem;
    font-size: 0.95em;
}

/* --------------------------------------------
   WAYS TO GIVE PAGE
   -------------------------------------------- */

.hsfc-ways-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-ways-page .page-header h1 {
    color: #0A2342;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hsfc-ways-page .ways-tagline {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.05rem;
}

/* Cards grid */
.ways-grid-section {
    padding-top: 1rem;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ways-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.ways-card h2 {
    margin-top: 0;
    color: #0A2342;
}

.ways-card ul {
    margin: 0.75rem 0 1rem;
    padding-left: 1.25rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.ways-card .btn-small {
    margin-right: 0.5rem;
}

/* Impact CTA */
.ways-impact-cta {
    text-align: center;
}

.ways-impact-cta p {
    max-width: 640px;
    margin: 0.5rem auto 1.5rem;
}

.ways-impact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Impact stories cards */
.hsfc-impact-stories-page .impact-story-card {
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* Subtle metadata style */
.impact-story-meta {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Event pages: align lists nicely */
.hsfc-event-raffle-page ul,
.hsfc-event-dinner-page ul,
.hsfc-event-golf-page ul {
    padding-left: 1.25rem;
    color: #374151;
}

/* Event pages buttons */
.hsfc-event-raffle-page .btn-gold,
.hsfc-event-dinner-page .btn-gold,
.hsfc-event-golf-page .btn-gold {
    margin-top: 1rem;
}

/* --------------------------------------------
   SCHOLARSHIP CATEGORY COMING SOON PAGES
   -------------------------------------------- */

.hsfc-k8-scholarship-page .page-header,
.hsfc-hs-scholarship-page .page-header,
.hsfc-college-scholarship-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-k8-scholarship-page .page-header h1,
.hsfc-hs-scholarship-page .page-header h1,
.hsfc-college-scholarship-page .page-header h1 {
    color: #0A2342;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.hsfc-k8-scholarship-page .page-header .subhead,
.hsfc-hs-scholarship-page .page-header .subhead,
.hsfc-college-scholarship-page .page-header .subhead {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.02rem;
}

/* Space buttons a bit */
.hsfc-k8-scholarship-page .btn-gold,
.hsfc-hs-scholarship-page .btn-gold,
.hsfc-college-scholarship-page .btn-gold {
    margin-top: 1rem;
}

/* --------------------------------------------
   SCHOLARSHIPS OVERVIEW PAGE
   -------------------------------------------- */

.hsfc-scholarships-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfc-scholarships-page .page-header h1 {
    color: #0A2342;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hsfc-scholarships-page .scholarships-tagline {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.05rem;
}

/* Pathways grid (reuses existing path-card styles) */
.scholarships-pathways .hsfc-pathways-grid {
    margin-top: 1.5rem;
}

/* Process steps */
.scholarships-steps {
    max-width: 760px;
    margin: 1.5rem auto 1.75rem;
    padding-left: 1.5rem;
    color: #374151;
    line-height: 1.7;
}

.scholarships-steps li + li {
    margin-top: 0.5rem;
}

/* Process CTA buttons */
.scholarships-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Eligibility cards */
.scholarships-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.eligibility-card {
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* Stories / impact grid */
.scholarships-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stories-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* Contact CTA */
.scholarships-contact {
    text-align: center;
}

.scholarships-contact p {
    max-width: 640px;
    margin: 0.5rem auto 1.25rem;
}

/* HOME PAGE LAYOUT */

.hsfc-home-page .home-hero {
    background: #0A2342;
    color: #ffffff;
    padding: 3rem 0 2.5rem;
}

.home-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-text {
    max-width: 720px;
    text-align: center;
}

.home-hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.home-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.home-hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-mission-strip {
    background: #f3f4f6;
}

.home-mission-strip p {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    color: #374151;
}

/* Impact section */

.home-impact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.home-impact-list ul {
    padding-left: 1.25rem;
    color: #374151;
}

.home-impact-story blockquote {
    margin: 0 0 0.75rem;
    font-style: italic;
    color: #111827;
}

.home-impact-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

/* Events & volunteers */

.home-events-cta,
.home-volunteers-cta,
.home-ways-cta,
.home-final-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.home-volunteers-grid ul,
.home-ways-list ul {
    max-width: 700px;
    margin: 1rem auto 0;
    padding-left: 1.25rem;
    color: #374151;
}

/* Final CTA */

.home-final-cta {
    text-align: center;
}

.home-final-cta p {
    max-width: 640px;
    margin: 0.5rem auto 1.25rem;
}

.home-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 900px) {
    .home-impact-grid {
        grid-template-columns: 1fr;
    }
}


