/*
Theme Name: Crónicas de Jalisco
Theme URI: https://cronicasdejalisco.com
Author: Crónicas de Jalisco
Author URI: https://cronicasdejalisco.com
Description: Tema elegante para sitio de historias, leyendas y tradiciones de Jalisco. Diseño oscuro con acentos dorados inspirado en la tradición oral mexicana.
Version: 1.0.0
Requires at least: 5.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: cronicas-jalisco
Tags: blog, custom-background, custom-logo, custom-menu, featured-images, dark, one-column, two-columns
*/

:root {
    --color-bg: #0D0B08;
    --color-bg-warm: #1A1510;
    --color-paper: #F5EDE0;
    --color-paper-dark: #E8DCC8;
    --color-gold: #C9A227;
    --color-gold-light: #E8C547;
    --color-terracotta: #B85C38;
    --color-terracotta-dark: #8B4229;
    --color-text: #2C2416;
    --color-text-light: #5C4D3C;
    --color-accent: #6B4423;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-paper);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(13,11,8,0.95) 0%, rgba(13,11,8,0) 100%);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(13,11,8,0.98);
    padding: 1rem 3rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav, .main-navigation ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav a, .main-navigation a {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    color: var(--color-paper);
    text-decoration: none;
    letter-spacing: 0.03em;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after, .main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

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

.nav a:hover::after, .main-navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(184,92,56,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26,21,16,1) 0%, var(--color-bg) 70%);
}

.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%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23C9A227' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--color-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--color-paper) 0%, var(--color-gold-light) 50%, var(--color-paper) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title em {
    font-style: italic;
    color: var(--color-terracotta);
    -webkit-text-fill-color: var(--color-terracotta);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--color-paper-dark);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.btn {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,162,39,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-paper);
    border: 1px solid var(--color-paper);
}

.btn-secondary:hover {
    background: var(--color-paper);
    color: var(--color-bg);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards, float 2s ease-in-out infinite 1.5s;
}

.scroll-indicator span {
    font-family: var(--font-elegant);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* Featured Section */
.featured {
    padding: 8rem 2rem;
    background: var(--color-bg-warm);
    position: relative;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--color-bg), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-tag {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    color: var(--color-terracotta);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 2px;
    background: var(--color-gold);
    margin: 1.5rem auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.featured-card {
    background: linear-gradient(145deg, rgba(245,237,224,0.03) 0%, rgba(245,237,224,0.01) 100%);
    border: 1px solid rgba(201,162,39,0.15);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.featured-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    position: relative;
    z-index: 2;
}

.card-category {
    font-family: var(--font-elegant);
    font-size: 0.85rem;
    color: var(--color-terracotta);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.card-excerpt {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-paper-dark);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-family: var(--font-elegant);
    font-size: 0.95rem;
    color: var(--color-gold);
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 1rem;
}

/* Categories Section */
.categories {
    padding: 8rem 2rem;
    background: var(--color-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(201,162,39,0.2);
}

.category-item {
    background: var(--color-bg);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.category-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-gold);
    transition: width 0.4s ease;
}

.category-item:hover {
    background: var(--color-bg-warm);
}

.category-item:hover::after {
    width: 60px;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.category-item:hover .category-icon {
    filter: grayscale(0);
}

.category-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-count {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    color: rgba(245,237,224,0.5);
}

/* Regions Map Section */
.regions {
    padding: 8rem 2rem;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(184,92,56,0.08) 0%, transparent 50%),
        var(--color-bg-warm);
}

.regions-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.regions-text h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.regions-text p {
    font-size: 1.1rem;
    color: var(--color-paper-dark);
    margin-bottom: 2rem;
}

.region-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.region-item {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--color-paper);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201,162,39,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.region-item:hover {
    color: var(--color-gold);
    padding-left: 0.5rem;
    border-color: var(--color-gold);
}

.regions-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(201,162,39,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(201,162,39,0.1) 49%, rgba(201,162,39,0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(201,162,39,0.1) 49%, rgba(201,162,39,0.1) 51%, transparent 52%);
    background-size: 30px 30px;
}

.map-number {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.map-label {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    color: var(--color-paper);
    letter-spacing: 0.1em;
}

/* Quote Section */
.quote-section {
    padding: 6rem 2rem;
    background: var(--color-bg);
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--color-gold);
    line-height: 0.5;
    opacity: 0.5;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    margin: 1rem 0 2rem;
}

.quote-author {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--color-terracotta);
    letter-spacing: 0.1em;
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-terracotta-dark) 0%, var(--color-accent) 100%);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--color-paper);
    outline: none;
    transition: background 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(245,237,224,0.6);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 1rem 2rem;
    font-family: var(--font-elegant);
    font-size: 1rem;
    background: var(--color-gold);
    color: var(--color-bg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.newsletter-form button:hover {
    background: var(--color-gold-light);
}

/* Footer */
.footer, .site-footer {
    padding: 5rem 2rem 2rem;
    background: var(--color-bg);
    border-top: 1px solid rgba(201,162,39,0.2);
}

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

.footer-brand h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--color-paper-dark);
    line-height: 1.7;
}

.footer-column h5 {
    font-family: var(--font-elegant);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--color-paper);
}

.footer-column a {
    display: block;
    font-size: 0.95rem;
    color: var(--color-paper-dark);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,162,39,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--color-paper-dark);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

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

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 2rem 4rem;
    position: relative;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(184,92,56,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.1) 0%, transparent 50%),
        var(--color-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-section {
    padding: 5rem 2rem;
    background: var(--color-bg-warm);
}

.about-text {
    font-size: 1.15rem;
    color: var(--color-paper-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    color: var(--color-gold);
}

/* Mission Section */
.mission-section {
    padding: 5rem 2rem;
    background: var(--color-bg);
}

.mission-grid {
    max-width: 1100px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201,162,39,0.2);
    transition: all 0.4s ease;
}

.mission-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-paper);
}

.mission-item p {
    font-size: 1rem;
    color: var(--color-paper-dark);
    line-height: 1.7;
}

/* Author Section */
.author-section {
    padding: 5rem 2rem;
    background: var(--color-bg-warm);
}

.author-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
}

.author-image {
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: var(--color-bg);
}

.author-bio h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author-title {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--color-terracotta);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.author-bio p {
    font-size: 1.05rem;
    color: var(--color-paper-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 2rem;
    background: var(--color-bg);
    text-align: center;
}

.contact-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--color-paper-dark);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--color-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-email:hover {
    border-color: var(--color-gold);
}

/* WordPress Specific Styles */
.entry-content,
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.entry-content p,
.page-content p {
    font-size: 1.1rem;
    color: var(--color-paper-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.page-content h1,
.page-content h2,
.page-content h3 {
    font-family: var(--font-display);
    color: var(--color-paper);
    margin-bottom: 1rem;
}

.entry-content a,
.page-content a {
    color: var(--color-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.entry-content a:hover,
.page-content a:hover {
    border-color: var(--color-gold);
}

/* Blog Posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.post-card {
    background: linear-gradient(145deg, rgba(245,237,224,0.03) 0%, rgba(245,237,224,0.01) 100%);
    border: 1px solid rgba(201,162,39,0.15);
    padding: 2rem;
    transition: all 0.5s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.post-card h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.post-card h2 a {
    color: var(--color-paper);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.post-meta {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
}

.post-excerpt {
    font-size: 1rem;
    color: var(--color-paper-dark);
    line-height: 1.7;
}

/* Single Post */
.single-post-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(184,92,56,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.1) 0%, transparent 50%),
        var(--color-bg);
}

.single-post-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 800px;
    margin: 0 auto 1rem;
}

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regions-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    .nav, .main-navigation ul {
        display: none;
    }
    
    .hero {
        padding: 6rem 1.5rem 4rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}
