/* =============================================================
   StratfordLondon.church — 2026 Stylesheet
   File: assets/css/style.css
   Note: CSS custom properties are declared in :root.
         All paths relative to THIS file's location.
         Hero background image: ../images/stratford_large.jpg
============================================================= */

/* ============================================================
   1. CSS CUSTOM PROPERTIES & RESET
============================================================ */
:root {
    --cream:      #f3deb0;
    --red:        #ed3e3d;
    --navy:       #144c72;
    --white:      #ffffff;
    --dark:       #0a1e30;
    --teal:       #1e8a7a;
    --purple:     #6b3fa0;
    --amber:      #c88a10;
    --green:      #4a7a3a;
    --dark-teal:  #155f55;
    --navy-deep:  #0d4a7a;
    --nav-height: 70px;
    --font-heading: 'Poppins', sans-serif;
    --font-body:    'Inter', 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: #333;
    overflow-x: hidden;
}

/* Skip to content — accessibility */
.skip-link {
    position: absolute;
    top: -60px;
    left: 20px;
    background: var(--navy);
    color: var(--cream);
    padding: 10px 18px;
    border-radius: 0 0 6px 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88em;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}


/* ============================================================
   2. NAVIGATION
============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background-color: var(--navy);
    transition: box-shadow 0.4s ease;
}
#navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    color: white;
    flex-shrink: 0;
}
.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1em;
    color: var(--cream);
    line-height: 1.2;
}
.nav-logo-text span {
    display: block;
    font-size: 0.68em;
    font-weight: 400;
    opacity: 0.75;
    color: var(--cream);
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links li a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88em;
    padding: 8px 13px;
    border-radius: 6px;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}
.nav-links li a:hover {
    background: rgba(243, 222, 176, 0.12);
}
.nav-cta {
    background: var(--red) !important;
    color: white !important;
    padding: 9px 18px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
    background: #c82a29 !important;
    transform: scale(1.04);
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}
.nav-overlay.open {
    display: block;
}

/* Mobile drawer panel */
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--navy);
    z-index: 999;
    padding-top: 90px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}
.nav-drawer.open {
    transform: translateX(0);
}
.nav-drawer ul {
    list-style: none;
    padding: 10px 20px;
}
.nav-drawer ul li a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05em;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(243, 222, 176, 0.1);
    transition: background 0.2s;
}
.nav-drawer ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
}
.drawer-cta {
    display: block;
    margin: 20px;
    background: var(--red);
    color: white;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95em;
    text-decoration: none;
}
.drawer-cta:hover {
    background: #c82a29;
}


/* ============================================================
   3. HERO SECTION
============================================================ */
#hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(10, 30, 48, 0.93), rgba(20, 76, 114, 0.90)),
        url('../images/stratford_large.jpg') center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 100px;
    position: relative;
}
.hero-tag {
    display: inline-block;
    background: var(--red);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2em, 9vw, 6.5em);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.0;
    margin-bottom: 22px;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.45);
}
.hero-title .highlight {
    color: var(--red);
}
.hero-subtitle {
    font-size: clamp(1em, 2.2vw, 1.2em);
    color: rgba(243, 222, 176, 0.88);
    max-width: 580px;
    margin: 0 auto 42px;
    line-height: 1.75;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-primary {
    background: var(--red);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(237, 62, 61, 0.4);
    display: inline-block;
}
.btn-primary:hover {
    background: #c82a29;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(237, 62, 61, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--cream);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1em;
    border: 2px solid var(--cream);
    transition: all 0.3s;
    display: inline-block;
}
.btn-outline:hover {
    background: var(--cream);
    color: var(--navy);
    transform: translateY(-2px);
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(243, 222, 176, 0.6);
    font-size: 1.8em;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}


/* ============================================================
   4. EVENT SPOTLIGHT
============================================================ */
#event-spotlight {
    overflow: hidden;
}
.spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}
.spotlight-left {
    background: var(--cream);
    padding: 65px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.free-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 18px;
    width: fit-content;
}
.spotlight-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2em, 4.5vw, 3.5em);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 6px;
}
.event-sub {
    font-family: var(--font-heading);
    font-size: 1.05em;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 28px;
}

/* Countdown timer */
.countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.countdown-item {
    background: var(--navy);
    color: var(--cream);
    padding: 12px 14px;
    border-radius: 8px;
    text-align: center;
    min-width: 68px;
}
.count-num {
    font-family: var(--font-heading);
    font-size: 2em;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.count-label {
    font-size: 0.62em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
    display: block;
    margin-top: 4px;
}
.countdown-ended {
    color: var(--red);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1em;
}

/* Event detail rows */
.event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.event-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95em;
    color: #444;
}
.event-detail-icon {
    font-size: 1.1em;
    width: 22px;
    flex-shrink: 0;
    font-style: normal;
}
.event-detail-text strong {
    display: block;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Spotlight right panel */
.spotlight-right {
    background: var(--navy);
    padding: 65px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.spotlight-right h3 {
    font-family: var(--font-heading);
    font-size: 0.85em;
    font-weight: 700;
    color: rgba(243, 222, 176, 0.7);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.activities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.activity-tag {
    padding: 10px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88em;
    color: white;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Spotlight footer banner */
.spotlight-footer {
    background: var(--red);
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 0.04em;
}


/* ============================================================
   5. MISSION STRIP
============================================================ */
#mission {
    background: var(--cream);
    padding: 75px 20px;
    text-align: center;
}
.mission-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.1em, 2.5vw, 1.45em);
    font-weight: 600;
    color: var(--navy);
    max-width: 780px;
    margin: 0 auto 55px;
    line-height: 1.75;
}
.mission-quote::before {
    content: '\201C';
    color: var(--red);
    font-size: 1.6em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-right: 4px;
}
.mission-quote::after {
    content: '\201D';
    color: var(--red);
    font-size: 1.6em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-left: 4px;
}
.mission-stats {
    display: flex;
    justify-content: center;
    gap: 65px;
    flex-wrap: wrap;
}
.mission-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.stat-icon {
    width: 62px;
    height: 62px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2em;
    font-weight: 800;
    color: var(--navy);
}
.stat-label {
    font-size: 0.88em;
    color: #666;
    font-weight: 500;
}


/* ============================================================
   6. SHARED SECTION HEADER
============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-label {
    display: inline-block;
    background: var(--navy);
    color: var(--cream);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2em, 4vw, 2.8em);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}
.section-subtitle {
    color: #666;
    font-size: 1.02em;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================================
   7. CHURCHES SECTION
============================================================ */
#churches {
    padding: 85px 20px;
    background: #f5f7fa;
}
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-tab {
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88em;
    cursor: pointer;
    transition: all 0.25s;
}
.filter-tab.active,
.filter-tab:hover {
    background: var(--navy);
    color: var(--cream);
}
.churches-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
}

/* Church card */
.church-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.church-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.church-card.hidden {
    display: none;
}

/* Accent bar colours — assigned via PHP class so filtering doesn't break the cycle */
.card-accent { height: 5px; }
.church-card.accent-red    .card-accent { background: var(--red); }
.church-card.accent-teal   .card-accent { background: var(--teal); }
.church-card.accent-purple .card-accent { background: var(--purple); }
.church-card.accent-amber  .card-accent { background: var(--amber); }
.church-card.accent-green  .card-accent { background: var(--green); }

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05em;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.card-info-row {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 0.88em;
    color: #555;
}
.card-info-row a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
}
.card-info-row a:hover {
    color: var(--red);
}
.card-info-icon {
    flex-shrink: 0;
    width: 15px;
    text-align: center;
    margin-top: 2px;
    opacity: 0.65;
    font-style: normal;
}
.card-footer {
    padding: 14px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-time-badge {
    background: var(--cream);
    color: var(--navy);
    font-size: 0.78em;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 14px;
}
.card-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.83em;
    font-weight: 600;
    transition: color 0.2s;
}
.card-link:hover {
    color: var(--red);
}


/* ============================================================
   8. UPCOMING EVENTS
============================================================ */
#events {
    padding: 85px 20px;
    background: white;
}
.events-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}
.event-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.09);
    border-left: 6px solid var(--red);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.event-card:hover {
    transform: translateY(-4px);
}
.event-card.secondary {
    border-left-color: var(--navy);
}
.event-card-header {
    background: linear-gradient(135deg, var(--navy), #1a6090);
    padding: 25px 28px;
    position: relative;
}
.event-card.secondary .event-card-header {
    background: linear-gradient(135deg, #1a3a58, var(--navy));
}
.event-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.55em;
    font-weight: 800;
    color: var(--cream);
}
.event-card-header .event-date {
    color: rgba(243, 222, 176, 0.75);
    font-size: 0.92em;
    margin-top: 5px;
}
.event-free-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78em;
    padding: 5px 14px;
    border-radius: 20px;
}
.event-card-body {
    padding: 25px 28px;
    flex: 1;
}
.event-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.event-info-row {
    display: flex;
    gap: 11px;
    font-size: 0.92em;
    color: #444;
    line-height: 1.5;
}
.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.event-tag {
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 0.78em;
    font-weight: 600;
    color: white;
}
.event-card-actions {
    padding: 18px 28px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-sm {
    padding: 9px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.82em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: var(--font-heading);
    display: inline-block;
}
.btn-sm-primary {
    background: var(--red);
    color: white;
}
.btn-sm-primary:hover {
    background: #c82a29;
}
.btn-sm-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-sm-outline:hover {
    background: var(--navy);
    color: var(--cream);
}

/* Shared colour tag classes */
.tag-teal       { background: var(--teal); }
.tag-navy-deep  { background: var(--navy-deep); }
.tag-purple     { background: var(--purple); }
.tag-amber      { background: var(--amber); }
.tag-green      { background: var(--green); }
.tag-red        { background: var(--red); }
.tag-dark-teal  { background: var(--dark-teal); }


/* ============================================================
   9. PAST EVENTS
============================================================ */
#past-events {
    padding: 85px 20px;
    background: var(--navy);
}
#past-events .section-title    { color: var(--cream); }
#past-events .section-subtitle { color: rgba(243, 222, 176, 0.65); }
#past-events .section-label    { background: var(--red); color: white; }
.past-events-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}
.past-event-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1a3a5c, #0d2640);
    cursor: pointer;
    transition: transform 0.3s;
}
.past-event-card:hover {
    transform: scale(1.03);
}
.past-event-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2640 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.past-event-bg span {
    font-size: 4.5em;
    opacity: 0.25;
}
.past-event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(10, 30, 48, 0.92));
}
.past-event-year {
    display: inline-block;
    background: var(--red);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72em;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
}
.past-event-overlay h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--cream);
    font-size: 1.2em;
    margin-bottom: 5px;
}
.past-event-overlay p {
    color: rgba(243, 222, 176, 0.65);
    font-size: 0.82em;
    margin-bottom: 10px;
}
.past-event-overlay a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    border-bottom: 1px solid rgba(243, 222, 176, 0.5);
    transition: color 0.2s, border-color 0.2s;
}
.past-event-overlay a:hover {
    color: var(--red);
    border-color: var(--red);
}


/* ============================================================
   10. CONTACT SECTION
============================================================ */
#contact {
    padding: 85px 20px;
    background: #f5f7fa;
}
.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}
.contact-form-wrap h3,
.contact-info-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.35em;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.contact-form-wrap > p {
    color: #666;
    margin-bottom: 28px;
    line-height: 1.65;
    font-size: 0.95em;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88em;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95em;
    font-family: var(--font-body);
    transition: border-color 0.2s;
    background: white;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
}
.form-group textarea {
    resize: vertical;
}
.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.form-submit:hover {
    background: #c82a29;
    transform: translateY(-1px);
}
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.map-embed {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-detail-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92em;
    color: #555;
}


/* ============================================================
   11. FOOTER
============================================================ */
footer {
    background: var(--dark);
    color: var(--cream);
    padding: 65px 20px 0;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.5fr;
    gap: 55px;
    padding-bottom: 55px;
}
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25em;
    color: white;
    flex-shrink: 0;
}
.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 800;
    color: var(--cream);
}
.footer-brand p {
    color: rgba(243, 222, 176, 0.55);
    font-size: 0.88em;
    line-height: 1.75;
    margin-bottom: 12px;
}
.footer-url {
    font-size: 0.82em;
    color: rgba(243, 222, 176, 0.35);
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95em;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links li a {
    color: rgba(243, 222, 176, 0.6);
    text-decoration: none;
    font-size: 0.88em;
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: var(--cream);
}
.footer-churches-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 14px;
    list-style: none;
}
.footer-churches-list li {
    color: rgba(243, 222, 176, 0.45);
    font-size: 0.76em;
    line-height: 1.5;
}
.footer-bottom {
    border-top: 1px solid rgba(243, 222, 176, 0.08);
    padding: 20px;
    text-align: center;
    color: rgba(243, 222, 176, 0.3);
    font-size: 0.82em;
}


/* ============================================================
   12. RESPONSIVE BREAKPOINTS
============================================================ */
@media (max-width: 960px) {
    .spotlight-inner    { grid-template-columns: 1fr; }
    .spotlight-right    { padding: 45px 35px 55px; }
    .spotlight-left     { padding: 55px 35px; }
    .contact-inner      { grid-template-columns: 1fr; }
    .footer-inner       { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand       { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
    .hero-title { font-size: clamp(2.5em, 10vw, 4em); }
    .countdown  { gap: 8px; }
    .countdown-item { min-width: 58px; padding: 10px 11px; }
    .count-num  { font-size: 1.5em; }
    .events-grid  { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .mission-stats { gap: 35px; }
    .churches-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-buttons         { flex-direction: column; align-items: center; }
    .spotlight-left       { padding: 40px 22px; }
    .spotlight-right      { padding: 35px 22px; }
    .section-title        { font-size: 1.8em; }
    .contact-inner        { gap: 35px; }
}
