/* =============================================
   AL FALAH WEALTH - MAIN STYLESHEET
   ============================================= */

/* =============================================
   CSS VARIABLES
   ============================================= */
   
   /* SELF-HOSTED FONTS */
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v30-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v30-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v30-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v30-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v30-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/lora-v32-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/lora-v32-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/lora-v32-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-v16-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-v16-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-v16-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-v16-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
   
   
:root {
    --forest-green: #1a4d2e;
    --deep-green: #0d3320;
    --mid-green: #2d7a4a;
    --light-green: #4a9d6a;
    --gold: #d4a843;
    --light-gold: #e8c668;
    --dark-gold: #b8922e;
    --pale-gold: #f0d88a;
    --cream: #faf8f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-grey: #555;
    --soil-dark: #3d2914;
    --soil-mid: #5c3d1e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 51, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo svg {
    width: 45px;
    height: 40px;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
}

.nav-logo-text span {
    color: var(--light-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--light-gold);
}

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

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

.nav-cta {
    background: var(--gold);
    color: var(--deep-green);
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

/* Navigation Flag */
.nav-flag {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--forest-green) 50%, var(--mid-green) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.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.03'%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");
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

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

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--light-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--light-gold);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 500px;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-diamonds {
    position: relative;
}

.hero-diamonds svg {
    width: 350px;
    height: 300px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    background: var(--gold);
    color: var(--deep-green);
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 35px;
    border: 2px solid var(--white);
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* =============================================
   PAGE HEADER (for inner pages)
   ============================================= */
.page-header {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--forest-green) 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--deep-green);
    margin-bottom: 30px;
    line-height: 1.3;
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */
.philosophy {
    padding: 120px 0;
    background: var(--cream);
}

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

.philosophy-text {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.9;
}

.philosophy-quote {
    background: var(--deep-green);
    padding: 50px 60px;
    border-radius: 8px;
    position: relative;
    margin-top: 40px;
}

.philosophy-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 30px;
    line-height: 1;
}

.philosophy-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.philosophy-quote cite {
    display: block;
    margin-top: 20px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--light-gold);
    font-style: normal;
}

/* =============================================
   PILLARS SECTION
   ============================================= */
.pillars {
    padding: 100px 0;
    background: var(--white);
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.pillars-header {
    text-align: center;
    margin-bottom: 70px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    background: var(--cream);
    padding: 45px 35px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(26, 77, 46, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 15px;
}

.pillar-description {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--forest-green) 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

/* =============================================
   CURRICULUM SECTION
   ============================================= */
.curriculum-section {
    padding: 80px 0;
    background: var(--white);
}

.curriculum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.curriculum-intro {
    text-align: center;
    margin-bottom: 60px;
}

.curriculum-description {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
}

.tree-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    overflow-x: auto;
}

.tree-visual svg {
    max-width: 100%;
    height: auto;
}

/* =============================================
   COURSE CARDS
   ============================================= */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.course-card {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(26, 77, 46, 0.12);
}

.course-card-header {
    background: var(--deep-green);
    padding: 25px 30px;
    position: relative;
}

.course-card-header.gold {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
}

.course-level {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    color: var(--light-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.course-card-header.gold .course-level {
    color: rgba(255, 255, 255, 0.8);
}

.course-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
}

.course-card-body {
    padding: 30px;
}

.course-card-body p {
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-topics {
    list-style: none;
    margin-bottom: 25px;
}

.course-topics li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.course-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mid-green);
    font-weight: bold;
}

.course-cta {
    display: inline-block;
    background: var(--forest-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.course-cta:hover {
    background: var(--deep-green);
    transform: translateX(5px);
}

/* =============================================
   FLYERS SECTION
   ============================================= */
.flyers-section {
    padding: 80px 0;
    background: var(--cream);
}

.flyers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

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

.flyer-placeholder {
    background: var(--white);
    border: 2px dashed var(--gold);
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
}

.flyer-placeholder-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flyer-placeholder-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
}

.flyer-placeholder p {
    color: var(--text-grey);
    font-style: italic;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--deep-green);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* =============================================
   BLOG STYLES (for volunteer/outreach pages)
   ============================================= */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
}

.blog-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-green);
    margin: 50px 0 25px;
    line-height: 1.3;
}

.blog-content h2:first-of-type {
    margin-top: 0;
}

.blog-content p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 25px;
}

.blog-content ul {
    margin: 0 0 30px 20px;
    color: var(--text-grey);
}

.blog-content ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Blog Images */
.blog-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-image.placeholder {
    background: var(--white);
    border: 2px dashed var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    box-shadow: none;
}

.blog-image.placeholder .placeholder-content {
    text-align: center;
    color: var(--text-grey);
    padding: 40px;
}

.blog-image.placeholder svg {
    width: 60px;
    height: 60px;
    fill: var(--gold);
    opacity: 0.5;
    margin-bottom: 15px;
}

.blog-image.placeholder p {
    font-style: italic;
    margin: 0;
}

/* Blog Image Positions */
.blog-image.float-left {
    float: left;
    width: 45%;
    margin: 10px 30px 20px 0;
}

.blog-image.float-right {
    float: right;
    width: 45%;
    margin: 10px 0 20px 30px;
}

.blog-image.full-width {
    width: 100%;
    float: none;
    clear: both;
}

.blog-image.medium {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    float: none;
    clear: both;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Highlight Box */
.highlight-box {
    background: var(--deep-green);
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
    clear: both;
}

.highlight-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 20px;
}

.highlight-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.highlight-box ul {
    color: rgba(255,255,255,0.85);
    margin-left: 20px;
}

.highlight-box ul li {
    margin-bottom: 10px;
}

/* Quote Block */
.quote-block {
    border-left: 4px solid var(--gold);
    padding: 20px 30px;
    margin: 40px 0;
    background: var(--white);
    clear: both;
}

.quote-block p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-green);
    font-style: italic;
    margin: 0;
}

.quote-block cite {
    display: block;
    margin-top: 15px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--gold);
    font-style: normal;
}

/* =============================================
   RESPONSIVE - TABLET (max-width: 992px)
   ============================================= */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: 40px;
    }

    .hero-description {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 51, 32, 0.98);
        flex-direction: column;
        padding: 20px 30px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

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

    /* Mobile Flag Position */
    .nav-flag {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Mobile Hero Section - Centered */
    .hero {
        text-align: center;
        padding: 120px 20px 60px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-tagline {
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Make diamond 50% smaller on mobile */
    .hero-visual img,
    .hero-diamonds img {
        width: 50% !important;
        max-width: 175px;
        height: auto;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 2.2rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Philosophy Quote */
    .philosophy-quote {
        padding: 40px 30px;
    }

    .philosophy-quote p {
        font-size: 1.3rem;
    }

    /* Course Grid */
    .courses-grid {
        grid-template-columns: 1fr;
    }

    /* Blog Images */
    .blog-image.float-left,
    .blog-image.float-right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

    .blog-content {
        padding: 50px 20px;
    }

    .blog-content h2 {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =============================================
   INITIATIVES SECTION
   ============================================= */

.initiatives {
    padding: 100px 0;
    background: var(--cream);
}

.initiatives-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.initiatives-header {
    text-align: center;
    margin-bottom: 60px;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.initiative-card {
    background: var(--white);
    border-radius: 16px;
    padding: 45px 40px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: block;
}

.initiative-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 25px 60px rgba(26, 77, 46, 0.12);
}

.initiative-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green), var(--mid-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.initiative-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--light-gold);
}

.initiative-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 15px;
}

.initiative-description {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.initiative-link {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--gold);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.initiative-card:hover .initiative-link {
    color: var(--dark-gold);
}

/* Responsive - Tablet & Mobile */
@media (max-width: 768px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .initiative-card {
        padding: 35px 30px;
    }
}
