/*
Theme Name: PentaByteX
Theme URI: https://pentabytex.com
Author: PentaByteX Team
Author URI: https://pentabytex.com
Description: A modern, custom WordPress theme for PentaByteX - AI Integration, Web Development & Digital Marketing agency. Features include custom templates, dynamic menus, and responsive design.
Version: 1.0.0
Requires at least: 5.8
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: pentabytex
Tags: custom-menu, featured-images, threaded-comments, translation-ready, blog, portfolio, business

PentaByteX Theme, Copyright 2026 PentaByteX
PentaByteX Theme is distributed under the terms of the GNU GPL
*/

/* ===== DESIGN SYSTEM - COLOR VARIABLES ===== */
:root {
    /* Primary Brand Colors - More Vibrant */
    --yellow-primary: #FDCD06;
    --blue-primary: #0a0e27;
    --primary-bg: #0a0e27;
    --section-bg: #0a0e27;
    --white: #FFFFFF;

    /* Yellow Variations */
    --yellow-900: #FDCD06;
    --yellow-800: #FFEA00;
    --yellow-700: #FFF176;
    --yellow-600: #FFF59D;

    /* Blue Variations */
    --blue-900: #0a0e27;
    --blue-800: #0a0e27;
    --blue-700: #283593;
    --blue-600: #3949AB;
    --blue-neon: #448AFF;

    /* Neutral Grays */
    --gray-900: #0A0A0A;
    --gray-800: #1A1A1A;
    --gray-700: #4A4A4A;
    --gray-600: #6B7280;
    --gray-500: #9CA3AF;
    --gray-400: #D1D5DB;
    --gray-300: #E5E7EB;
    --gray-200: #F3F4F6;
    --gray-100: #F9FAFB;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: 12px;
    --neon-glow: 0 0 10px rgba(68, 138, 255, 0.5);

    /* Functional Colors */
    --color-error: #EF4444;
    --color-success: #10B981;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: visible;
}

/* WordPress Core Classes */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    padding: 10px 0;
}

.sticky {
    /* Styles for sticky posts */
}

.gallery-caption {
    /* Gallery caption styles */
}

.bypostauthor {
    /* Highlight post author comments */
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.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;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
