/*
Theme Name: LoveGuru
Theme URI: https://loveguru.online
Author: LoveGuru Team
Author URI: https://loveguru.online
Description: A clean, modern, and minimalist WordPress theme designed for dating, relationships, and lifestyle blogs. Fully responsive and optimized for readability.
Version: 1.1.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: loveguru
Tags: blog, dating, relationships, minimalist, responsive, custom-menu
*/

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

html { 
    scroll-behavior: smooth; 
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { 
    color: #0073aa; 
    text-decoration: none; 
    transition: color 0.2s ease; 
}

a:hover { 
    color: #005177; 
    text-decoration: underline; 
}

a:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ========================================
   3. LAYOUT
   ======================================== */
.site-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.content-area { 
    display: grid; 
    grid-template-columns: 1fr 320px; 
    gap: 40px; 
    margin-top: 40px; 
}

.main-content { 
    min-width: 0; 
}

/* ========================================
   4. HEADER & NAVIGATION
   ======================================== */
.site-header { 
    background: #fff; 
    border-bottom: 1px solid #eaeaea; 
    padding: 20px 0; 
    position: relative; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.header-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.site-branding .site-title { 
    font-size: 26px; 
    font-weight: 800; 
    margin: 0; 
    line-height: 1.2; 
}

.site-branding .site-title a { 
    color: #1a1a1a; 
    text-decoration: none; 
    transition: color 0.2s ease;
}

.site-branding .site-title a:hover {
    color: #0073aa;
}

.site-branding .site-description { 
    font-size: 14px; 
    color: #666; 
    margin-top: 4px; 
}

/* Navigation */
.main-navigation ul { 
    list-style: none; 
    display: flex; 
    gap: 25px; 
    margin: 0; 
    padding: 0; 
}

.main-navigation a { 
    color: #444; 
    font-weight: 500; 
    font-size: 15px; 
    text-decoration: none; 
    padding: 5px 0; 
    position: relative; 
}

.main-navigation a:hover { 
    color: #0073aa; 
    text-decoration: none; 
}

.main-navigation a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: #0073aa; 
    transition: width 0.3s; 
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #333;
}

/* ========================================
   5. POSTS & ARTICLES (Archive)
   ======================================== */
.post-card { 
    background: #fff; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); 
    margin-bottom: 35px; 
    transition: transform 0.2s, box-shadow 0.2s; 
}

.post-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
}

.post-thumbnail img { 
    width: 100%; 
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content { 
    padding: 30px; 
}

.entry-title { 
    font-size: 28px; 
    font-weight: 700; 
    line-height: 1.3; 
    margin-bottom: 12px; 
}

.entry-title a { 
    color: #1a1a1a; 
    text-decoration: none; 
}

.entry-title a:hover { 
    color: #0073aa; 
    text-decoration: none; 
}

.entry-meta { 
    font-size: 13px; 
    color: #888; 
    margin-bottom: 15px; 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap;
}

.entry-meta span { 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}

.entry-summary { 
    font-size: 16px; 
    color: #555; 
    margin-bottom: 20px; 
    line-height: 1.7;
}

.read-more-btn { 
    display: inline-block; 
    font-weight: 600; 
    font-size: 14px; 
    color: #0073aa; 
    border: 1px solid #0073aa; 
    padding: 8px 20px; 
    border-radius: 30px; 
    transition: all 0.2s; 
}

.read-more-btn:hover { 
    background: #0073aa; 
    color: #fff; 
    text-decoration: none; 
}

/* ========================================
   6. SINGLE POST & PAGES
   ======================================== */
.single-post-content, 
.page-content { 
    background: #fff; 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); 
    margin-bottom: 35px; 
}

.single-post-content h1, 
.page-content h1 { 
    font-size: 36px; 
    margin-bottom: 15px; 
    line-height: 1.2;
}

.single-post-content h2 { 
    font-size: 28px; 
    margin: 40px 0 20px; 
    padding-top: 20px;
}

.single-post-content h3 { 
    font-size: 24px; 
    margin: 30px 0 15px; 
}

.single-post-content p, 
.page-content p { 
    margin-bottom: 20px; 
    font-size: 17px; 
    line-height: 1.8; 
    color: #444; 
}

.single-post-content ul, 
.single-post-content ol { 
    margin: 0 0 20px 25px; 
}

.single-post-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 10px 0;
}

.breadcrumbs a {
    color: #0073aa;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Entry Meta (Single) */
.single-post-content .entry-meta {
    margin: 20px 0;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.single-post-content .entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Table of Contents */
.toc {
    margin: 30px 0;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
}

.toc h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #1a1a1a;
}

.toc ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: #0073aa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.toc a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Author Bio */
.author-bio {
    margin: 40px 0;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-avatar {
    border-radius: 50%;
    flex-shrink: 0;
}

.author-bio h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.author-bio p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Social Share */
.social-share {
    margin: 30px 0;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.social-share h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.social-share a {
    display: inline-block;
    margin: 0 8px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-share a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    text-decoration: none;
}

.social-share a[href*="facebook"] { background: #3b5998; }
.social-share a[href*="twitter"] { background: #1da1f2; }
.social-share a[href*="pinterest"] { background: #bd081c; }
.social-share a[href*="linkedin"] { background: #0077b5; }

/* Related Posts */
.related-posts {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.related-posts h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-post-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.related-post-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.related-post-item h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
}

.related-post-item h4 a {
    color: #333;
    text-decoration: none;
}

.related-post-item h4 a:hover {
    color: #0073aa;
}

.related-post-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Post Tags */
.post-tags { 
    margin-top: 30px; 
    padding-top: 20px; 
    border-top: 1px solid #eee; 
}

.post-tags strong {
    margin-right: 10px;
    color: #666;
}

.post-tags a { 
    display: inline-block; 
    background: #f0f7ff; 
    color: #0073aa; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 13px; 
    margin: 0 5px 5px 0; 
    transition: all 0.2s ease;
}

.post-tags a:hover { 
    background: #0073aa; 
    color: #fff; 
    text-decoration: none; 
}

/* Post Navigation */
.nav-links {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.nav-links .nav-previous,
.nav-links .nav-next {
    flex: 1;
}

.nav-links .nav-next {
    text-align: right;
}

.nav-links strong {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.nav-links a {
    color: #0073aa;
    font-weight: 600;
    font-size: 16px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* ========================================
   7. ENTRY CONTENT (Shared)
   ======================================== */
.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    color: #444;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    font-style: italic;
    font-size: 18px;
    color: #555;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.entry-content th,
.entry-content td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.entry-content th {
    background: #f9f9f9;
    font-weight: bold;
    color: #333;
}

.entry-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #e83e8c;
}

.entry-content pre {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* ========================================
   8. SIDEBAR & WIDGETS
   ======================================== */
.sidebar .widget { 
    background: #fff; 
    padding: 25px; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); 
    margin-bottom: 25px; 
}

.widget-title { 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 15px; 
    padding-bottom: 10px; 
    border-bottom: 2px solid #f0f0f0; 
    color: #1a1a1a; 
}

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

.widget ul li { 
    padding: 8px 0; 
    border-bottom: 1px solid #f8f8f8; 
}

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

.widget ul li a { 
    color: #555; 
    font-size: 14px; 
    transition: color 0.2s ease;
}

.widget ul li a:hover { 
    color: #0073aa; 
}

/* Search Widget */
.widget_search form { 
    display: flex; 
}

.widget_search input[type="search"] { 
    flex: 1; 
    padding: 10px 15px; 
    border: 1px solid #ddd; 
    border-radius: 6px 0 0 6px; 
    font-size: 14px; 
    outline: none; 
    transition: border-color 0.2s ease;
}

.widget_search input[type="search"]:focus {
    border-color: #0073aa;
}

.widget_search input[type="submit"] { 
    padding: 10px 20px; 
    background: #0073aa; 
    color: #fff; 
    border: none; 
    border-radius: 0 6px 6px 0; 
    cursor: pointer; 
    font-weight: 600; 
    transition: background 0.2s ease;
}

.widget_search input[type="submit"]:hover {
    background: #005177;
}

/* Tag Cloud */
.tagcloud a { 
    display: inline-block; 
    background: #f8f9fa; 
    color: #555; 
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 13px !important; 
    margin: 3px 3px 3px 0; 
    border: 1px solid #eee; 
    transition: all 0.2s ease;
}

.tagcloud a:hover { 
    background: #0073aa; 
    color: #fff; 
    border-color: #0073aa; 
    text-decoration: none;
}

/* Newsletter Widget */
/* Popular Posts Widget */
.popular-posts-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts-widget li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.popular-posts-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-posts-widget a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.popular-posts-widget a:hover {
    color: #0073aa;
}

.popular-posts-widget .post-date {
    font-size: 12px;
    color: #999;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    margin-bottom: 10px;
}

.categories-widget a {
    color: #0073aa;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-widget a:hover {
    text-decoration: underline;
}

.categories-widget .count {
    color: #999;
    font-size: 13px;
}


/* === Sidebar Navigation Menu === */
.widget_nav_menu .sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_nav_menu .sidebar-menu li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget_nav_menu .sidebar-menu li:last-child {
    border-bottom: none;
}

.widget_nav_menu .sidebar-menu a {
    display: block;
    padding: 12px 5px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.widget_nav_menu .sidebar-menu a:hover {
    color: #0073aa;
    padding-left: 10px;
    text-decoration: none;
}

/* ========================================
   9. COMMENTS
   ======================================== */
.comments-area {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.comment {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-author img {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: bold;
    color: #333;
}

.comment-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #0073aa;
    font-weight: 600;
}

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

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.comment-form input[type="submit"] {
    padding: 12px 30px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.comment-form input[type="submit"]:hover {
    background: #005177;
}

/* ========================================
   10. FORMS
   ======================================== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    font-family: inherit;
    font-size: 14px;
}

button,
input[type="submit"],
input[type="button"] {
    font-family: inherit;
    cursor: pointer;
}

/* ========================================
   11. PAGINATION & NAVIGATION
   ======================================== */
.pagination {
    margin: 40px 0;
    text-align: center;
}

.nav-links { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin: 40px 0; 
}

.nav-links .page-numbers { 
    padding: 10px 15px; 
    background: #fff; 
    border-radius: 6px; 
    color: #333; 
    font-weight: 600; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
    transition: all 0.2s ease;
}

.nav-links .page-numbers.current, 
.nav-links .page-numbers:hover { 
    background: #0073aa; 
    color: #fff; 
    text-decoration: none; 
}

/* ========================================
   12. FOOTER
   ======================================== */
.site-footer { 
    background: #1a1a1a; 
    color: #aaa; 
    text-align: center; 
    padding: 30px 0; 
    margin-top: 60px; 
    font-size: 14px; 
}

.site-footer a { 
    color: #fff; 
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #0073aa;
}

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

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

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

.aligncenter {
    display: block;
    margin: 0 auto;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: #005a87;
    transform: translateY(-3px);
}

.scroll-to-top.visible {
    display: flex;
}

/* ========================================
   14. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .content-area { 
        grid-template-columns: 1fr; 
    }
    
    .sidebar { 
        order: 2; 
        margin-top: 40px;
    }
    
    .single-post-content,
    .page-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        margin-top: 20px;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .post-content,
    .single-post-content,
    .page-content { 
        padding: 20px; 
    }
    
    .entry-title { 
        font-size: 24px; 
    }
    
    .single-post-content h1,
    .page-content h1 { 
        font-size: 28px; 
    }
    
    .single-post-content h2 {
        font-size: 24px;
    }
    
    .single-post-content h3 {
        font-size: 20px;
    }
    
    .entry-content h2 {
        font-size: 24px;
    }
    
    .entry-content h3 {
        font-size: 20px;
    }
    
    .entry-content {
        font-size: 16px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .social-share a {
        display: block;
        margin: 10px 0;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links .nav-next {
        text-align: left;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .site-container {
        padding: 0 15px;
    }
    
    .post-content,
    .single-post-content,
    .page-content {
        padding: 15px;
    }
    
    .entry-title {
        font-size: 22px;
    }
    
    .single-post-content h1,
    .page-content h1 {
        font-size: 24px;
    }
    
    .single-post-content .entry-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .toc {
        padding: 15px;
    }
    
    .comments-area {
        padding: 20px;
    }
}

/* ========================================
   15. ACCESSIBILITY
   ======================================== */
:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0073aa;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   16. PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .sidebar,
    .site-footer,
    .scroll-to-top,
    .social-share,
    .navigation,
    .comments-area {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .single-post-content,
    .page-content {
        box-shadow: none;
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
}