/*
Theme Name: The Nation of Afurika
Theme URI: https://thenationofafurika.nl
Author: NOA Digital Sovereignty Studio
Author URI: https://thenationofafurika.nl
Description: Ultra-premium sovereign ceremonial WordPress theme for The Nation of Afurika. Features matte deep black design with luxurious metallic gold accents, sacred Kemetische geometry, Pan-African symbolism, and cinematic temple aesthetics. Built for sovereignty, heritage, and digital royalty.
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: nation-of-afurika
Tags: dark, gold, luxury, african, sovereign, ceremonial, premium, one-page, custom-logo, custom-colors, custom-header, custom-menu, featured-images, full-width-template, sticky-post, threaded-comments, translation-ready
*/

/* ============================================
   THE NATION OF AFURIKA - MASTER STYLESHEET
   Sovereign Ceremonial Design System
   ============================================ */

/* ----- CSS CUSTOM PROPERTIES (Design Tokens) ----- */
:root {
    /* Core Palette */
    --noa-black: #0F0F0F;
    --noa-black-deep: #050505;
    --noa-black-soft: #1A1A1A;
    --noa-gold: #C9A04A;
    --noa-gold-light: #E8C96A;
    --noa-gold-dark: #8B6914;
    --noa-gold-pale: #D4AF37;
    --noa-gold-glow: rgba(201, 160, 74, 0.15);

    /* Pan-African Sovereignty Colors */
    --noa-red: #CE1126;
    --noa-green: #007749;
    --noa-yellow: #FCD116;

    /* Typography */
    --font-serif: 'Cinzel', 'Playfair Display', 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Open Sans', sans-serif;
    --font-display: 'Cinzel Decorative', 'Cinzel', serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-xxl: 12rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows & Glows */
    --shadow-gold: 0 0 30px rgba(201, 160, 74, 0.3);
    --shadow-gold-strong: 0 0 60px rgba(201, 160, 74, 0.5);
    --shadow-deep: 0 10px 40px rgba(0, 0, 0, 0.8);
    --glow-text: 0 0 10px rgba(201, 160, 74, 0.6);
}

/* ----- RESET & BASE ----- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--noa-black);
    color: var(--noa-gold);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ----- SCROLLBAR (Custom Dark Gold) ----- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--noa-black-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--noa-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--noa-gold);
}

/* ============================================
   SACRED GEOMETRY BACKGROUND SYSTEM
   ============================================ */
.noa-sacred-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--noa-black);
    overflow: hidden;
}

.noa-sacred-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vmax;
    height: 120vmax;
    background: radial-gradient(circle, rgba(201,160,74,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Concentric Sacred Circles */
.noa-sacred-circle {
    position: absolute;
    border: 1px solid rgba(201, 160, 74, 0.06);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.noa-sacred-circle:nth-child(1) { width: 40vmax; height: 40vmax; }
.noa-sacred-circle:nth-child(2) { width: 60vmax; height: 60vmax; }
.noa-sacred-circle:nth-child(3) { width: 80vmax; height: 80vmax; }
.noa-sacred-circle:nth-child(4) { width: 100vmax; height: 100vmax; }

/* Geometric Lines */
.noa-geo-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(201,160,74,0.04), transparent);
    height: 1px;
    width: 100%;
}

/* Ankh Symbols */
.noa-ankh {
    position: absolute;
    opacity: 0.06;
    color: var(--noa-gold);
    font-size: 3rem;
    pointer-events: none;
}

/* Pyramid Outlines */
.noa-pyramid {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(201, 160, 74, 0.05);
    pointer-events: none;
}

/* Pan-African Star Background */
.noa-pana-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vmax;
    height: 50vmax;
    background: var(--noa-yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.02;
    pointer-events: none;
}

/* Pan-African Flag Stripes (Bottom) */
.noa-pana-stripes {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 1000;
    display: flex;
}

.noa-pana-stripes .stripe-red {
    flex: 1;
    background: var(--noa-red);
    opacity: 0.3;
}
.noa-pana-stripes .stripe-yellow {
    flex: 1;
    background: var(--noa-yellow);
    opacity: 0.3;
}
.noa-pana-stripes .stripe-green {
    flex: 1;
    background: var(--noa-green);
    opacity: 0.3;
}

/* ============================================
   NAVIGATION - GOLD SOVEREIGN BAR
   ============================================ */
.noa-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid rgba(201, 160, 74, 0.3);
    transition: var(--transition-smooth);
}

.noa-nav.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.noa-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.noa-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.noa-logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--noa-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--noa-black-deep);
}

.noa-logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--noa-gold);
}

.noa-logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--noa-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation Links */
.noa-nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.noa-nav-menu a {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--noa-gold);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: var(--space-xs) 0;
    transition: var(--transition-fast);
}

.noa-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--noa-gold-light);
    transition: var(--transition-smooth);
}

.noa-nav-menu a:hover {
    color: var(--noa-gold-light);
    text-shadow: var(--glow-text);
}

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

/* CTA Button */
.noa-btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--noa-gold);
    color: var(--noa-black-deep) !important;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--noa-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.noa-btn-cta:hover {
    background: transparent;
    color: var(--noa-gold) !important;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.noa-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.noa-nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--noa-gold);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION - CEREMONIAL THRONE
   ============================================ */
.noa-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-xl) var(--space-md);
    padding-top: calc(80px + var(--space-xl));
    overflow: hidden;
}

/* Emblem Container */
.noa-emblem-container {
    position: relative;
    width: 360px;
    height: 360px;
    margin-bottom: var(--space-lg);
}

/* Outer Glow Rings */
.noa-emblem-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(201, 160, 74, 0.15);
    animation: pulse-glow 4s ease-in-out infinite;
}

.noa-emblem-glow:nth-child(1) { width: 380px; height: 380px; animation-delay: 0s; }
.noa-emblem-glow:nth-child(2) { width: 420px; height: 420px; animation-delay: 0.5s; }
.noa-emblem-glow:nth-child(3) { width: 460px; height: 460px; animation-delay: 1s; }
.noa-emblem-glow:nth-child(4) { width: 500px; height: 500px; animation-delay: 1.5s; }

@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.02); }
}

/* Main Emblem Circle */
.noa-emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--noa-black-deep);
    border: 3px solid var(--noa-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(201, 160, 74, 0.2),
        inset 0 0 60px rgba(201, 160, 74, 0.05);
}

/* Inner Decorative Ring */
.noa-emblem::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(201, 160, 74, 0.3);
}

/* Decorative Dots */
.noa-emblem-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 310px;
    height: 310px;
}

.noa-emblem-dots::before,
.noa-emblem-dots::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--noa-gold);
}

/* NOA's Ark Ship SVG */
.noa-ark-svg {
    width: 120px;
    height: 80px;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 10px rgba(201, 160, 74, 0.3));
}

/* Emblem Text */
.noa-emblem-text {
    text-align: center;
    z-index: 2;
}

.noa-emblem-text .line-1 {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--noa-gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.noa-emblem-text .line-2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--noa-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.noa-emblem-text .line-3 {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--noa-gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Headline */
.noa-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--noa-gold);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    text-shadow: 
        0 0 20px rgba(201, 160, 74, 0.3),
        0 0 40px rgba(201, 160, 74, 0.1);
    position: relative;
}

.noa-hero-headline::after {
    content: '';
    display: block;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--noa-gold), transparent);
    margin: var(--space-sm) auto 0;
}

/* Subheadline */
.noa-hero-subheadline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--noa-gold-light);
    text-align: center;
    letter-spacing: 3px;
    text-transform: capitalize;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(232, 201, 106, 0.2);
}

/* Scroll Indicator */
.noa-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: bounce 2s infinite;
}

.noa-scroll-indicator span {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--noa-gold-dark);
}

.noa-scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--noa-gold);
    fill: none;
    stroke-width: 1.5;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   CONTENT SECTIONS - THREE PILLARS
   ============================================ */
.noa-sections {
    padding: var(--space-xxl) var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.noa-sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* Section Card */
.noa-section-card {
    background: rgba(5, 5, 5, 0.7);
    border: 1.5px solid rgba(201, 160, 74, 0.2);
    border-radius: 8px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.noa-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(201,160,74,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.noa-section-card:hover {
    border-color: rgba(201, 160, 74, 0.5);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.noa-section-card:hover::before {
    background: radial-gradient(circle at center, rgba(201,160,74,0.08) 0%, transparent 70%);
}

/* Card Title */
.noa-section-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--noa-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.noa-section-card h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--noa-gold);
    margin: var(--space-sm) auto 0;
    opacity: 0.4;
}

/* Card Content Area */
.noa-card-content {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Card Description */
.noa-section-card p {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--noa-gold-light);
    opacity: 0.8;
    margin-top: var(--space-sm);
    letter-spacing: 1px;
}

/* ============================================
   COAT OF ARMS - SACRED SOVEREIGNTY
   ============================================ */
.noa-coat-of-arms {
    position: relative;
    width: 180px;
    height: 200px;
}

/* Shield */
.noa-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 120px;
    background: var(--noa-black-deep);
    border: 2px solid var(--noa-gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Raised Fist */
.noa-fist {
    width: 50px;
    height: 60px;
    fill: var(--noa-gold-dark);
    filter: drop-shadow(0 0 5px rgba(201, 160, 74, 0.3));
}

/* Star Above Fist */
.noa-shield-star {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    fill: var(--noa-yellow);
    filter: drop-shadow(0 0 8px rgba(252, 209, 22, 0.5));
}

/* Lions */
.noa-lion {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    fill: var(--noa-black-soft);
    stroke: var(--noa-gold);
    stroke-width: 1;
    opacity: 0.7;
}

.noa-lion-left { left: 0; transform: translateY(-50%) scaleX(-1); }
.noa-lion-right { right: 0; transform: translateY(-50%); }

/* ============================================
   COMMUNITY - CIRCLE OF UNITY
   ============================================ */
.noa-community-circle {
    position: relative;
    width: 180px;
    height: 180px;
}

.noa-unity-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px solid rgba(201, 160, 74, 0.4);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
}

.noa-unity-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(139, 105, 20, 0.2);
    border: 1px solid var(--noa-gold);
    border-radius: 50%;
}

/* People Nodes */
.noa-person {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--noa-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-person 3s ease-in-out infinite;
}

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse-person {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Connection Lines (SVG) */
.noa-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ============================================
   SHOP - SACRED ARTIFACTS
   ============================================ */
.noa-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    width: 100%;
    max-width: 200px;
}

.noa-product-card {
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(201, 160, 74, 0.3);
    border-radius: 6px;
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition-fast);
    cursor: pointer;
}

.noa-product-card:hover {
    border-color: var(--noa-gold);
    box-shadow: 0 0 15px rgba(201, 160, 74, 0.2);
    transform: scale(1.05);
}

.noa-product-icon {
    width: 40px;
    height: 40px;
    fill: var(--noa-gold);
    opacity: 0.7;
}

.noa-product-card span {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    color: var(--noa-gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   FOOTER - SOVEREIGN SEAL
   ============================================ */
.noa-footer {
    background: var(--noa-black-deep);
    border-top: 1px solid rgba(201, 160, 74, 0.2);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    position: relative;
}

.noa-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--noa-gold), transparent);
}

.noa-footer-copyright {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    color: var(--noa-gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.noa-footer-domain {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--noa-gold);
    letter-spacing: 3px;
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.noa-fade-in {
    opacity: 0;
    animation: fade-in-up 1s ease forwards;
}

.noa-fade-in-delay-1 { animation-delay: 0.2s; }
.noa-fade-in-delay-2 { animation-delay: 0.4s; }
.noa-fade-in-delay-3 { animation-delay: 0.6s; }
.noa-fade-in-delay-4 { animation-delay: 0.8s; }

/* Shimmer effect for gold text */
.noa-shimmer {
    background: linear-gradient(90deg, var(--noa-gold) 0%, var(--noa-gold-light) 50%, var(--noa-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .noa-sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .noa-emblem-container {
        width: 280px;
        height: 280px;
    }

    .noa-emblem {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .noa-nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-md);
        border-bottom: 1px solid rgba(201, 160, 74, 0.3);
    }

    .noa-nav-menu.active {
        display: flex;
    }

    .noa-nav-toggle {
        display: flex;
    }

    .noa-sections-grid {
        grid-template-columns: 1fr;
    }

    .noa-hero-headline {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .noa-emblem-container {
        width: 240px;
        height: 240px;
    }

    .noa-emblem {
        width: 220px;
        height: 220px;
    }

    .noa-ark-svg {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .noa-nav-container {
        padding: 0 var(--space-sm);
    }

    .noa-hero {
        padding: var(--space-lg) var(--space-sm);
        padding-top: calc(80px + var(--space-lg));
    }

    .noa-sections {
        padding: var(--space-lg) var(--space-sm);
    }

    .noa-section-card {
        padding: var(--space-md) var(--space-sm);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--noa-gold);
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --noa-gold: #FFD700;
        --noa-gold-light: #FFF8DC;
    }
}

/* ============================================
   WORDPRESS DEFAULT STYLES
   ============================================ */
.alignleft { float: left; margin-right: var(--space-md); }
.alignright { float: right; margin-left: var(--space-md); }
.aligncenter { display: block; margin: 0 auto; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--noa-gold-dark); }

.gallery-caption { color: var(--noa-gold-light); }

.bypostauthor { display: block; }

/* Sticky post styling */
.sticky .noa-section-card {
    border-color: var(--noa-gold);
    box-shadow: var(--shadow-gold);
}

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
