/*
Theme Name: SHIFT Foundation
Theme URI: https://theshiftfoundation.org
Author: The SHIFT Foundation
Author URI: https://theshiftfoundation.org
Description: A premium WordPress theme for The SHIFT Foundation — empowering the lives of teenage girls in Nigeria. Features hero slider, stats bar, pillars section, events, initiatives, donation CTA, and full Customizer support.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shift-foundation
Tags: custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, post-thumbnails, theme-options, threaded-comments, translation-ready, two-columns, right-sidebar, blog
*/

/* =============================================================
   CSS CUSTOM PROPERTIES (easily editable via Customizer)
   ============================================================= */
:root {
    --shift-orange:      #F78914;
    --shift-green:       #92CD28;
    --shift-dark:        #1A1A2E;
    --shift-dark-alt:    #16213E;
    --shift-white:       #FFFFFF;
    --shift-off-white:   #F9F5F0;
    --shift-gray:        #F4F4F4;
    --shift-text:        #333333;
    --shift-text-light:  #666666;
    --shift-border:      #E8E8E8;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-accent:  'Poppins', sans-serif;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  24px;
    --radius-xl:  48px;

    --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
    --shadow-md:  0 8px 32px rgba(0,0,0,.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,.16);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:  1200px;
    --section-pad: 90px 0;
}

/* =============================================================
   RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--shift-orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--shift-green); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--shift-dark);
    font-weight: 700;
}

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: var(--section-pad); }

/* Screen reader text */
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden;
    padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--shift-orange);
    margin-bottom: 12px;
    position: relative;
    padding-left: 36px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 28px; height: 2px;
    background: var(--shift-orange);
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--shift-dark);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--shift-orange);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--shift-text-light);
    max-width: 600px;
    line-height: 1.8;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--shift-orange);
    color: var(--shift-white);
    border-color: var(--shift-orange);
}
.btn-primary:hover {
    background: transparent;
    color: var(--shift-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--shift-white);
    border-color: var(--shift-white);
}
.btn-secondary:hover {
    background: var(--shift-white);
    color: var(--shift-dark);
}

.btn-green {
    background: var(--shift-green);
    color: var(--shift-white);
    border-color: var(--shift-green);
}
.btn-green:hover {
    background: transparent;
    color: var(--shift-green);
}

.btn-outline {
    background: transparent;
    color: var(--shift-orange);
    border-color: var(--shift-orange);
}
.btn-outline:hover {
    background: var(--shift-orange);
    color: var(--shift-white);
}

.btn svg, .btn i { width: 18px; height: 18px; }

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

#site-header.scrolled {
    background: var(--shift-white);
    box-shadow: var(--shadow-md);
}

#site-header.scrolled .site-logo-text,
#site-header.scrolled .nav-menu a {
    color: var(--shift-dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-branding img {
    height: 48px;
    width: auto;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--shift-white);
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
    text-decoration: none;
}
.site-logo-text span { color: var(--shift-orange); }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li { position: relative; }

.nav-menu a {
    font-family: var(--font-accent);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--shift-white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0,0,0,.2);
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--shift-orange);
    background: rgba(247,137,20,.1);
}

/* Dropdown */
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--shift-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
}
.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu .sub-menu a {
    color: var(--shift-text);
    text-shadow: none;
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}
.nav-menu .sub-menu a:hover { color: var(--shift-orange); }

/* Header CTA buttons */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-cta .btn {
    padding: 10px 22px;
    font-size: 0.82rem;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--shift-white);
    transition: var(--transition);
    border-radius: 2px;
}
#site-header.scrolled .menu-toggle span { background: var(--shift-dark); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--shift-dark);
    overflow-y: auto;
    z-index: 999;
    padding: 24px;
    transform: translateX(100%);
    transition: var(--transition);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 24px;
}
.mobile-nav .nav-menu a {
    font-size: 1rem;
    padding: 12px 16px;
    color: var(--shift-white);
    text-shadow: none;
    width: 100%;
}
.mobile-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    margin-top: 4px;
}
.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-cta .btn { width: 100%; justify-content: center; }

/* =============================================================
   HERO SLIDER
   ============================================================= */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,26,46,.85) 0%,
        rgba(26,26,46,.5) 60%,
        rgba(247,137,20,.15) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
    animation: heroIn 1s ease forwards;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
    display: inline-block;
    background: var(--shift-orange);
    color: var(--shift-white);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: var(--shift-white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.hero-title span { color: var(--shift-orange); }

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.slider-dot.active {
    background: var(--shift-orange);
    width: 28px;
    border-radius: 5px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    pointer-events: all;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.slider-arrow:hover {
    background: var(--shift-orange);
    border-color: var(--shift-orange);
}
.slider-arrow svg { width: 22px; height: 22px; }

/* =============================================================
   STATS BAR
   ============================================================= */
.stats-bar {
    background: var(--shift-dark);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--shift-orange), var(--shift-green));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 16px 0;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.1);
}

.stat-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--shift-orange), var(--shift-green));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.stat-icon svg { width: 24px; height: 24px; color: white; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--shift-white);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    color: rgba(255,255,255,.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =============================================================
   ABOUT SECTION
   ============================================================= */
.about-section {
    padding: var(--section-pad);
    background: var(--shift-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }

.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--shift-white);
}
.about-image-accent img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.about-badge {
    position: absolute;
    top: 32px;
    left: -20px;
    background: var(--shift-orange);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.about-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1;
}
.about-badge span {
    font-size: 0.75rem;
    opacity: .85;
    font-family: var(--font-accent);
}

.about-content { padding: 20px 0; }

.about-features {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 40px; height: 40px;
    background: rgba(247,137,20,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature-icon svg { width: 20px; height: 20px; color: var(--shift-orange); }

.about-feature-text strong {
    display: block;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--shift-dark);
    margin-bottom: 4px;
}
.about-feature-text p {
    font-size: 0.9rem;
    color: var(--shift-text-light);
    margin: 0;
}

/* =============================================================
   PILLARS / PROGRAMS
   ============================================================= */
.pillars-section {
    padding: var(--section-pad);
    background: var(--shift-off-white);
    position: relative;
    overflow: hidden;
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(146,205,40,.08);
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}
.pillars-header .section-label { padding-left: 0; }
.pillars-header .section-label::before { display: none; }

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

.pillar-card {
    background: var(--shift-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.pillar-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pillar-card:hover .pillar-card-image img { transform: scale(1.06); }

.pillar-card-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--shift-orange);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: var(--font-accent);
}

.pillar-card-body { padding: 24px; }

.pillar-card-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(247,137,20,.12);
    line-height: 1;
    margin-bottom: -8px;
}

.pillar-card-title {
    font-size: 1.25rem;
    color: var(--shift-dark);
    margin-bottom: 12px;
}

.pillar-card-text {
    font-size: 0.9rem;
    color: var(--shift-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pillar-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--shift-orange);
}
.pillar-card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.pillar-card:hover .pillar-card-link svg { transform: translateX(4px); }

/* =============================================================
   EVENTS SECTION
   ============================================================= */
.events-section {
    padding: var(--section-pad);
    background: var(--shift-white);
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.events-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}

.event-featured {
    background: var(--shift-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.event-featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.event-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,.95) 40%, transparent 100%);
}

.event-featured-body {
    position: relative;
    z-index: 1;
    padding: 32px;
}

.event-tag {
    display: inline-block;
    background: var(--shift-orange);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: var(--font-accent);
    margin-bottom: 14px;
}

.event-featured-title {
    font-size: 1.7rem;
    color: var(--shift-white);
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,.7);
    font-family: var(--font-accent);
}
.event-meta-item svg { width: 16px; height: 16px; }

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

.event-card {
    background: var(--shift-off-white);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 18px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.event-card:hover {
    background: white;
    border-color: var(--shift-border);
    box-shadow: var(--shadow-sm);
}

.event-date-box {
    min-width: 54px;
    background: var(--shift-orange);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    text-align: center;
    color: white;
}
.event-date-box .day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.event-date-box .month {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: .85;
}

.event-card-body { flex: 1; }
.event-card-title {
    font-size: 1rem;
    color: var(--shift-dark);
    margin-bottom: 8px;
    font-family: var(--font-accent);
    font-weight: 600;
}
.event-card-meta {
    font-size: 0.82rem;
    color: var(--shift-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.event-card-meta svg { width: 14px; height: 14px; }

/* =============================================================
   INITIATIVES CAROUSEL
   ============================================================= */
.initiatives-section {
    padding: var(--section-pad);
    background: var(--shift-off-white);
    overflow: hidden;
}

.initiatives-header {
    text-align: center;
    margin-bottom: 48px;
}
.initiatives-header .section-label { padding-left: 0; }
.initiatives-header .section-label::before { display: none; }

.carousel-wrap {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.initiative-card {
    min-width: calc(33.33% - 16px);
    background: var(--shift-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.initiative-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.initiative-image {
    height: 220px;
    overflow: hidden;
}
.initiative-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.initiative-card:hover .initiative-image img { transform: scale(1.05); }

.initiative-body { padding: 24px; }

.initiative-title {
    font-size: 1.15rem;
    color: var(--shift-dark);
    margin-bottom: 10px;
    font-family: var(--font-accent);
    font-weight: 600;
}

.initiative-text {
    font-size: 0.88rem;
    color: var(--shift-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
}

.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--shift-orange);
    background: transparent;
    color: var(--shift-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.carousel-btn:hover {
    background: var(--shift-orange);
    color: white;
}
.carousel-btn svg { width: 20px; height: 20px; }

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--shift-border);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    padding: 0;
}
.carousel-dot.active {
    background: var(--shift-orange);
    width: 24px;
    border-radius: 4px;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-section {
    padding: var(--section-pad);
    background: linear-gradient(135deg, var(--shift-dark) 0%, var(--shift-dark-alt) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: -40px; left: 40px;
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(255,255,255,.03);
    line-height: 1;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}
.testimonials-header .section-label { color: var(--shift-green); }
.testimonials-header .section-label::before { background: var(--shift-green); }
.testimonials-header .section-title { color: var(--shift-white); }

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

.testimonial-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--shift-orange);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--shift-orange);
    flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--shift-white);
    font-size: 0.95rem;
}
.testimonial-role {
    font-size: 0.8rem;
    color: rgba(255,255,255,.5);
    font-family: var(--font-accent);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; color: var(--shift-orange); fill: var(--shift-orange); }

/* =============================================================
   DONATION / CTA SECTION
   ============================================================= */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--shift-orange);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container { position: relative; z-index: 1; }

.cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner .section-label { color: rgba(255,255,255,.8); }
.cta-inner .section-label::before { background: rgba(255,255,255,.8); }

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--shift-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 36px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--shift-white);
    font-weight: 700;
}

.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-section .btn-secondary { border-color: rgba(255,255,255,.6); color: white; }
.cta-section .btn-secondary:hover { background: var(--shift-white); color: var(--shift-orange); }

/* =============================================================
   BLOG / NEWS
   ============================================================= */
.news-section {
    padding: var(--section-pad);
    background: var(--shift-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.post-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--shift-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--shift-border);
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.post-card-image {
    height: 210px;
    overflow: hidden;
    position: relative;
}
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.post-card:hover .post-card-image img { transform: scale(1.06); }

.post-card-category {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--shift-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: var(--font-accent);
}

.post-card-body { padding: 24px; }

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--shift-text-light);
    font-family: var(--font-accent);
}
.post-card-meta span { display: flex; align-items: center; gap: 4px; }
.post-card-meta svg { width: 14px; height: 14px; }

.post-card-title {
    font-size: 1.15rem;
    color: var(--shift-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: var(--font-accent);
    font-weight: 600;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--shift-orange); }

.post-card-excerpt {
    font-size: 0.88rem;
    color: var(--shift-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--shift-orange);
}
.read-more svg { width: 16px; height: 16px; transition: var(--transition); }
.post-card:hover .read-more svg { transform: translateX(4px); }

/* =============================================================
   PARTNERS / SPONSORS
   ============================================================= */
.partners-section {
    padding: 60px 0;
    background: var(--shift-off-white);
    border-top: 1px solid var(--shift-border);
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}
.partners-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--shift-text-light);
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.partner-logo {
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(1);
    max-height: 40px;
}
.partner-logo:hover { opacity: 1; filter: none; }

/* =============================================================
   FOOTER
   ============================================================= */
#colophon {
    background: var(--shift-dark);
    color: rgba(255,255,255,.7);
}

.footer-top {
    padding: 72px 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-brand { }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 44px; }
.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--shift-white);
}
.footer-logo-text span { color: var(--shift-orange); }

.footer-about {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.1);
}
.footer-social a:hover {
    background: var(--shift-orange);
    color: white;
    border-color: var(--shift-orange);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--shift-white);
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition);
    margin-left: -14px;
    color: var(--shift-orange);
}
.footer-links a:hover { color: var(--shift-white); padding-left: 14px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,.6);
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--shift-orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--shift-orange); }

.footer-newsletter-form { margin-top: 6px; }
.footer-newsletter-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    color: var(--shift-white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    margin-bottom: 10px;
    outline: none;
    transition: var(--transition);
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-form input:focus { border-color: var(--shift-orange); background: rgba(255,255,255,.09); }
.footer-newsletter-form button { width: 100%; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,.45);
}
.footer-copyright a { color: var(--shift-orange); }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom-links a:hover { color: var(--shift-white); }

/* =============================================================
   INNER PAGES
   ============================================================= */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--shift-dark) 0%, var(--shift-dark-alt) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--shift-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--shift-white);
    margin-bottom: 16px;
}
.page-hero-title span { color: var(--shift-orange); }
.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,.6);
    font-family: var(--font-accent);
}
.breadcrumbs a { color: var(--shift-orange); }
.breadcrumbs span { color: rgba(255,255,255,.3); }

/* Single post */
.single-post .container { max-width: 820px; }

.post-header {
    padding: 140px 0 60px;
    background: var(--shift-dark);
    margin-bottom: 60px;
}
.post-category-tag {
    display: inline-block;
    background: var(--shift-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    font-family: var(--font-accent);
    margin-bottom: 20px;
}
.post-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
}
.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,.6);
    font-family: var(--font-accent);
}
.post-meta-bar svg { width: 16px; height: 16px; }

.post-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--shift-text);
}
.post-content h2, .post-content h3, .post-content h4 { margin: 36px 0 16px; }
.post-content p { margin-bottom: 1.4em; }
.post-content img { border-radius: var(--radius-md); margin: 28px 0; }
.post-content blockquote {
    border-left: 4px solid var(--shift-orange);
    padding: 16px 24px;
    background: rgba(247,137,20,.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--shift-dark);
    margin: 28px 0;
}
.post-content ul, .post-content ol { margin: 16px 0 16px 24px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 8px; }

/* Sidebar */
.content-sidebar-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding-bottom: 80px;
}

.widget {
    background: var(--shift-off-white);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
}
.widget-title {
    font-size: 1rem;
    font-family: var(--font-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--shift-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--shift-orange);
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-section { padding: var(--section-pad); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.contact-info p {
    color: var(--shift-text-light);
    margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-detail-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--shift-orange), #f5a623);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; color: white; }
.contact-detail-text strong { display: block; font-family: var(--font-accent); font-size: 0.9rem; color: var(--shift-dark); }
.contact-detail-text span { font-size: 0.88rem; color: var(--shift-text-light); }

.contact-form-wrap {
    background: var(--shift-off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--shift-dark);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: var(--shift-white);
    border: 1.5px solid var(--shift-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--shift-text);
    outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--shift-orange);
    box-shadow: 0 0 0 3px rgba(247,137,20,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================================
   UTILITY & HELPERS
   ============================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.color-orange { color: var(--shift-orange); }
.color-green  { color: var(--shift-green);  }

.wp-block-image img { border-radius: var(--radius-md); }

/* Back to top */
#back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    background: var(--shift-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 500;
    box-shadow: var(--shadow-md);
    border: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top svg { width: 20px; height: 20px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { max-width: 480px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .initiative-card { min-width: calc(50% - 12px); }
    .content-sidebar-wrap { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px 0; }
    .main-nav { display: none; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .mobile-nav { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:not(:last-child)::after { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .initiative-card { min-width: calc(80% - 12px); }
    .pillars-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    .events-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .cta-counter { font-size: 2.8rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .initiative-card { min-width: calc(100% - 12px); }
}

/* =============================================================
   WORDPRESS SPECIFIC
   ============================================================= */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.alignwide { margin-left: -40px; margin-right: -40px; }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }

.wp-caption { text-align: center; font-size: 0.85rem; color: var(--shift-text-light); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item img { width: 100%; border-radius: var(--radius-sm); }

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 48px 0;
    flex-wrap: wrap;
}
.pagination a, .pagination .current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1.5px solid var(--shift-border);
    color: var(--shift-text);
    transition: var(--transition);
}
.pagination a:hover, .pagination .current {
    background: var(--shift-orange);
    border-color: var(--shift-orange);
    color: white;
}

/* Comments */
.comments-area { padding-bottom: 80px; }
.comments-title { font-size: 1.5rem; margin-bottom: 32px; }
.comment-list { margin-bottom: 40px; }
.comment { padding: 20px 0; border-bottom: 1px solid var(--shift-border); }
.comment-author .fn { font-weight: 600; color: var(--shift-dark); }
.comment-metadata { font-size: 0.8rem; color: var(--shift-text-light); margin-bottom: 8px; }
.comment-body p { font-size: 0.92rem; }
.comment-respond { background: var(--shift-off-white); padding: 32px; border-radius: var(--radius-lg); }
.comment-reply-title { font-size: 1.3rem; margin-bottom: 24px; }

/* =============================================================
   PRINT
   ============================================================= */
@media print {
    #site-header, #back-to-top, .mobile-nav, .menu-toggle { display: none; }
    body { color: #000; }
}
