/*
Theme Name: CLEP Initiative
Theme URI: http://phiaconsult.com/clep
Author: PHI A Consult
Author URI: http://phiaconsult.com
Description: WordPress theme for the CLEP Initiative with dashboard-managed stories and starter content matching the original site.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clep-initiative
*/

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

        :root {
            --savanna-gold: #D4AF37;
            --earth-brown: #8B4513;
            --forest-green: #228B22;
            --sunset-orange: #FF8C00;
            --clay-red: #CD5C5C;
            --cream: #FFF8DC;
            --deep-green: #006400;
            --warm-beige: #F5F5DC;
            --charcoal: #36454F;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            overflow-x: hidden;
            background: var(--warm-beige);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 248, 220, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0.5rem 2rem;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--savanna-gold);
        }

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

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--deep-green);
            font-weight: 700;
        }

        .nav-logo img {
            height: 50px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--charcoal);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--forest-green);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--savanna-gold);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--forest-green);
            color: white !important;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--deep-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
        }

        .nav-cta::after {
            display: none !important;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--charcoal);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(255,140,0,0.85) 0%, rgba(34,139,34,0.85) 100%), 
                        url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?w=1920') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            padding: 2rem;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-content {
            max-width: 900px;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: var(--savanna-gold);
            color: var(--charcoal);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 5vw, 4.5rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            opacity: 0.95;
            margin-bottom: 3rem;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--savanna-gold);
            color: var(--charcoal);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-primary:hover {
            background: #FFD700;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 3px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--forest-green);
        }

        .btn-small {
            padding: 0.75rem 1.5rem;
            font-size: 0.85rem;
        }

        /* Stats Bar */
        .stats-bar {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-green) 100%);
            color: white;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: -4rem auto 0;
            position: relative;
            z-index: 10;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(34, 139, 34, 0.3);
            border: 4px solid var(--savanna-gold);
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 50px;
            width: 1px;
            background: rgba(255,255,255,0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--savanna-gold);
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.95;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Content Sections */
        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            color: var(--sunset-orange);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: block;
        }

        .section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--deep-green);
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            color: var(--charcoal);
            font-size: 1.2rem;
            opacity: 0.8;
        }

        /* Opportunity Cards */
        .opportunity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .opportunity-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border-bottom: 5px solid var(--savanna-gold);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .opportunity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--savanna-gold), var(--sunset-orange));
        }

        .opportunity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .opportunity-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-green) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 2rem;
            color: white;
            box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
        }

        .opportunity-card h3 {
            color: var(--deep-green);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .opportunity-card p {
            color: var(--charcoal);
            line-height: 1.8;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
            border-left: 5px solid var(--savanna-gold);
            padding: 2rem;
            margin: 3rem 0;
            border-radius: 0 15px 15px 0;
            font-style: italic;
            color: var(--charcoal);
            font-size: 1.1rem;
            position: relative;
        }

        .highlight-box::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--savanna-gold);
            opacity: 0.3;
            font-family: 'Playfair Display', serif;
        }

        /* Blog Section Styles */
        .blog-section {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-green) 100%);
            color: white;
            padding: 6rem 2rem;
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .blog-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
        }

        .blog-section .section-header h2 {
            color: white;
        }

        .blog-section .section-subtitle {
            color: rgba(255,255,255,0.9);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 3px solid transparent;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            border-color: var(--savanna-gold);
        }

        .blog-thumbnail {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #e0d8c8 0%, #f0e8d8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .blog-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--savanna-gold);
            color: var(--charcoal);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-date {
            color: var(--sunset-orange);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-title {
            color: var(--deep-green);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.4;
            font-family: 'Playfair Display', serif;
        }

        .blog-excerpt {
            color: var(--charcoal);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-read-more {
            color: var(--forest-green);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .blog-read-more:hover {
            color: var(--sunset-orange);
            gap: 1rem;
        }

        /* Blog Modal */
        .blog-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            overflow-y: auto;
            padding: 2rem;
        }

        .blog-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-modal-content {
            background: white;
            max-width: 900px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        .blog-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--savanna-gold);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--charcoal);
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-modal-close:hover {
            background: var(--sunset-orange);
            transform: rotate(90deg);
        }

        .blog-modal-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #e0d8c8 0%, #f0e8d8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            font-size: 1.2rem;
            font-weight: 600;
        }

        .blog-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-modal-body {
            padding: 3rem;
        }

        .blog-modal-category {
            display: inline-block;
            background: var(--savanna-gold);
            color: var(--charcoal);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .blog-modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--deep-green);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .blog-modal-date {
            color: var(--sunset-orange);
            font-weight: 600;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-modal-text {
            color: var(--charcoal);
            line-height: 1.9;
            font-size: 1.1rem;
        }

        .blog-modal-text p {
            margin-bottom: 1.5rem;
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--cream);
            padding: 6rem 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            background: white;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .gallery-item .img-placeholder {
            min-height: 280px;
            background: linear-gradient(135deg, #e8e0d0 0%, #f0e8d8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            font-weight: 600;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,100,0,0.95), transparent);
            color: white;
            padding: 3rem 1.5rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Video Section */
        .video-section {
            padding: 6rem 2rem;
            background: white;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
            background: var(--deep-green);
            border: 5px solid var(--savanna-gold);
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-green) 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, var(--deep-green) 0%, var(--forest-green) 100%);
        }

        .play-button {
            width: 100px;
            height: 100px;
            background: var(--savanna-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            border: 5px solid white;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: #FFD700;
        }

        .play-button::after {
            content: '▶';
            color: var(--charcoal);
            font-size: 2rem;
            margin-left: 8px;
            font-weight: bold;
        }

        .video-placeholder h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .video-embed {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            display: none;
        }

        .video-embed.active {
            display: block;
        }

        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .program-card {
            text-align: center;
            padding: 2.5rem 2rem;
            background: white;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .program-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: var(--forest-green);
            transition: height 0.3s ease;
            z-index: 0;
        }

        .program-card:hover {
            border-color: var(--forest-green);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .program-card:hover::after {
            height: 5px;
        }

        .program-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--savanna-gold) 0%, var(--sunset-orange) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        .program-card:hover .program-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .program-card h3 {
            color: var(--deep-green);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
        }

        .program-card p {
            color: var(--charcoal);
            position: relative;
            z-index: 1;
        }

        /* Team Section */
        .team-section {
            background: var(--cream);
            padding: 6rem 2rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            border-bottom: 4px solid var(--savanna-gold);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .team-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #e0d8c8 0%, #f0e8d8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            font-weight: 600;
        }

        .team-info {
            padding: 2rem;
        }

        .team-info h4 {
            color: var(--deep-green);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .team-info p {
            color: var(--sunset-orange);
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--clay-red) 100%);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 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.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .cta-section p {
            font-size: 1.3rem;
            opacity: 0.95;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-light {
            background: white;
            color: var(--clay-red);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .btn-light:hover {
            background: var(--cream);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 3px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--clay-red);
        }

        .trust-badges {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .trust-badges span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--deep-green);
            color: white;
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--savanna-gold);
        }

        .footer-tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        .footer-nav a:hover {
            color: var(--savanna-gold);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: var(--cream);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                gap: 1.5rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

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

            .blog-modal-content {
                margin: 0;
                border-radius: 0;
                max-height: 100vh;
            }

            .blog-modal-image {
                height: 250px;
            }

            .blog-modal-body {
                padding: 1.5rem;
            }

            .blog-modal-title {
                font-size: 1.5rem;
            }

            .stats-bar {
                margin-top: -2rem;
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-item:not(:last-child)::after {
                display: none;
            }

            .cta-group, .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .section h2 {
                font-size: 2.2rem;
            }
        }


/* WordPress specific helpers */
.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { .admin-bar .navbar { top: 46px; } }

.nav-menu,
.footer-nav { list-style: none; }

.nav-menu li,
.footer-nav li { list-style: none; }

.nav-logo img.custom-logo { height: 50px; width: auto; }
.nav-logo .custom-logo-link { display: inline-flex; align-items: center; }

.blog-grid:empty::before {
    content: "Stories will appear here after activation and seeding.";
    display: block;
    color: rgba(255,255,255,0.85);
    text-align: center;
    grid-column: 1 / -1;
}

.gallery-item img,
.team-image img,
.blog-thumbnail img,
.blog-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-left: 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer-nav a:hover { opacity: 1; }
