/* ==========================================================================
   RESET & GLOBAL VARIABLES
   ========================================================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2DA7B0;    /* Rich Teal */
    --accent-color: #C98352;     /* Copper */
    --text-dark: #2F2F2F;        /* Body Text */
    --text-muted: #5C5C5C;       /* Muted Gray Text */
    --bg-light: #F1EFEC;         /* Light Gray */
    --white: #FAF9F6;            /* Warm White */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Lora', serif;
}

/* Scoped palette override removed — palette now applied globally via :root */

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Utilities */
.bg-gray { background-color: var(--bg-light); }
.bg-white { background-color: var(--white); }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }

section {
    padding: 100px 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.section-tagline {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Scoped override: 'What We Believe' subtitle only */
#beliefs .section-subtitle {
    font-size: 0.9rem;
    color: #8E8E8E;
}

/* Scoped override: 'Discipleship Journey' subtitle to match Beliefs subtitle */
#journey .section-subtitle {
    font-size: 0.9rem;
    color: #8E8E8E;
}

/* Scoped override: Schedule and Contact subtitles to match the same style */
#schedule .section-subtitle,
#contact .section-subtitle {
    font-size: 0.9rem;
    color: #8E8E8E;
}

#events .section-subtitle,
#give .section-subtitle {
    font-size: 0.9rem;
    color: #8E8E8E;
}

/* ==========================================================================
   TOP SOCIAL BAR (icon-only, sits above the header)
   ========================================================================== */
.top-social-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    height: 30px;
    padding: 0 5%;
    background-color: var(--primary-color);
    position: relative;
    z-index: 1001;
}

.top-social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: color 0.2s ease;
}

.top-social-bar a:hover {
    color: var(--accent-color);
}

.top-social-bar svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   TRANSPARENT HEADER (FLOATS ON TOP OF FULL-SCREEN HERO BANNER) - LOCKED
   ========================================================================== */
header {
    position: absolute;       /* Overlays on top of the hero banner */
    top: 30px;                /* Offset below the new top-social-bar */
    left: 0;
    width: 100%;
    background-color: transparent !important; /* 100% Transparent background */
    box-shadow: none !important;              /* Removes default shadows */
    backdrop-filter: none !important;         /* Removes blurring effects */
    padding: 25px 5%;
    z-index: 1000;
    transition: padding 0.3s ease;
}

/* Sticky state: once the user scrolls past the hero, the header fixes
   to the top of the viewport with a solid background so the nav/hamburger
   stay reachable instead of scrolling away with the page. */
header.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(250, 249, 246, 0.92) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08) !important;
    padding: 15px 5%;
}

header.scrolled nav ul li a {
    color: var(--text-dark) !important;
}

header.scrolled nav ul li a:hover {
    color: var(--accent-color) !important;
}

header.scrolled .logo-area img {
    height: 55px !important;
}

header .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

header .logo-area {
    display: flex !important;
    align-items: center !important;
}

header .logo-area img {
    height: 80px !important; /* Rich size to emphasize branding */
    width: auto !important;
    display: block !important;
    transition: height 0.3s ease;
}

header nav ul {
    display: flex !important;
    flex-direction: row !important;
    list-style-type: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 30px !important;
}

header nav ul li {
    display: inline-block !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

header nav ul li a {
    color: #8E8E8E !important; /* Gray links per request */
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    transition: color 0.2s ease !important;
}

header nav ul li a:hover {
    color: var(--accent-color) !important;
}

/* "Discipleship" nav dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle::after {
    content: ' \25BE';
    font-size: 0.7em;
}

.nav-dropdown-menu {
    display: none !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    gap: 0 !important;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: flex !important;
}

@media (min-width: 769px) {
    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        min-width: 220px;
        background-color: var(--white);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
        z-index: 1001;
    }

    .nav-dropdown-menu li {
        display: block !important;
        width: 100% !important;
    }

    .nav-dropdown-menu li a {
        display: block !important;
        padding: 10px 20px !important;
        color: #8E8E8E !important;
        white-space: nowrap;
    }

    .nav-dropdown-menu li a:hover {
        color: var(--accent-color) !important;
        background-color: var(--bg-light);
    }
}

/* Hamburger button - hidden on desktop, shown on mobile */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    header .logo-area img {
        height: 50px !important;
    }

    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding-top: 100px;
    }

    header nav.active {
        right: 0;
    }

    header nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 30px !important;
    }

    header nav ul li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    header nav ul li a {
        display: block !important;
        padding: 16px 0 !important;
        color: var(--text-dark) !important;
    }

    .nav-dropdown {
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-dropdown-menu {
        padding: 0 0 10px 0 !important;
    }

    .nav-dropdown-menu li {
        border-bottom: none !important;
    }

    .nav-dropdown-menu li a {
        padding: 10px 0 10px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
    }
}

/* ==========================================================================
   FULL-SCREEN HERO BANNER WITH FIXED SCROLL (PARALLAX EFFECT) - LOCKED
   ========================================================================== */
.clean-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* TRUE FULL PORTRAIT HEIGHT */
    background: url('/images/ccf_arizona/ccf_arizona_primary_banner_2026.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Keeps image strictly locked during scrolls */
}

/* ==========================================================================
   ABOUT US SECTION - LOCKED
   ========================================================================== */
.about-us-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 992px) {
    .about-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    /* Disable parallax for mobile browsers to avoid structural glitches */
    .clean-hero-banner {
        background-attachment: scroll; 
        height: 60vh; /* Scaled down slightly for mobile screens */
    }
}

.about-us-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 8px 0 20px 0;
    line-height: 1.2;
}

.about-us-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-us-image-area {
    width: 100%;
}

.real-image {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.placeholder-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}

.placeholder-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.placeholder-tip {
    font-size: 0.75rem;
    font-style: italic;
    color: #94a3b8;
    max-width: 280px;
}

/* ==========================================================================
   WHAT WE BELIEVE SECTION
   ========================================================================== */
.beliefs-container {
    max-width: 900px;
    margin: 0 auto;
}

.card-navy {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card-navy h3 {
    color: #F6D89A;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Spacing layout helpers */
.vision-spacer {
    height: 40px; /* Generous clean separation space between scripture and Our Vision */
    width: 100%;
}

/* Elegant Style for Added Scripture Quotation */
.scripture-quote {
    display: block;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e1; /* Clear high contrast gray-white */
    border-left: 3px solid #F6D89A;
    padding-left: 20px;
    margin: 25px 0 0px 0;
}

.scripture-reference {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F6D89A;
    margin-top: 10px;
    font-style: normal;
}

/* Clean styling for non-bullet Core Values */
.card-values, .card-faith {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-values h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.values-list-no-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Beautiful CCF Teal highlighted letters matching Foundations tag */
.value-title {
    color: var(--accent-color);
    font-weight: 800;
    display: inline-block;
    margin-right: 4px;
}

.card-faith {
    padding: 25px 40px !important;
}

.faith-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px 0;
    font-family: var(--font-heading);
}

.accordion-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.faith-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faith-sections {
    padding-top: 20px;
}

.faith-item {
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.faith-item:first-child {
    padding-top: 10px;
}

.faith-item:last-child {
    border-bottom: none;
    padding-bottom: 10px;
}

.faith-item h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.faith-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.faith-item p:last-child {
    margin-bottom: 0;
}

.faith-closing {
    padding-top: 30px;
}

.faith-closing p {
    font-style: italic;
    color: var(--text-muted);
}

/* ==========================================================================
   THE DISCIPLESHIP JOURNEY SECTION
   ========================================================================== */
.journey-image-container {
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.journey-image-container-secondary {
    margin: 60px auto 0 auto;
}

.journey-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

.journey-image:hover {
    opacity: 0.92;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: fixed;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 10px;
    font-family: inherit;
    transition: opacity 0.2s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 993px) {
    .journey-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .journey-grid::before {
        content: '';
        display: block;
        position: absolute;
        top: 65px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background-color: var(--accent-color);
        z-index: 0;
    }
}

.journey-step {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

.journey-step.pre-animate {
    opacity: 0;
    transform: translateY(20px);
}

.journey-step:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08);
}

.step-num {
    background-color: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 1;
}

.journey-step h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.journey-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Discipleship Journey video embed */
.journey-video-container {
    max-width: 800px;
    margin: 60px auto 60px auto;
}

.video-responsive-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.video-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Transition text bridging Discipleship Journey into Join a DGroup */
.journey-to-dgroup-transition {
    max-width: 700px;
    margin: 80px auto 70px auto;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.journey-to-dgroup-transition p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 16px;
}

.transition-arrow {
    display: block;
    color: var(--accent-color);
    font-size: 1.4rem;
    line-height: 1;
}

/* ==========================================================================
   SCHEDULE SECTION
   ========================================================================== */
.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.schedule-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
}

.schedule-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.schedule-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.schedule-card .time {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.schedule-card .location {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
}

.events-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .events-layout {
        grid-template-columns: 1fr;
    }
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.events-loading {
    color: var(--text-muted);
    font-size: 1rem;
}

.event-list-item {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 25px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.event-list-item:hover {
    border-color: var(--accent-color);
}

.event-list-item.active {
    border-color: var(--accent-color);
    background-color: var(--bg-light);
}

.event-date-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.event-list-item h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.event-list-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.events-poster-panel {
    background-color: transparent;
    border-radius: 16px;
    min-height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.events-poster-placeholder {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 40px;
    text-align: center;
}

.events-poster-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

.events-poster-image:hover {
    opacity: 0.92;
}

/* ==========================================================================
   JOIN A DGROUP SECTION
   ========================================================================== */
.dgroup-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dgroup-intro p {
    font-size: 0.9rem;
    color: #8E8E8E;
    max-width: 750px;
    margin: 0 auto;
}

.why-dgroup-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.why-dgroup-icon svg {
    width: 100%;
    height: 100%;
}

.dgroup-subtitle-transition {
    max-width: 700px;
    margin: 50px auto 50px auto;
}

.dgroup-subtitle-transition p {
    margin: 0;
}

#journey .dgroup-subtitle-transition p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.4;
}

.why-dgroup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-dgroup-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.why-dgroup-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.why-dgroup-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.scripture-quote-small {
    display: block;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 14px;
    line-height: 1.5;
}

.dgroup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.dgroup-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    padding: 20px 0;
}

.dgroup-day-card {
    background-color: var(--primary-color);
    border: none;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.dgroup-day-badge {
    background-color: #F6D89A;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.dgroup-entry {
    padding: 14px 0;
    border-bottom: 1px solid rgba(250, 249, 246, 0.18);
}

.dgroup-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dgroup-entry h4 {
    color: #F6D89A;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.dgroup-entry p {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.dgroup-cta {
    margin-top: 10px;
}

/* ==========================================================================
   GIVE SECTION
   ========================================================================== */
.give-container {
    max-width: 800px;
    margin: 0 auto;
}

.give-spacer {
    height: 20px;
}

.give-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.give-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.give-card p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px auto;
    font-size: 1.05rem;
}

.give-button {
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 8px;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.give-button:hover {
    background-color: #A96A3D;
    transform: translateY(-2px);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-primary-cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-primary-cta p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 450px;
    margin: 0 auto 25px auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 1.75rem;
    background-color: var(--bg-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.footer-social-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(250, 249, 246, 0.3);
    color: var(--white);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social-bar a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-social-bar svg {
    width: 20px;
    height: 20px;
}

.footer-social-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(250, 249, 246, 0.3);
    color: var(--white);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social-bar a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-social-bar svg {
    width: 20px;
    height: 20px;
}

footer p {
    color: var(--white);
    font-size: 0.95rem;
}