/*
Theme Name: Кулинарна Магия
Theme URI: https://kulinarna-magia.bg
Author: Plazarov
Author URI: https://plazarov.com
Description: Тема за кулинарен блог с магическа атмосфера и пълна поддръжка на рецепти
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kulinarna-magia
Tags: blog, food, recipes, one-column, two-columns, right-sidebar, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Text */
.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;
}

:root {
    --magic-purple: #8b5cf6;
    --magic-purple-dark: #7c3aed;
    --magic-purple-light: #a78bfa;
    --magic-gold: #f59e0b;
    --magic-gold-light: #fbbf24;
    --magic-accent: #ec4899;
    --magic-teal: #14b8a6;
    --magic-green: #10b981;
    --magic-green-light: #34d399;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #faf5ff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --max-width: 1440px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
}

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

a {
    color: var(--magic-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--magic-purple-dark);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: linear-gradient(135deg, var(--magic-purple) 0%, var(--magic-purple-dark) 100%);
    color: white;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-branding-link:hover {
    opacity: 0.9;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.site-logo-fallback {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.site-logo-fallback svg {
    width: 100%;
    height: 100%;
}

.custom-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-branding-text {
    display: flex;
    flex-direction: column;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.site-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 0.125rem;
    line-height: 1.2;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-navigation a {
    color: white;
    font-weight: 500;
    padding: 0.375rem 0;
    position: relative;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.main-navigation a:hover,
.main-navigation a.current {
    opacity: 0.8;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.375rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .site-branding {
        gap: 0.5rem;
    }
    
    .custom-logo-link,
    .site-logo-fallback {
        width: 32px;
        height: 32px;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-description {
        font-size: 0.7rem;
    }
    
    .menu-toggle {
        display: block;
        padding: 0.375rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .main-navigation {
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-navigation.toggled {
        max-height: 500px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-navigation li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation a {
        display: block;
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--magic-purple-light) 0%, var(--magic-purple) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '✨';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: -2rem;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '🌟';
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    bottom: -1rem;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--magic-gold) 0%, var(--magic-gold-light) 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, var(--magic-gold-light) 0%, var(--magic-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    color: var(--text-primary);
}

/* Recipes Archive CTA */
.recipes-archive-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all-recipes {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--magic-purple) 0%, var(--magic-purple-light) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-view-all-recipes:hover {
    background: linear-gradient(135deg, var(--magic-purple-light) 0%, var(--magic-purple) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    color: white;
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-view-all-recipes:hover .btn-arrow {
    transform: translateX(5px);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.site-content {
    max-width: var(--max-width);
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-area {
    width: 100%;
}

/* ============================================
   FEATURED RECIPES SECTION
   ============================================ */
.featured-recipes {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--magic-purple), var(--magic-gold));
    border-radius: 2px;
}

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

@media (max-width: 1024px) {
    .recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}

.recipe-card {
    background: var(--bg-primary);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.recipe-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card-content {
    padding: 1.5rem;
}

.recipe-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.recipe-card-title a {
    color: var(--text-primary);
}

.recipe-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.recipe-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
    align-items: center;
}

.recipe-card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.difficulty-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty-easy {
    background: #d1fae5;
    color: #065f46;
}

.difficulty-medium {
    background: #fef3c7;
    color: #92400e;
}

.difficulty-hard {
    background: #fee2e2;
    color: #991b1b;
}

.recipe-card-image-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
}

.recipe-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.recipe-default-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-default-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 3rem 0;
}

/* ============================================
   INFO BOXES
   ============================================ */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-box {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.info-box-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-box-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--magic-purple);
    text-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.info-box-text {
    color: var(--text-primary);
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 500;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-404-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    background-color: var(--bg-secondary);
    position: relative;
}

.error-404-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.error-404-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.error-404-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.error-404-title {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--magic-purple) 0%, var(--magic-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.error-404-message {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.error-404-suggestions {
    margin-bottom: 4rem;
}

.error-404-suggestions h3 {
    font-size: 1.5rem;
    color: var(--magic-purple);
    margin-bottom: 2rem;
}

.error-404-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-404 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-404-primary {
    background: linear-gradient(135deg, var(--magic-gold) 0%, var(--magic-gold-light) 100%);
    color: var(--text-primary);
}

.btn-404-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: var(--text-primary);
}

.btn-404-secondary {
    background: linear-gradient(135deg, var(--magic-purple) 0%, var(--magic-purple-light) 100%);
    color: white;
}

.btn-404-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-404-tertiary {
    background: white;
    color: var(--magic-purple);
    border: 2px solid var(--magic-purple);
}

.btn-404-tertiary:hover {
    background: var(--magic-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-icon {
    font-size: 1.25rem;
}

.error-404-popular {
    margin-top: 4rem;
}

.error-404-popular h3 {
    font-size: 1.75rem;
    color: var(--magic-purple);
    margin-bottom: 2rem;
}

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

@media (max-width: 992px) {
    .error-404-recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .error-404-recipes-grid {
        grid-template-columns: 1fr;
    }
}

.error-404-recipe-card {
    background: var(--bg-primary);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.error-404-recipe-link {
    display: block;
    text-decoration: none;
}

.error-404-recipe-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.error-404-recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.error-404-recipe-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.error-404-recipe-card:hover .error-404-recipe-image img {
    transform: scale(1.1);
}

.error-404-recipe-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.error-404-recipe-info {
    padding: 1rem;
}

.error-404-recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.error-404-meta-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.error-404-difficulty {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
}

.error-404-difficulty-easy {
    background: #d1fae5;
    color: #065f46;
}

.error-404-difficulty-medium {
    background: #fed7aa;
    color: #92400e;
}

.error-404-difficulty-hard {
    background: #fecaca;
    color: #991b1b;
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--magic-gold);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 0.5rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-navigation li {
    display: flex;
    align-items: center;
}

.footer-navigation li:not(:last-child)::after {
    content: '|';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* ============================================
   PAGES
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--magic-purple-light) 0%, var(--magic-purple) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.page-content {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.page-content h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--magic-purple);
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--magic-purple-dark);
}

.page-content ul,
.page-content ol {
    margin: 1rem 0 1rem 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .site-content {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-section::before {
        font-size: 4rem;
        top: -1rem;
    }
    
    .hero-section::after {
        font-size: 3rem;
        bottom: -0.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-view-all-recipes {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .featured-recipes {
        margin-bottom: 2.5rem;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recipe-card-content {
        padding: 1.25rem;
    }
    
    .recipe-card-title {
        font-size: 1.125rem;
    }
    
    .recipe-card-image,
    .recipe-default-image {
        height: 180px;
    }
    
    .page-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-content {
        padding: 1rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .page-content h3 {
        font-size: 1.25rem;
        margin: 1.25rem 0 0.75rem;
    }
    
    .page-content p {
        margin-bottom: 1rem;
    }
    
    .page-content ul,
    .page-content ol {
        margin: 0.75rem 0 0.75rem 1.5rem;
    }
    
    .page-content li {
        margin-bottom: 0.375rem;
    }
    
    .info-boxes {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .info-box-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .info-box-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .site-footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-widgets {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* 404 Page Responsive */
    .error-404-page {
        padding: 1rem 1rem;
    }
    
    .error-404-title {
        font-size: 4rem;
    }
    
    .error-404-subtitle {
        font-size: 1.5rem;
    }
    
    .error-404-message {
        font-size: 1rem;
    }
    
    .error-404-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-404 {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    .error-404-popular h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
