/*
 * Theme Name: VNetworg Cyber
 * Theme URI: http://vnetworg.local
 * Author: Noir AI
 * Author URI: http://vnetworg.local
 * Description: A minimalist, dark-mode cybersecurity theme for digital products with custom hooks.
 * Version: 1.8
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: vnetworg-cyber
 * Tags: dark, custom-colors, custom-menu, e-commerce
 */

:root {
    --bg-color: #0d0d12;
    --card-bg: #1a1a24;
    --text-main: #e0e0ff;
    --accent-blue: #00ffff;
    --accent-hover: #00cccc;
    --border-color: #333344;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1; /* For canvas background */
}

/* Canvas Background Effects */
#cyber-bg-canvas {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: rgba(5, 5, 8, 0.9);
    padding: 20px 40px;
    border-bottom: 1px solid var(--accent-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

header .site-title a {
    color: var(--accent-blue);
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--accent-blue);
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.hero h1 {
    color: var(--accent-blue);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #a0a0c0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.card {
    background-color: rgba(26, 26, 36, 0.85); /* Slightly transparent for background */
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    color: #666;
    background-color: rgba(13, 13, 18, 0.9);
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: #a0a0c0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-blue);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Products Smooth Hover Effects */
.woocommerce ul.products li.product {
    background-color: rgba(26, 26, 36, 0.9) !important;
    border: 1px solid var(--border-color) !important;
    padding: 15px !important;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border-radius: 6px;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 12px 24px rgba(0, 255, 255, 0.15), 0 0 10px rgba(0, 255, 255, 0.1) inset !important;
    border-color: var(--accent-hover) !important;
    z-index: 10;
}

.woocommerce ul.products li.product h2 {
    color: var(--accent-blue) !important;
    font-size: 18px !important;
    transition: color 0.3s;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #fff !important;
}

.woocommerce a.button {
    background-color: transparent !important;
    color: var(--accent-blue) !important;
    border: 1px solid var(--accent-blue) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.woocommerce a.button:hover {
    background-color: var(--accent-blue) !important;
    color: #000 !important;
    box-shadow: 0 0 10px var(--accent-blue);
}

.woocommerce ul.products li.product img {
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Hide Default Sidebar/Widgets */
#secondary, .widget-area {
display: none !important;
}

/* Homepage specific styles */
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.about-col {
    flex: 1;
    min-width: 300px;
}

.progress-container {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--accent-blue);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.methodology-block {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.methodology-block:nth-child(even) {
    flex-direction: row-reverse;
}

.methodology-text, .methodology-img {
    flex: 1;
}

.methodology-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    border: 1px solid #333;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    padding: 25px;
    background-color: rgba(26, 26, 36, 0.85);
    border-left: 3px solid var(--accent-blue);
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateX(10px);
}

.review-text {
    font-style: italic;
    color: #d0d0e0;
    margin-bottom: 15px;
}

.review-author {
    color: var(--accent-blue);
    font-weight: bold;
    text-align: right;
}

@media (max-width: 768px) {
    .methodology-block, .methodology-block:nth-child(even) {
        flex-direction: column;
    }
    header {
        flex-direction: column;
        gap: 15px;
    }
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}
