﻿/*
Theme Name: Camera Pro Theme
Description: Professional camera review and comparison theme with universal styling system and modular mobile menu
Author: ZerOneBit Team
Version: 6.1.0
Text Domain: camera-pro-theme
Tags: photography, cameras, reviews, responsive, modern, blog, dark-theme
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Changelog:
v6.1.0 (Current) - Blog & Navigation Update
- Professional blog page with dark theme design
- Modern single post page with sidebar
- Category/archive pages with card layout
- Optimized header navigation with dropdown menus
- Fixed header spacing and positioning
- All Cameras page with category cards
- Enhanced submenu functionality
- Reading time calculation
- Improved mobile responsiveness
- Dark theme consistency across all pages

v6.0.0 - Major Update
- Complete SEO optimization with Rank Math integration
- Enhanced mobile responsiveness for all pages
- Professional Terms of Service page styling
- Improved accessibility and FOUC prevention
- Mobile-friendly navigation with smooth animations
- Logo support with responsive scaling
- Advanced gradient backgrounds
- Performance optimizations

v5.0.0 - Universal Styling System
- Modular mobile menu implementation
- Responsive header with search functionality
- Camera categories reorganization

v4.0.0 - Enhanced Features
- Advanced card layouts
- Improved grid systems

v3.0.0 - Core Improvements
- Basic responsive design
- Navigation enhancements

v2.0.0 - Foundation
- Initial professional styling

v1.0.0 - Launch
- Basic theme structure
*/

/* CRITICAL: Remove ALL top spacing from everything */
* {
    margin: 0;
    padding: 0;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove body padding-top that was added for fixed header */
body {
    padding-top: 70px !important;
}

/* On front page, hero should start right after header */
.home .site-main,
.home .front-page-wrapper,
.home main {
    margin-top: -70px !important; /* Pull hero up to meet header */
    padding-top: 70px !important; /* Then add padding for fixed header */
}

/* Main content areas */
.blog-page,
.cameras-page,
.site-main,
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero sections */
.blog-hero-section,
.cameras-hero-section,
.archive-hero-section,
.hero-section,
.front-page-hero-section {
    margin-top: 0 !important;
}

/* WordPress admin bar override */
body.admin-bar {
    margin-top: 0 !important;
}

/* Import Mobile Menu Styles */
@import url('assets/mobile-menu/page-menu.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* DIAGNOSTIC TEST - If you see this, CSS is loading */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a2e 12%, 
        #16213e 25%, 
        #0f3460 40%, 
        #533483 55%, 
        #7209b7 70%, 
        #2d1b69 85%, 
        #0f0f23 100%
    );
    background-size: 400% 400%;
    animation: modernGradientShift 20s ease infinite;
    background-attachment: fixed;
    min-height: 100vh;
    /* Modern beautiful gradient background */
}

/* Modern Gradient Animation */
@keyframes modernGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent; /* fully transparent */
    border-radius: 12px;
    backdrop-filter: none;
}

/* Header Styles */
.site-header {
    background-color: transparent;
    background: transparent;
    padding: 1rem 0;
    box-shadow: none;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: rgba(30, 42, 74, 0%);
    border-radius: 12px;
    backdrop-filter: none;
}

/* Logo Styles - Enhanced with Image Support */
.logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
    order: 1;
    display: inline-block;
    line-height: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Custom Logo Image Container */
.custom-logo-link {
    display: inline-block !important;
    line-height: 0;
    order: 1;
    flex-shrink: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-width: 400px;
}

/* Custom Logo Image */
.custom-logo {
    display: block !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    transition: all 0.3s ease;
    vertical-align: middle;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.custom-logo:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* Force image visibility */
.custom-logo-link img.custom-logo {
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 100%;
}

/* Responsive Logo Adjustments */
@media (max-width: 768px) {
    .custom-logo {
        max-height: 45px !important;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .custom-logo-link {
        max-width: 300px;
    }
    
    /* Hide logo when mobile menu is open */
    body.mobile-menu-open .custom-logo-link {
        opacity: 0;
        visibility: hidden;
    }
    
    body.mobile-menu-open .logo {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 480px) {
    .custom-logo {
        max-height: 40px !important;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .custom-logo-link {
        max-width: 250px;
    }
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    order: 2;
    background: transparent; /* fully transparent */
    border-radius: 8px;
    backdrop-filter: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.7rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.85rem;
    white-space: nowrap;
}

.main-navigation a:hover {
    background-color: #2a2f37;
}

/* Header Search */
.header-search {
    flex-shrink: 0;
    order: 3;
    max-width: 280px;
    min-width: 200px;
}

.search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 170, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.search-form:focus-within {
    border-color: #00d4aa;
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.3);
    transform: scale(1.02);
}

.search-field {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    min-width: 0;
    font-weight: 500;
}

.search-field::placeholder {
    color: #b8c5d6;
    font-weight: 400;
}

.search-submit {
    background: linear-gradient(135deg, #00d4aa, #4facfe);
    border: none;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 20px;
    margin: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0, 212, 170, 0.4);
}

.search-icon {
    font-size: 0.9rem;
}

/* Mobile Controls Group - Hidden on Desktop */
.mobile-controls-group {
    display: none;
}

/* Mobile Controls */
.mobile-search-toggle,
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    order: 4;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-search-toggle:hover,
.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mobile-search-toggle.active,
.mobile-menu-toggle.active {
    background-color: #00d4aa;
    color: #1a1d23;
    transform: scale(1.1);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Front Page Specific - Remove all top spacing */
.home .hero-section,
.home .front-page-hero-section,
.front-page .hero-section,
.front-page .front-page-hero-section {
    margin-top: 0 !important;
}

.home,
.front-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Front Page Wrapper - Remove ALL spacing */
.front-page-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

.front-page-wrapper .site-main {
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section - No top margin */
.front-page-wrapper .hero-section,
.front-page-wrapper .front-page-hero-section {
    margin-top: 0 !important;
}

/* UNIVERSAL GAP FIX - All Pages */
html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* All page wrappers */
.cameras-page,
.blog-page,
.lens-categories-page,
.archive-main,
.front-page-wrapper,
.site-main,
#main-content {
    margin-top: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .main-navigation a {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }

    .site-header .container {
        gap: 1rem;
    }

    .header-search {
        max-width: 220px;
        min-width: 180px;
    }
}

@media (max-width: 1024px) {
    .main-navigation a {
        padding: 0.4rem 0.4rem;
        font-size: 0.75rem;
    }

    .header-search {
        max-width: 200px;
        min-width: 160px;
    }

    .search-field {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .search-submit {
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(26, 26, 53, 0.98) 0%, rgba(30, 42, 74, 0.98) 50%, rgba(59, 107, 181, 0.98) 100%);
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(0, 212, 170, 0.3);
        max-width: none;
        min-width: auto;
        order: 5;
        z-index: 999;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .header-search.mobile-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(26, 26, 53, 0.98) 0%, rgba(30, 42, 74, 0.98) 50%, rgba(59, 107, 181, 0.98) 100%);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(0, 212, 170, 0.3);
        order: 6;
        z-index: 999;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-navigation.mobile-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        margin: 0;
        list-style: none;
    }

    .main-navigation li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(-20px);
        opacity: 0;
        animation: slideInFade 0.3s ease forwards;
    }

    .main-navigation li:nth-child(1) { animation-delay: 0.1s; }
    .main-navigation li:nth-child(2) { animation-delay: 0.15s; }
    .main-navigation li:nth-child(3) { animation-delay: 0.2s; }
    .main-navigation li:nth-child(4) { animation-delay: 0.25s; }
    .main-navigation li:nth-child(5) { animation-delay: 0.3s; }
    .main-navigation li:nth-child(6) { animation-delay: 0.35s; }
    .main-navigation li:nth-child(7) { animation-delay: 0.4s; }
    .main-navigation li:nth-child(8) { animation-delay: 0.45s; }
    .main-navigation li:nth-child(9) { animation-delay: 0.5s; }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .main-navigation a:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .main-navigation a:hover:before {
        left: 100%;
    }

    .main-navigation a:hover {
        background-color: rgba(0, 212, 170, 0.1);
        color: #00d4aa;
        padding-left: 2rem;
    }

    .site-header .container {
        position: relative;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    /* Group logo and hamburger together on the left */
    .header-left-group {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        order: 1;
        z-index: 1000;
        padding: 0.25rem 0;
    }

    .logo {
        order: 1;
        z-index: 1000;
        flex: 0 1 auto;
        margin: 0;
        font-size: 1.5rem;
    }
}

/* Mobile menu animations */
@keyframes slideInFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Main Content */
.site-main {
    min-height: 70vh;
    padding: 2rem 0;
}

/* Cards Grid */
.cameras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.camera-card {
    background-color: #222831;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.camera-card:hover {
    transform: translateY(-5px);
}

.camera-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-button {
    background-color: #007cba;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: #005a87;
}

/* View All Reviews Button */
.view-all-reviews {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #007cba;
}

.view-all-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,186,0.3);
    background: linear-gradient(135deg, #005a87 0%, #007cba 100%);
}

/* Footer */
.site-footer {
    background-color: #0f1419;
    color: #ccc;
    padding: 2rem 0;
    margin-top: 0.2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #007cba;
}

/* =================================== */
/*   CAMERA CATEGORIES - REMOVED      */
/* =================================== */

/* All camera-categories related CSS removed */

/* Category card animations removed */

/* Add orange gradient background for hover */
/* Remove global orange hover effects - will be replaced with individual colors */

/* Unique Color Themes for Each Category */

/* Compact Cameras - Blue Theme */

/* Mirrorless Cameras - Orange Theme */

/* APS-C Mirrorless - Green Theme */

/* Full-Frame - Gold Theme */

/* DSLR Cameras - Red Theme */

/* Vlogging Cameras - Pink Theme */

/* Aerial Cameras - Cyan Theme */

/* 360Â° Cameras - Purple Theme */

/* Global hover effects - now handled by individual category themes */

/* Camera Specifications */
.camera-specifications {
    background-color: #222831;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.camera-specifications h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.spec-item {
    background-color: #2a2f37;
    padding: 1rem;
    border-radius: 5px;
}

.spec-item strong {
    color: #007cba;
    display: block;
    margin-bottom: 0.5rem;
}

.spec-item span {
    color: #fff;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background-color: #222831;
    padding: 1.5rem;
    border-radius: 8px;
}

.pros h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.pros-content, .cons-content {
    color: #ccc;
}

/* Rating */
.camera-rating {
    background-color: #222831;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.camera-rating h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.rating-stars {
    font-size: 1.5rem;
}

.star.filled {
    color: #ffc107;
}

.star {
    color: #6c757d;
}

.rating-text {
    color: #fff;
    margin-left: 1rem;
    font-weight: bold;
}

/* Page Content */
.page-content {
    background-color: #222831;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-header {
    border-bottom: 2px solid #007cba;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.page-title {
    color: #fff;
    font-size: 2rem;
}

.page-content-body {
    color: #ccc;
    line-height: 1.8;
}

.page-content-body h2,
.page-content-body h3,
.page-content-body h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-body p {
    margin-bottom: 1rem;
}

.page-content-body ul,
.page-content-body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content-body li {
    margin-bottom: 0.5rem;
}

/* Entry Content */
.entry-content {
    color: #ccc;
    line-height: 1.8;
    margin: 2rem 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-header {
    text-align: center;
    margin-bottom: 2rem;
}

.entry-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.entry-meta {
    color: #ccc;
    font-size: 0.9rem;
}

.entry-meta span {
    margin-right: 1rem;
}

/* Featured Image */
.featured-image {
    text-align: center;
    margin: 2rem 0;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #007cba;
}

.post-navigation a {
    color: #007cba;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid #007cba;
    border-radius: 5px;
    transition: all 0.3s;
}

.post-navigation a:hover {
    background-color: #007cba;
    color: #fff;
}

/* Responsive Design */
@media (min-width: 1201px) {

}

@media (max-width: 1200px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .cameras-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .entry-title {
        font-size: 2rem;
    }

    /* Group logo and hamburger together on the left */
    .header-left-group {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        order: 1;
        z-index: 1000;
        padding: 0.25rem 0;
    }

    .logo {
        order: 1;
        z-index: 1000;
        flex: 0 1 auto;
        margin: 0;
        font-size: 1.5rem;
    }
}

/* Mobile menu animations */
@keyframes slideInFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Main Content */
.site-main {
    min-height: 70vh;
    padding: 0rem 0;
}

/* Cards Grid */
.cameras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.camera-card {
    background-color: #222831;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.camera-card:hover {
    transform: translateY(-5px);
}

.camera-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-button {
    background-color: #007cba;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: #005a87;
}

/* View All Reviews Button */
.view-all-reviews {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #007cba;
}

.view-all-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,186,0.3);
    background: linear-gradient(135deg, #005a87 0%, #007cba 100%);
}

/* Footer */
.site-footer {
    background-color: #0f1419;
    color: #ccc;
    padding: 2rem 0;
    margin-top: 0.2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #007cba;
}

/* =================================== */
/*   CAMERA CATEGORIES - REMOVED      */
/* =================================== */

/* All camera-categories related CSS removed */

/* Category card animations removed */

/* Add orange gradient background for hover */
/* Remove global orange hover effects - will be replaced with individual colors */

/* Unique Color Themes for Each Category */

/* Compact Cameras - Blue Theme */

/* Mirrorless Cameras - Orange Theme */

/* APS-C Mirrorless - Green Theme */

/* Full-Frame - Gold Theme */

/* DSLR Cameras - Red Theme */

/* Vlogging Cameras - Pink Theme */

/* Aerial Cameras - Cyan Theme */

/* 360Â° Cameras - Purple Theme */

/* Global hover effects - now handled by individual category themes */

/* Camera Specifications */
.camera-specifications {
    background-color: #222831;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.camera-specifications h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.spec-item {
    background-color: #2a2f37;
    padding: 1rem;
    border-radius: 5px;
}

.spec-item strong {
    color: #007cba;
    display: block;
    margin-bottom: 0.5rem;
}

.spec-item span {
    color: #fff;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background-color: #222831;
    padding: 1.5rem;
    border-radius: 8px;
}

.pros h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.pros-content, .cons-content {
    color: #ccc;
}

/* Rating */
.camera-rating {
    background-color: #222831;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.camera-rating h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.rating-stars {
    font-size: 1.5rem;
}

.star.filled {
    color: #ffc107;
}

.star {
    color: #6c757d;
}

.rating-text {
    color: #fff;
    margin-left: 1rem;
    font-weight: bold;
}

/* Page Content */
.page-content {
    background-color: #222831;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-header {
    border-bottom: 2px solid #007cba;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.page-title {
    color: #fff;
    font-size: 2rem;
}

.page-content-body {
    color: #ccc;
    line-height: 1.8;
}

.page-content-body h2,
.page-content-body h3,
.page-content-body h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-body p {
    margin-bottom: 1rem;
}

.page-content-body ul,
.page-content-body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content-body li {
    margin-bottom: 0.5rem;
}

/* Entry Content */
.entry-content {
    color: #ccc;
    line-height: 1.8;
    margin: 2rem 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-header {
    text-align: center;
    margin-bottom: 2rem;
}

.entry-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.entry-meta {
    color: #ccc;
    font-size: 0.9rem;
}

.entry-meta span {
    margin-right: 1rem;
}

/* Featured Image */
.featured-image {
    text-align: center;
    margin: 2rem 0;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #007cba;
}

.post-navigation a {
    color: #007cba;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid #007cba;
    border-radius: 5px;
    transition: all 0.3s;
}

.post-navigation a:hover {
    background-color: #007cba;
    color: #fff;
}

/* Responsive Design */
@media (min-width: 1201px) {

}

@media (max-width: 1200px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .cameras-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .entry-title {
        font-size: 2rem;
    }

    /* Group logo and hamburger together on the left */
    .header-left-group {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        order: 1;
        z-index: 1000;
        padding: 0.25rem 0;
    }

    .logo {
        order: 1;
        z-index: 1000;
        flex: 0 1 auto;
        margin: 0;
        font-size: 1.5rem;
    }
}