/*
Theme Name: Dhaner Shish - Chuadanga Political Portfolio
Theme URI: https://example.com/dhaner-shish
Author: Political Campaign Team
Author URI: https://example.com
Description: A professional political portfolio theme for BNP candidate from Chuadanga with ধানের শীষ symbol. Fully responsive, SEO-ready, and Gutenberg compatible. Features modular structure, Bengali language support, and political color scheme (Red, Green, Yellow, Black).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dhaner-shish
Tags: political, portfolio, responsive, translation-ready, custom-menu, custom-logo, featured-images, theme-options, block-styles, wide-blocks

This theme is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   1. CSS Variables / Design Tokens
   2. Reset & Base Styles
   3. Typography
   4. Layout Components
   5. Header Styles
   6. Footer Styles
   7. Navigation
   8. Buttons & Forms
   9. Cards & Sections
   10. Page Templates
   11. WordPress Core Styles
   12. Utilities & Helpers
   13. Animations
   14. Responsive / Media Queries
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;600;700&family=Noto+Serif+Bengali:wght@400;500;600;700&display=swap');

/* ==========================================================================
   1. CSS VARIABLES / DESIGN TOKENS
   WordPress Theme Customizer Compatible
   ========================================================================== */

:root {
    /* Primary Brand Colors */
    --color-primary: #9b1b30;           /* Political Red */
    --color-primary-light: #b83249;
    --color-primary-dark: #7a1526;
    --color-primary-rgb: 155, 27, 48;
    
    /* Secondary Brand Colors */
    --color-secondary: #006a4e;         /* Bangladesh Green */
    --color-secondary-light: #1a8a6e;
    --color-secondary-rgb: 0, 106, 78;
    
    /* Accent Colors */
    --color-accent: #f5a623;            /* Golden Yellow (Harvest) */
    --color-accent-soft: #f7bd5a;
    --color-accent-rgb: 245, 166, 35;
    
    /* Authority Colors */
    --color-authority: #1a1a1a;         /* Strong Black */
    --color-authority-rgb: 26, 26, 26;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #141414;
    --color-gray-50: #fafaf8;
    --color-gray-100: #f5f5f0;
    --color-gray-200: #e8e8e0;
    --color-gray-300: #d4d4cc;
    --color-gray-400: #a3a39a;
    --color-gray-500: #737369;
    --color-gray-600: #525249;
    --color-gray-700: #3d3d36;
    --color-gray-800: #292924;
    --color-gray-900: #1a1a16;

    /* Semantic Colors */
    --color-background: var(--color-white);
    --color-foreground: var(--color-black);
    --color-card: var(--color-white);
    --color-card-foreground: var(--color-black);
    --color-muted: var(--color-gray-100);
    --color-muted-foreground: var(--color-gray-500);
    --color-border: var(--color-gray-200);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-green: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    --gradient-golden: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
    --gradient-authority: linear-gradient(135deg, var(--color-authority) 0%, #2d2d2d 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
    --shadow-elevated: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-glow-red: 0 0 40px rgba(var(--color-primary-rgb), 0.3);
    --shadow-glow-green: 0 0 40px rgba(var(--color-secondary-rgb), 0.3);

    /* Typography */
    --font-sans: 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Noto Serif Bengali', Georgia, 'Times New Roman', serif;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --spacing-section: 5rem;
    --spacing-container: 2rem;
    --container-max-width: 1200px;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-foreground);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

@media (min-width: 640px) {
    h1 { font-size: var(--font-size-5xl); }
    h2 { font-size: var(--font-size-4xl); }
    h3 { font-size: var(--font-size-3xl); }
    h4 { font-size: var(--font-size-2xl); }
    h5 { font-size: var(--font-size-xl); }
    h6 { font-size: var(--font-size-lg); }
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-muted-foreground); }

/* ==========================================================================
   4. LAYOUT COMPONENTS
   ========================================================================== */

.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
    padding-top: 72px; /* Header height */
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-wrapper {
    padding: 5rem 0;
}

.section-wrapper--compact {
    padding: 3rem 0;
}

.section-wrapper--hero {
    padding: 5rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
    .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   5. HEADER STYLES
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-header__logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    box-shadow: var(--shadow-card);
}

.site-header__logo-icon span {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-white);
}

.site-header__logo-text h1 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-foreground);
    line-height: 1.2;
}

.site-header__logo-text span {
    font-size: var(--font-size-xs);
    color: var(--color-muted-foreground);
}

.site-header__menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .site-header__menu {
        display: flex;
    }
}

.site-header__menu-item {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.site-header__menu-item:hover {
    background-color: var(--color-muted);
}

.site-header__menu-item--active,
.site-header__menu-item.current-menu-item a {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.site-header__actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .site-header__actions {
        display: flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-base);
}

.mobile-menu-toggle:hover {
    background-color: var(--color-muted);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-elevated);
    padding: 1rem;
}

.mobile-menu.is-active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu__item {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.mobile-menu__item:hover {
    background-color: var(--color-muted);
}

/* ==========================================================================
   6. FOOTER STYLES
   ========================================================================== */

.site-footer {
    background-color: var(--color-authority);
    color: var(--color-white);
}

.site-footer__main {
    padding: 3rem 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.site-footer__widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer__widget-title {
    font-family: var(--font-serif);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-accent);
}

.site-footer__widget a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.site-footer__widget a:hover {
    color: var(--color-white);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.site-footer__copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
    .site-footer__copyright {
        flex-direction: row;
    }
}

/* ==========================================================================
   7. NAVIGATION
   WordPress Menu Compatible
   ========================================================================== */

/* Primary Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav-menu a:hover {
    background-color: var(--color-muted);
    color: var(--color-foreground);
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================================================
   8. BUTTONS & FORMS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn--hero {
    background: var(--gradient-hero);
    color: var(--color-white);
    box-shadow: var(--shadow-card);
}

.btn--hero:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: var(--shadow-elevated);
}

.btn--accent {
    background: var(--gradient-golden);
    color: var(--color-authority);
    box-shadow: var(--shadow-card);
}

.btn--accent:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--green {
    background: var(--gradient-green);
    color: var(--color-white);
}

.btn--facebook {
    background-color: #1877F2;
    color: var(--color-white);
}

.btn--facebook:hover {
    background-color: #1565c0;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-xs);
}

.btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
}

.btn--xl {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

/* Form Elements */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: var(--font-size-base);
    color: var(--color-foreground);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   9. CARDS & SECTIONS
   ========================================================================== */

/* Feature Card */
.feature-card {
    background-color: var(--color-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all var(--transition-base);
}

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

.feature-card__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
}

.feature-card__icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-white);
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card__description {
    color: var(--color-muted-foreground);
}

/* Mission Card */
.mission-card {
    background-color: var(--color-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.mission-card__header {
    padding: 1.5rem;
    color: var(--color-white);
}

.mission-card__header.bg-primary { background: var(--gradient-hero); }
.mission-card__header.bg-secondary { background: var(--gradient-green); }
.mission-card__header.bg-accent { background: var(--gradient-golden); color: var(--color-authority); }

.mission-card__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.mission-card__title {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.mission-card__subtitle {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.mission-card__body {
    padding: 1.5rem;
}

.mission-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mission-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--font-size-sm);
}

.mission-card__list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 0.5rem;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 3.5rem;
    width: 2px;
    height: calc(100% - 3.5rem);
    background-color: var(--color-border);
}

.timeline-item__icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    box-shadow: var(--shadow-card);
}

.timeline-item__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-white);
}

.timeline-item__content {
    flex: 1;
    background-color: var(--color-card);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.timeline-item__year {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-primary);
    background-color: rgba(var(--color-primary-rgb), 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.timeline-item__title {
    font-family: var(--font-serif);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item__description {
    color: var(--color-muted-foreground);
    font-size: var(--font-size-sm);
}

/* Stat Card */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--color-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.stat-card__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-green);
}

.stat-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-white);
}

.stat-card__value {
    font-family: var(--font-serif);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.stat-card__label {
    font-size: var(--font-size-sm);
    color: var(--color-muted-foreground);
}

/* Activity Card */
.activity-card {
    background-color: var(--color-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

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

.activity-card__image {
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-card__image.bg-primary { background: var(--gradient-hero); }
.activity-card__image.bg-secondary { background: var(--gradient-green); }
.activity-card__image.bg-accent { background: var(--gradient-golden); }

.activity-card__image svg {
    width: 4rem;
    height: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.activity-card__content {
    padding: 1.5rem;
}

.activity-card__category {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-muted-foreground);
    background-color: var(--color-muted);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.activity-card__title {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color var(--transition-base);
}

.activity-card:hover .activity-card__title {
    color: var(--color-primary);
}

.activity-card__description {
    color: var(--color-muted-foreground);
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   10. PAGE TEMPLATES
   ========================================================================== */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.page-hero--compact {
    padding: 5rem 0;
    min-height: auto;
}

.page-hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--color-primary-rgb), 0.9) 0%,
        rgba(var(--color-primary-rgb), 0.7) 50%,
        rgba(var(--color-primary-rgb), 0.6) 100%
    );
}

.page-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .page-hero__content {
        padding: 0 2rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header__title {
    margin-bottom: 1rem;
}

.section-header__description {
    color: var(--color-muted-foreground);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem;
    background: var(--gradient-hero);
    border-radius: var(--radius-2xl);
    color: var(--color-white);
}

/* Quote Block */
.quote-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

/* Pattern Wheat Background */
.pattern-wheat {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(var(--color-accent-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--color-accent-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(var(--color-accent-rgb), 0.03) 0%, transparent 50%);
}

/* Gradient Backgrounds */
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-green { background: var(--gradient-green); }
.bg-gradient-golden { background: var(--gradient-golden); }
.bg-gradient-authority { background: var(--gradient-authority); }

.bg-muted { background-color: var(--color-muted); }
.bg-background { background-color: var(--color-background); }

/* Text Colors for Gradient Backgrounds */
.text-primary-foreground { color: var(--color-white); }
.text-secondary-foreground { color: var(--color-white); }
.text-accent-foreground { color: var(--color-authority); }
.text-authority-foreground { color: var(--color-white); }

/* ==========================================================================
   11. WORDPRESS CORE STYLES
   ========================================================================== */

/* WordPress Generated Classes */
.alignnone {
    margin: 0.5rem 1.25rem 1.25rem 0;
}

.aligncenter {
    display: block;
    margin: 0.5rem auto;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1.25rem 1.25rem;
}

.alignleft {
    float: left;
    margin: 0.5rem 1.25rem 1.25rem 0;
}

.wp-caption {
    background: var(--color-muted);
    border: 1px solid var(--color-border);
    max-width: 100%;
    padding: 0.5rem;
    text-align: center;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}

.wp-caption-text {
    font-size: var(--font-size-sm);
    color: var(--color-muted-foreground);
    margin: 0;
    padding: 0.5rem;
}

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

/* WordPress Block Editor Support */
.entry-content {
    max-width: 720px;
    margin: 0 auto;
}

.entry-content > * {
    margin-bottom: 1.5rem;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

/* Wide Alignment */
.alignwide {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    max-width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

/* ==========================================================================
   12. UTILITIES & HELPERS
   ========================================================================== */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* ==========================================================================
   13. ANIMATIONS
   ========================================================================== */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================================================
   14. RESPONSIVE / MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .section-wrapper {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .section-wrapper {
        padding: 2rem 0;
    }
    
    .page-hero {
        min-height: 70vh;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .site-main {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
