/*
Theme Name: Abilities Rising
Theme URI: https://abilitiesrising.com
Author: Abilities Rising
Author URI: https://abilitiesrising.com
Description: Custom theme for Abilities Rising - Where Purpose Meets Possibility
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: abilities-rising
*/

/* --- CSS Variables (Brand Colors) --- */
:root {
    --sunrise-gold: #FFC940;
    --sky-blue: #4A90E2;
    --deep-indigo: #1F3B82;
    --soft-coral: #FF6B6B;
    --bright-white: #FFFFFF;
    --charcoal-gray: #3A3A3A;
    --light-gray: #f4f4f4;
}

/* --- General Styles --- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--charcoal-gray);
    scroll-behavior: smooth;
    padding-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-indigo);
    line-height: 1.2;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

a {
    color: var(--sky-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

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

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* --- Navigation --- */
.site-header {
    background-color: var(--bright-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 110px;
}

/* Hamburger Menu Button - Hidden on Desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--deep-indigo);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--deep-indigo);
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Navigation Links - Horizontal on Desktop */
.main-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: var(--deep-indigo);
    font-weight: 600;
    font-size: 1.1em;
    padding: 8px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.main-navigation a:hover {
    color: var(--sky-blue);
    text-decoration: none;
}

/* --- Hero Section --- */
.hero-section {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-tagline {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--soft-coral);
    margin-bottom: 10px;
}

.hero-headline {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--deep-indigo);
}

.cta-buttons a {
    display: inline-block;
    background-color: var(--sunrise-gold);
    color: var(--deep-indigo);
    padding: 12px 25px;
    margin-right: 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-buttons a:hover {
    background-color: #e0b13c;
    text-decoration: none;
}

.hero-image {
    width: 45%;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 5px solid var(--soft-coral);
}

/* --- Mission Statement --- */
.mission-section {
    background-color: var(--sky-blue);
    color: var(--bright-white);
    padding: 60px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    padding: 30px 20px;
}

.mission-section h2 {
    color: var(--bright-white);
    margin-bottom: 15px;
    width: 100%;
    font-size: 1.8em;
}

.mission-text {
    max-width: 100%;
    text-align: center;
}

.mission-text p {
    font-size: 1.6em;
    margin-top: 0;
    line-height: 1.4;
    margin-bottom: 0;
}

.mission-icon {
    font-size: 3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.mission-quote {
    font-size: 1.6em;
    font-style: italic;
    margin-top: 10px;
    position: relative;
    max-width: 100%;
    padding: 0 30px;
    line-height: 1.4;
}

.mission-quote::before {
    content: '"';
    font-size: 3.5em;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: -5px;
    top: -15px;
    line-height: 1;
}

.mission-quote footer {
    margin-top: 10px;
    font-size: 0.8em;
    font-style: normal;
    font-weight: bold;
    color: var(--sunrise-gold);
    background-color: transparent;
    opacity: 1;
}

/* --- Our Roots --- */
.roots-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.roots-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.roots-content {
    flex: 1.5;
    padding-right: 20px;
}

.roots-content h2 span {
    color: var(--sunrise-gold);
}

.roots-content>p:first-of-type {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.milestones h3 {
    margin-bottom: 15px;
    color: var(--deep-indigo);
}

.milestones ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.milestones li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.milestones li::before {
    content: '•';
    color: var(--soft-coral);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.roots-quote {
    font-style: italic;
    margin-top: 30px;
    font-size: 1.1em;
    color: var(--sky-blue);
}

.roots-image {
    flex: 1;
    text-align: center;
}

.roots-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    border: 5px solid var(--deep-indigo);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Constellations of Impact --- */
.constellations-section {
    padding: 80px 0;
}

.constellations-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.constellation-card {
    background-color: var(--bright-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon {
    font-size: 3em;
    color: var(--sunrise-gold);
    margin-bottom: 20px;
}

.constellation-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--deep-indigo);
}

.constellation-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.constellation-card li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-size: 0.95em;
}

.constellation-card li::before {
    content: '•';
    color: var(--sky-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.constellation-card .cta-button {
    display: inline-block;
    background-color: var(--sky-blue);
    color: var(--bright-white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.constellation-card .cta-button:hover {
    background-color: #3a82d6;
    text-decoration: none;
}

/* --- Quotes + Faces Panel --- */
.quotes-section {
    background-color: var(--deep-indigo);
    color: var(--bright-white);
    padding: 80px 0;
    position: relative;
}

.quotes-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.quote-block {
    flex: 1;
    text-align: center;
}

.quote-text {
    font-size: 1.6em;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.quote-text::before {
    content: '"';
    font-size: 4em;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    left: -20px;
    top: -20px;
    line-height: 0;
}

.quote-text::after {
    content: '"';
    font-size: 4em;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: -20px;
    bottom: -20px;
    line-height: 0;
}

.quote-author {
    font-size: 1em;
    font-weight: bold;
    opacity: 0.8;
}

.faces-image {
    flex: 1;
    text-align: center;
}

.faces-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* --- Media Highlights --- */
.media-section {
    padding: 80px 0;
    text-align: center;
}

.media-section h2 {
    margin-bottom: 40px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.media-logos img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
    max-width: 150px;
    width: auto;
}

.media-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Why We Rise --- */
.why-we-rise-section {
    background: linear-gradient(to right, var(--bright-white) 60%, var(--deep-indigo) 40%);
    color: var(--charcoal-gray);
    padding: 80px 0;
}

.why-we-rise-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-we-rise-section .text-content {
    flex: 1.2;
}

.why-we-rise-section .image-content {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.why-we-rise-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.why-we-rise-section h2 {
    color: var(--deep-indigo);
    margin-bottom: 30px;
}

.why-we-rise-section h2 span {
    color: var(--sky-blue);
}

.why-we-rise-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.why-we-rise-section ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1em;
}

.why-we-rise-section ul li::before {
    content: '•';
    color: var(--soft-coral);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
    line-height: 1;
}

.why-we-rise-section .closing-text {
    font-size: 1.1em;
}

/* --- Big Picture (Pillars) --- */
.big-picture-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.big-picture-section h2 {
    margin-bottom: 40px;
    text-align: center;
}

.big-picture-section>.container>p {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 1.1em;
}

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

.pillar-card {
    background-color: var(--deep-indigo);
    color: var(--bright-white);
    padding: 30px;
    border-radius: 10px;
}

.pillar-card h3 {
    color: var(--sky-blue);
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pillar-card h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--soft-coral);
    color: var(--bright-white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 1em;
    margin-right: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

/* --- Speaking Section --- */
.speaking-section {
    background: linear-gradient(to left, var(--deep-indigo) 40%, var(--light-gray) 60%);
    color: var(--charcoal-gray);
    padding: 80px 0;
}

.speaking-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.speaking-section .text-content {
    flex: 1.2;
}

.speaking-section .image-content {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.speaking-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.speaking-section h2 {
    color: var(--deep-indigo);
    margin-bottom: 30px;
}

.speaking-section h2 span {
    color: var(--sky-blue);
}

.speaking-points h3 {
    display: flex;
    align-items: center;
    color: var(--deep-indigo);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.speaking-points h3::before {
    content: '►';
    color: var(--sky-blue);
    margin-right: 10px;
    font-size: 1em;
}

.speaking-points ul {
    list-style: none;
    padding: 0 0 0 10px;
    margin-bottom: 20px;
}

.speaking-points ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.speaking-points ul li::before {
    content: '•';
    color: var(--soft-coral);
    position: absolute;
    left: 0;
    top: 5px;
}

/* --- Coaching Section --- */
.coaching-section {
    background: linear-gradient(to right, var(--light-gray) 60%, var(--soft-coral) 40%);
    padding: 80px 0;
    color: var(--charcoal-gray);
}

.coaching-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.coaching-section .text-content {
    flex: 1.2;
}

.coaching-section .image-content {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coaching-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.coaching-section h2 {
    color: var(--deep-indigo);
    margin-bottom: 30px;
}

.coaching-section h2 span {
    color: var(--sky-blue);
}

.coaching-section p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.coaching-offer h3 {
    display: flex;
    align-items: center;
    color: var(--deep-indigo);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.coaching-offer h3::before {
    content: '►';
    color: var(--sky-blue);
    margin-right: 10px;
    font-size: 1em;
}

.coaching-offer ul {
    list-style: none;
    padding: 0 0 0 10px;
    margin-bottom: 30px;
}

.coaching-offer ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.coaching-offer ul li::before {
    content: '•';
    color: var(--deep-indigo);
    position: absolute;
    left: 0;
    top: 5px;
}

.coaching-quote {
    background-color: var(--soft-coral);
    color: var(--bright-white);
    padding: 30px;
    border-radius: 10px;
    font-size: 1.3em;
    font-style: italic;
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.coaching-quote::before {
    content: '"';
    font-size: 4em;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 20px;
    top: 10px;
    line-height: 0;
}

/* --- Publishing Section --- */
.publishing-section {
    background: var(--bright-white);
    padding: 80px 0;
    color: var(--charcoal-gray);
}

.publishing-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.publishing-section .text-content {
    flex: 1.2;
}

.publishing-section .image-content {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.publishing-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.publishing-section h2 {
    color: var(--deep-indigo);
    margin-bottom: 30px;
}

.publishing-section h2 span {
    color: var(--sky-blue);
}

.publishing-section p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.publishing-points h3 {
    display: flex;
    align-items: center;
    color: var(--deep-indigo);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.publishing-points h3::before {
    content: '►';
    color: var(--sky-blue);
    margin-right: 10px;
    font-size: 1em;
}

.publishing-points ul {
    list-style: none;
    padding: 0 0 0 10px;
    margin-bottom: 20px;
}

.publishing-points ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.publishing-points ul li::before {
    content: '•';
    color: var(--soft-coral);
    position: absolute;
    left: 0;
    top: 5px;
}

/* --- Giving Back Section --- */
.giving-back-section {
    background: linear-gradient(to right, var(--light-gray) 60%, var(--soft-coral) 40%);
    padding: 80px 0;
    color: var(--charcoal-gray);
}

.giving-back-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.giving-back-section .text-content {
    flex: 1.2;
}

.giving-back-section .image-content {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.giving-back-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.giving-back-section h2 {
    color: var(--deep-indigo);
    margin-bottom: 30px;
}

.giving-back-section h2 span {
    color: var(--sky-blue);
}

.giving-back-points ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.giving-back-points ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1em;
}

.giving-back-points ul li::before {
    content: '►';
    color: var(--sky-blue);
    margin-right: 10px;
    font-size: 1em;
    position: absolute;
    left: 0;
    top: 4px;
    line-height: 1;
}

.giving-back-quote {
    background-color: var(--soft-coral);
    color: var(--bright-white);
    padding: 30px;
    border-radius: 10px;
    font-size: 1.3em;
    font-style: italic;
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.giving-back-quote::before {
    content: '"';
    font-size: 4em;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 20px;
    top: 10px;
    line-height: 0;
}

/* --- Still to Come Section --- */
.still-to-come-section {
    background: var(--bright-white);
    padding: 80px 0;
    color: var(--charcoal-gray);
}

.still-to-come-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.still-to-come-section .text-content {
    flex: 1.2;
}

.still-to-come-section .image-content {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.still-to-come-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.still-to-come-section h2 {
    color: var(--deep-indigo);
    margin-bottom: 30px;
}

.still-to-come-section h2 span {
    color: var(--sky-blue);
}

.still-to-come-section .text-content>p:first-of-type {
    margin-bottom: 40px;
    font-size: 1.1em;
}

.still-to-come-points .point-item {
    margin-bottom: 30px;
    position: relative;
}

.still-to-come-points h3 {
    display: flex;
    align-items: flex-start;
    color: var(--deep-indigo);
    margin-bottom: 8px;
    line-height: 1.3;
    margin-left: 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.2em;
}

.still-to-come-points h3::before {
    content: '►';
    color: var(--sky-blue);
    font-size: 1em;
    line-height: 1;
    position: absolute;
    left: 0px;
    top: 4px;
}

.still-to-come-points h3 strong {
    font-weight: bold;
}

.point-description {
    padding-left: 30px;
}

.point-description p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.6;
    color: var(--charcoal-gray);
    padding-left: 0;
}

.point-description p:last-child {
    margin-bottom: 0;
}

/* --- About Us Section --- */
.about-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.bio-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.bio-section:nth-child(odd) {
    flex-direction: row-reverse;
}

.bio-image {
    flex: 1;
    text-align: center;
}

.bio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    max-width: 350px;
}

.bio-content {
    flex: 2;
}

.bio-content h3 {
    margin-top: 0;
}

/* --- Contact Us Section --- */
.contact-section {
    background-color: var(--deep-indigo);
    color: var(--bright-white);
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    color: var(--bright-white);
    margin-bottom: 20px;
}

.contact-section h3 {
    color: var(--bright-white);
    margin-top: 40px;
    margin-bottom: 20px;
}

.contact-section>.container>p:first-of-type {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--sunrise-gold);
    text-decoration: underline;
}

.contact-info a:hover {
    color: var(--bright-white);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--charcoal-gray);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 30px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.footer-logo p {
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--sunrise-gold);
    text-decoration: none;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--sunrise-gold);
    text-decoration: none;
}

/* --- Blog Styles --- */
.blog-page {
    background-color: var(--light-gray);
    padding: 80px 0;
    min-height: 60vh;
}

.blog-page h1 {
    text-align: center;
    margin-bottom: 60px;
}

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

.blog-card {
    background: var(--bright-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-title {
    font-size: 1.3em;
    margin: 0 0 15px 0;
    color: var(--deep-indigo);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--sky-blue);
}

.blog-card-excerpt {
    color: var(--charcoal-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-meta {
    font-size: 0.85em;
    color: #888;
}

/* Single Post */
.single-post {
    background-color: var(--bright-white);
    padding: 80px 0;
}

.single-post .container {
    max-width: 800px;
}

.single-post h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--deep-indigo);
}

.post-meta {
    color: #888;
    margin-bottom: 40px;
    font-size: 0.95em;
}

.post-content {
    font-size: 1.1em;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 1.5em;
}

.post-content img {
    border-radius: 10px;
    margin: 30px 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background: var(--bright-white);
    border-radius: 5px;
    color: var(--deep-indigo);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--sky-blue);
    color: var(--bright-white);
}

.pagination .current {
    background: var(--deep-indigo);
    color: var(--bright-white);
}

/* ======================================== */
/* ========== RESPONSIVE STYLES ========== */
/* ======================================== */

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.3em;
    }

    /* Mobile Header/Nav */
    .site-header {
        padding: 10px 0;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .logo img {
        height: 70px;
    }

    /* Show hamburger on mobile */
    .menu-toggle {
        display: block;
        order: 2;
    }

    /* Mobile Navigation - Hidden by default */
    .main-navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        background: var(--bright-white);
        padding: 20px 0;
        gap: 0;
        border-top: 1px solid var(--light-gray);
        margin-top: 15px;
    }

    .main-navigation.menu-open {
        display: flex;
    }

    .main-navigation li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .main-navigation a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1em;
        border-bottom: 1px solid var(--light-gray);
    }

    .main-navigation li:last-child a {
        border-bottom: none;
    }

    /* Hamburger animation when open */
    .menu-toggle[aria-expanded="true"] .hamburger {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* General Section Stacking */
    .hero-section .container,
    .roots-section .container,
    .quotes-section .container,
    .why-we-rise-section .container,
    .speaking-section .container,
    .coaching-section .container,
    .publishing-section .container,
    .giving-back-section .container,
    .still-to-come-section .container,
    .bio-section {
        flex-direction: column;
        text-align: center;
    }

    .bio-section:nth-child(odd) {
        flex-direction: column;
    }

    /* Image Handling */
    .hero-image,
    .roots-image,
    .faces-image,
    .bio-image,
    .why-we-rise-section .image-content,
    .speaking-section .image-content,
    .coaching-section .image-content,
    .publishing-section .image-content,
    .giving-back-section .image-content,
    .still-to-come-section .image-content {
        width: 80%;
        max-width: 350px;
        margin: 30px auto 0 auto;
        order: 2;
        flex: none;
    }

    .roots-image img {
        border-radius: 10px;
    }

    /* Content Width & Alignment */
    .hero-content,
    .roots-content,
    .mission-text,
    .why-we-rise-section .text-content,
    .speaking-section .text-content,
    .coaching-section .text-content,
    .publishing-section .text-content,
    .giving-back-section .text-content,
    .still-to-come-section .text-content,
    .bio-content {
        max-width: 100%;
        order: 1;
        flex: none;
    }

    .roots-content {
        padding-right: 0;
    }

    .quotes-section .quote-block {
        margin-bottom: 20px;
    }

    /* Center specific list types */
    .milestones ul,
    .speaking-points ul,
    .coaching-offer ul,
    .publishing-points ul,
    .giving-back-points ul {
        text-align: left;
        display: inline-block;
        padding-left: 5%;
        padding-right: 5%;
    }

    .still-to-come-points h3,
    .still-to-come-points .point-description {
        padding-left: 15px;
        text-align: left;
    }

    .still-to-come-points h3::before {
        left: -5px;
    }

    /* Grid Stacking */
    .constellation-grid,
    .pillars-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Stacking */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        min-width: auto;
    }

    .footer-nav ul {
        align-items: center;
    }

    /* RESPONSIVE BACKGROUND & COLOR FIXES */
    .giving-back-section,
    .why-we-rise-section,
    .speaking-section {
        background: var(--bright-white);
        color: var(--charcoal-gray);
    }

    .giving-back-section h2,
    .why-we-rise-section h2,
    .speaking-section h2,
    .giving-back-section h3,
    .why-we-rise-section h3,
    .speaking-section h3 {
        color: var(--deep-indigo);
    }

    .giving-back-section h2 span,
    .why-we-rise-section h2 span,
    .speaking-section h2 span {
        color: var(--sky-blue);
    }

    .why-we-rise-section ul li::before {
        color: var(--soft-coral);
    }

    .speaking-points h3::before {
        color: var(--sky-blue);
    }

    .speaking-points ul li::before {
        color: var(--soft-coral);
    }

    .giving-back-points ul li::before {
        color: var(--sky-blue);
    }

    .giving-back-quote {
        background-color: var(--soft-coral);
        color: var(--bright-white);
    }

    /* Mission Section Responsive */
    .mission-section {
        padding: 40px 15px;
        min-height: auto;
    }

    .mission-content {
        padding: 20px 15px;
        gap: 10px;
    }

    .mission-section h2 {
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .mission-text p,
    .mission-quote {
        font-size: 1.4em;
    }

    .mission-icon {
        font-size: 2.5em;
    }

    .mission-quote::before {
        font-size: 3em;
        top: -10px;
        left: 5px;
    }
}

/* Smaller Mobile Adjustments */
@media (max-width: 480px) {
    body {
        padding-top: 100px;
    }

    .hero-headline {
        font-size: 2.2em;
    }

    .cta-buttons a {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .cta-buttons a:last-child {
        margin-bottom: 0;
    }

    .footer-nav ul li {
        margin-bottom: 5px;
    }

    section {
        padding: 60px 0;
    }

    .hero-section .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-header nav {
        padding: 5px 15px;
    }

    .logo img {
        height: 60px;
    }
}