/*
Theme Name: INKOSI Blog
Theme URI: https://inkosi.global
Author: INKOSI Global LLC
Author URI: https://inkosi.global
Description: Custom WordPress theme for INKOSI Global blog - Leadership transformation and authentic authority. Matches the main inkosi.global website design.
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: inkosi-blog
Tags: blog, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments

From performed competence to authentic authority.
*/

/* ============================================
   CSS VARIABLES - INKOSI BRAND
   ============================================ */
:root {
    --gold: #C5A456;
    --gold-light: #D4B978;
    --charcoal: #2D2D2D;
    --emerald: #1D6F42;
    --soft-gold: #F5F0E6;
    --cream: #FDFBF7;
    --white: #FFFFFF;
    --gray: #888888;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--emerald);
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--charcoal);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(197, 164, 86, 0.2);
}

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

.main-navigation ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--gold);
}

/* Dropdown */
.main-navigation li {
    position: relative;
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream);
    min-width: 200px;
    padding: 0.75rem 0;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
}

.main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.main-navigation .sub-menu li {
    width: 100%;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 10px 20px;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: normal;
}

.main-navigation .sub-menu a:hover {
    background: var(--soft-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

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

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: linear-gradient(160deg, var(--charcoal) 0%, #1a1a1a 100%);
    padding: 180px 5% 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-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='%23C5A456' fill-opacity='0.06'%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;
}

.page-hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -0.02em;
}

.page-hero h1 em {
    color: var(--gold);
    font-style: normal;
    position: relative;
}

.page-hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

/* ============================================
   BLOG MAIN CONTENT
   ============================================ */
.blog-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
    position: relative;
}

/* Floating decorative elements */
.blog-main::before {
    content: '✦';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.blog-main::after {
    content: '◇';
    position: absolute;
    top: 200px;
    right: 5%;
    font-size: 1.5rem;
    color: var(--emerald);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   CATEGORY FILTER
   ============================================ */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-filter a,
.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--soft-gold);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    text-decoration: none;
}

.category-filter a:hover,
.category-filter a.active,
.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 164, 86, 0.3);
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card,
article.post {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.blog-card::before,
article.post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--emerald));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.blog-card:hover,
article.post:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.blog-card:hover::before,
article.post:hover::before {
    transform: scaleX(1);
}

/* Card Image */
.blog-card-image,
.post-thumbnail {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Default gradient backgrounds for posts without thumbnails */
.blog-card-image.leadership,
.post-thumbnail.leadership { background: linear-gradient(135deg, #C5A456 0%, #D4B978 50%, #E8D5A3 100%); }
.blog-card-image.four-movements,
.post-thumbnail.four-movements { background: linear-gradient(135deg, #1D6F42 0%, #2A8B55 50%, #3DAF6B 100%); }
.blog-card-image.transformation,
.post-thumbnail.transformation { background: linear-gradient(135deg, #2D2D2D 0%, #4A4A4A 50%, #666666 100%); }
.blog-card-image.african-wisdom,
.post-thumbnail.african-wisdom { background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%); }
.blog-card-image.sovereign-thinking,
.post-thumbnail.sovereign-thinking { background: linear-gradient(135deg, #C5A456 0%, #1D6F42 100%); }
.blog-card-image.default,
.post-thumbnail.default { background: linear-gradient(135deg, var(--charcoal) 0%, #4A4A4A 100%); }

.blog-card-image .icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

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

/* Card Content */
.blog-card-content,
.post-content {
    padding: 35px;
}

.blog-card-meta,
.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

/* Category Badge */
.blog-category,
.cat-links a {
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 20px;
    color: var(--white);
    background: var(--gold);
    text-decoration: none;
}

.cat-links a:hover {
    background: var(--emerald);
}

/* Category-specific colors */
.blog-category.leadership { background: var(--gold); }
.blog-category.four-movements { background: var(--emerald); }
.blog-category.transformation { background: var(--charcoal); }
.blog-category.african-wisdom { background: #A0522D; }
.blog-category.sovereign-thinking { background: linear-gradient(90deg, var(--gold), var(--emerald)); }

/* Date */
.blog-date,
.posted-on {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

.posted-on a {
    color: var(--gray);
}

/* Post Title */
.blog-card h3,
.entry-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.35;
}

.blog-card h3 a,
.entry-title a {
    text-decoration: none;
    color: var(--charcoal);
    background: linear-gradient(90deg, var(--gold), var(--gold));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease, color 0.3s ease;
}

.blog-card h3 a:hover,
.entry-title a:hover {
    color: var(--gold);
    background-size: 100% 2px;
}

/* Excerpt */
.blog-card p,
.entry-summary p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Read More Link */
.read-more,
.more-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.read-more:hover,
.more-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateX(5px);
}

.read-more::after,
.more-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after,
.more-link:hover::after {
    transform: translateX(5px);
}

/* ============================================
   FEATURED POST
   ============================================ */
.featured-post {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-post .blog-card-image {
    min-height: 450px;
}

.featured-post .blog-card-image .icon {
    font-size: 6rem;
}

.featured-post .blog-card-image::after {
    content: 'FEATURED';
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--white);
    color: var(--charcoal);
    padding: 8px 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    border-radius: 25px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-post .blog-card-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.featured-post h3 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.featured-post p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 5%;
}

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

.single-post-header .entry-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.single-post-header .post-meta {
    justify-content: center;
}

.single-post-body {
    font-size: 1.1rem;
    line-height: 1.9;
}

.single-post-body h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--charcoal);
}

.single-post-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.single-post-body p {
    margin-bottom: 25px;
}

.single-post-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 30px 40px;
    margin: 40px 0;
    background: var(--soft-gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--charcoal);
}

.single-post-body ul,
.single-post-body ol {
    margin: 25px 0;
    padding-left: 30px;
}

.single-post-body li {
    margin-bottom: 10px;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid var(--soft-gold);
    margin-top: 60px;
}

.post-navigation a {
    color: var(--charcoal);
    font-size: 0.9rem;
}

.post-navigation a:hover {
    color: var(--gold);
}

/* ============================================
   SOCIAL SHARE
   ============================================ */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--soft-gold);
}

.share-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

.share-icons {
    display: flex;
    gap: 8px;
}

.share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.share-icon.linkedin { background: #E8F4F8; color: #0077B5; }
.share-icon.linkedin:hover { background: #0077B5; color: white; transform: translateY(-3px); }

.share-icon.twitter { background: #E8F4F8; color: #1DA1F2; }
.share-icon.twitter:hover { background: #1DA1F2; color: white; transform: translateY(-3px); }

.share-icon.facebook { background: #E8F0FB; color: #1877F2; }
.share-icon.facebook:hover { background: #1877F2; color: white; transform: translateY(-3px); }

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

.pagination a,
.pagination span {
    padding: 12px 18px;
    background: var(--white);
    border: 2px solid var(--soft-gold);
    color: var(--charcoal);
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination a:hover,
.pagination .current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ============================================
   SIDEBAR / WIDGETS
   ============================================ */
.widget-area {
    padding: 40px;
    background: var(--soft-gold);
    border-radius: 12px;
}

.widget {
    margin-bottom: 40px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 164, 86, 0.2);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--charcoal);
}

.widget a:hover {
    color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--charcoal);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(197, 164, 86, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(197, 164, 86, 0.4);
    color: var(--charcoal);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

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

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #C5A456 0%, #D4B978 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(197, 164, 86, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.chat-widget-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(197, 164, 86, 0.5);
    color: #fff;
}

.chat-widget-btn .pulse {
    width: 10px;
    height: 10px;
    background: #1D6F42;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* ============================================
   COMMENTS
   ============================================ */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--soft-gold);
}

.comments-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 30px;
    background: var(--soft-gold);
    border-radius: 12px;
    margin-bottom: 20px;
}

.comment-author {
    font-weight: 600;
    color: var(--charcoal);
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.comment-reply-link {
    font-size: 0.8rem;
    color: var(--gold);
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
}

.comment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--soft-gold);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.comment-form input[type="submit"] {
    background: var(--gold);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background: var(--emerald);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-post {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
    
    .featured-post .blog-card-image {
        min-height: 300px;
    }
    
    .page-hero h1 {
        font-size: 3.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation.toggled ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .page-hero {
        padding: 150px 5% 100px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-post {
        grid-column: span 1;
    }
    
    .featured-post .blog-card-content {
        padding: 40px;
    }
    
    .featured-post h3 {
        font-size: 1.8rem;
    }
    
    .category-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.7rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .single-post-header .entry-title {
        font-size: 2rem;
    }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.aligncenter {
    display: block;
    margin: 20px auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    padding: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 30px 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
