/*
Theme Name: Honey Road
Theme URI: https://honeyroad.com
Author: Honey Road Team
Author URI: https://honeyroad.com
Description: A custom WordPress theme for the Honey Road brand — pure, raw honey straight from the hive.
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: honey-road
*/

/* 
   CSS Variables for Design System
*/
:root {
    /* Color Palette */
    --clr-gold: #F5B041;
    --clr-gold-light: #F9E79F;
    --clr-amber: #D68910;
    --clr-amber-dark: #B9770E;
    
    --clr-bg: #FCF9F2;
    --clr-surface: #FFFFFF;
    
    --clr-text-main: #2C3E50;
    --clr-text-light: #566573;
    
    --clr-accent-red: #E74C3C;
    --clr-accent-green: #27AE60;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Spacing */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(185, 119, 14, 0.05);
    --shadow-md: 0 10px 20px rgba(185, 119, 14, 0.1);
    --shadow-lg: 0 20px 40px rgba(185, 119, 14, 0.15);
    
    --border-radius: 16px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--clr-surface);
}

.text-gradient {
    background: linear-gradient(135deg, var(--clr-amber), var(--clr-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 176, 65, 0.4);
}

.btn-primary:hover {
    background-color: var(--clr-amber);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 137, 16, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--clr-amber-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(252, 249, 242, 0.95);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(245, 176, 65, 0.2);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--clr-text-main);
}

.navbar.scrolled .logo span {
    color: var(--clr-amber);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo .logo-dark {
    display: none;
}

.navbar.scrolled .logo .logo-light {
    display: none;
}

.navbar.scrolled .logo .logo-dark {
    display: block;
}

.logo span {
    color: var(--clr-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--clr-gold) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background-color: var(--clr-text-main);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: #fff;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--clr-amber-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--clr-text-light);
}

/* Harvest Comparison Grid */
.comparison-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.comparison-card {
    background: var(--clr-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
    transition: var(--transition);
    max-width: 500px;
    border: 1px solid rgba(245, 176, 65, 0.1);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.premium-card {
    border: 2px solid var(--clr-gold);
    position: relative;
    transform: scale(1.02);
}

.premium-card:hover {
    transform: scale(1.02) translateY(-5px);
}

.card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.comparison-card:hover .card-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--clr-gold);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-amber-dark);
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--clr-text-light);
}

.feature-list.cross li::before {
    content: '\00d7';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-accent-red);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.feature-list.check li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--clr-accent-green);
    font-weight: bold;
}

.vs-badge {
    background: var(--clr-amber);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    flex-shrink: 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--clr-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.8rem;
}

.category {
    display: inline-block;
    color: var(--clr-amber);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.blog-content p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.read-more {
    color: var(--clr-amber-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more span {
    transition: transform 0.3s ease;
}

.read-more:hover span {
    transform: translateX(5px);
}

/* Journal Page Styles */
.journal-hero {
    height: 45vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.journal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.journal-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    width: 100%;
}

.journal-hero-content h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.journal-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Journal Grid */
.pt-0 {
    padding-top: 0;
}

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

.journal-card {
    background: var(--clr-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.journal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.journal-image {
    height: 220px;
    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journal-card:hover .journal-image img {
    transform: scale(1.05);
}

.journal-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.journal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--clr-text-main);
}

.journal-content .excerpt {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.journal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
    margin-top: auto;
}

.journal-date {
    font-size: 0.85rem;
    color: #888;
}

/* Shop Page Styles */
.shop-hero {
    height: 40vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.shop-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.shop-disclaimer {
    background: rgba(245, 176, 65, 0.15);
    border: 1px solid rgba(245, 176, 65, 0.4);
    border-radius: var(--border-radius);
    padding: 1.2rem 1.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
}

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

.product-card {
    background: var(--clr-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(245, 176, 65, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--clr-text-main);
}

.product-description {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-btn {
    align-self: flex-start;
    font-size: 0.95rem;
}

/* Article Page Styles */
.article-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.article-hero-content .category {
    background: var(--clr-gold);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.article-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--clr-amber);
    font-weight: 600;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--clr-amber-dark);
    transform: translateX(-5px);
}

.bottom-back-link {
    margin-top: 3rem;
    margin-bottom: 0;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--clr-text-light);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
}

.article-body h3 {
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    font-size: 1.6rem;
    margin: 2.5rem 0 1.2rem;
}

.article-body blockquote {
    border-left: 4px solid var(--clr-gold);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: rgba(245, 176, 65, 0.05);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--clr-amber-dark);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--clr-text-main);
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr auto;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-newsletter h4, .footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--clr-gold-light);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1rem;
}

.social-link:hover {
    color: var(--clr-gold);
}

.social-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure main content is always visible */
.article-main,
.article-main .article-container,
.article-main .article-body {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Search */
.journal-search-section {
    padding: 2rem 0 1rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: var(--clr-surface);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(245, 176, 65, 0.2);
}

.journal-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
    color: var(--clr-text-main);
}

.journal-search-input::placeholder {
    color: #aab7c4;
}

.search-container .search-btn {
    border-radius: 0;
    padding: 1rem 2rem;
    box-shadow: none;
}

.search-container .search-btn:hover {
    transform: none;
    background-color: var(--clr-amber);
}

/* Responsive Video */
.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: var(--border-radius);
    margin: 2.5rem 0;
    box-shadow: var(--shadow-sm);
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .comparison-grid {
        flex-direction: column;
    }
    
    .vs-badge {
        margin: 1rem 0;
    }
    
    .premium-card {
        transform: none;
    }
    .premium-card:hover {
        transform: translateY(-5px);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--clr-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a:not(.btn) {
        color: var(--clr-text-main);
        font-size: 1.2rem;
    }
    
    .hamburger.active {
        background-color: transparent;
    }
    
    .hamburger.active::before {
        top: 0;
        transform: rotate(45deg);
        background-color: var(--clr-text-main);
    }
    
    .hamburger.active::after {
        bottom: 0;
        transform: rotate(-45deg);
        background-color: var(--clr-text-main);
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
        border-radius: 50px;
    }
    
    .article-hero-content h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 92%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .blog-content,
    .journal-content,
    .product-content {
        padding: 1.4rem;
    }
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    text-align: center;
    padding-top: 0.5rem;
}

.sticky {
    border-left: 4px solid var(--clr-gold);
}

.gallery-caption {
    font-size: 0.85rem;
}

.bypostauthor {
    border-left: 3px solid var(--clr-gold);
}

/* WordPress Pagination */
.navigation.pagination {
    margin-top: 3rem;
    text-align: center;
}

.navigation.pagination .nav-links {
    position: static;
    display: inline-flex;
    gap: 0.5rem;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    justify-content: center;
    box-shadow: none;
}

.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--clr-text-main);
    background: var(--clr-surface);
    border: 1px solid rgba(245, 176, 65, 0.2);
    transition: var(--transition);
}

.navigation.pagination .nav-links a:hover {
    background: var(--clr-gold);
    color: #fff;
    border-color: var(--clr-gold);
}

.navigation.pagination .nav-links .current {
    background: var(--clr-gold);
    color: #fff;
    border-color: var(--clr-gold);
}

/* Reading Progress Circle */
.reading-progress {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    z-index: 900;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.reading-progress.visible {
    opacity: 1;
    transform: scale(1);
}

.reading-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.reading-progress-bg {
    fill: none;
    stroke: rgba(185, 119, 14, 0.15);
    stroke-width: 3;
}

.reading-progress-fill {
    fill: none;
    stroke: var(--clr-gold);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.1s ease;
}

.reading-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.65rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--clr-amber-dark);
}

/* Screen Reader Text (Accessibility) */
.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;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
