/*
Theme Name: TeknoHayal Volt
Theme URI: https://teknohayal.com/themes/volt
Author: TeknoHayal
Author URI: https://teknohayal.com
Description: Dumanlı gri ve turuncu vurgularla modern mühendislik portfolyo teması - Volt Edition. Elektrik mühendisleri için optimize edilmiş.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: teknohayal-volt
Tags: portfolio, one-column, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, engineering
*/

/* ============================================
   CSS VARIABLES - VOLT THEME (Orange + Smoky Gray)
   ============================================ */
:root {
    /* Primary Colors - Orange/Amber */
    --volt-orange: #ed872d;
    --volt-orange-light: #ffb366;
    --volt-orange-dark: #d97706;
    --volt-orange-glow: rgba(237, 135, 45, 0.3);
    
    /* Secondary - Emerald Accent */
    --volt-emerald: #10b981;
    --volt-emerald-light: #34d399;
    
    /* Background - Smoky Gray */
    --volt-bg-base: #1c1c1e;
    --volt-bg-card: #2c2c2e;
    --volt-bg-elevated: #3a3a3c;
    --volt-bg-overlay: rgba(28, 28, 30, 0.95);
    
    /* Text Colors */
    --volt-text-bone: #e3dac9;
    --volt-text-bone-dark: #d1cbb8;
    --volt-text-muted: #9ca3af;
    --volt-text-dark: #71717a;
    
    /* Border */
    --volt-border: #3a3a3c;
    --volt-border-light: rgba(58, 58, 60, 0.5);
    
    /* Shadows */
    --volt-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --volt-shadow-glow: 0 0 30px rgba(237, 135, 45, 0.15);
    
    /* Spacing */
    --volt-radius-sm: 0.75rem;
    --volt-radius-md: 1.5rem;
    --volt-radius-lg: 2rem;
    --volt-radius-xl: 4rem;
    
    /* Transitions */
    --volt-transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --volt-transition-slow: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--volt-bg-base);
    color: var(--volt-text-bone);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background-color: var(--volt-orange-glow);
    color: var(--volt-orange);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--volt-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--volt-text-bone);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    color: var(--volt-text-bone-dark);
    margin-bottom: 1rem;
}

.text-orange { color: var(--volt-orange); }
.text-emerald { color: var(--volt-emerald); }
.text-muted { color: var(--volt-text-muted); }
.text-bone { color: var(--volt-text-bone); }

/* ============================================
   BOOT SCREEN
   ============================================ */
.volt-boot-screen {
    position: fixed;
    inset: 0;
    background-color: var(--volt-bg-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.volt-boot-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.volt-boot-icon {
    position: relative;
    margin-bottom: 2rem;
}

.volt-boot-icon svg {
    width: 48px;
    height: 48px;
    color: var(--volt-orange);
    animation: volt-spin 3s linear infinite;
}

.volt-boot-icon .volt-inner-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volt-boot-icon .volt-inner-icon svg {
    width: 18px;
    height: 18px;
    color: var(--volt-text-bone);
    fill: var(--volt-text-bone);
    animation: none;
}

.volt-boot-text {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.2em;
    color: var(--volt-text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.volt-boot-progress {
    width: 16rem;
    height: 2px;
    background-color: var(--volt-bg-elevated);
    border-radius: 9999px;
    overflow: hidden;
}

.volt-boot-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--volt-orange), var(--volt-orange-light));
    animation: volt-progress 1.6s ease-out forwards;
}

@keyframes volt-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes volt-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.volt-bg-image {
    position: fixed;
    inset: 0;
    background-image: url('assets/images/bg-tech.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
    filter: grayscale(1);
    z-index: 0;
}

.volt-bg-gradient {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, 
        var(--volt-bg-base), 
        rgba(28, 28, 30, 0.95), 
        var(--volt-bg-base)
    );
    pointer-events: none;
    z-index: 1;
}

.volt-bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    opacity: 0.2;
    z-index: 2;
}

/* ============================================
   HEADER
   ============================================ */
.volt-header {
    position: relative;
    z-index: 50;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .volt-header {
        padding: 1rem 3rem;
    }
}

.volt-header-info {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    gap: 1.5rem;
    font-size: 10px;
    font-family: monospace;
    color: var(--volt-text-muted);
}

.volt-header-info.left {
    left: 6rem;
}

.volt-header-info.right {
    right: 3rem;
}

@media (min-width: 768px) {
    .volt-header-info {
        display: flex;
    }
}

.volt-header-info-label {
    color: var(--volt-orange);
    margin-bottom: 0.25rem;
}

.volt-header-info-label.emerald {
    color: var(--volt-emerald);
}

/* Brand / Logo */
.volt-brand {
    text-align: center;
    z-index: 10;
    cursor: pointer;
}

.volt-brand-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.volt-brand-icon {
    color: var(--volt-orange);
    transition: transform 0.7s ease;
}

.volt-brand:hover .volt-brand-icon {
    transform: rotate(90deg);
}

.volt-brand-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--volt-text-bone);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    font-family: Georgia, serif;
}

@media (min-width: 768px) {
    .volt-brand-title {
        font-size: 2.25rem;
    }
}

.volt-brand:hover .volt-brand-title {
    color: var(--volt-orange-light);
}

.volt-brand-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: var(--volt-text-dark);
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

/* Typewriter Effect */
.volt-typewriter {
    display: inline-flex;
    align-items: center;
}

.volt-typewriter-cursor {
    margin-left: 0.25rem;
    width: 2px;
    height: 1.5rem;
    background-color: var(--volt-orange);
    animation: volt-blink 1s infinite;
}

@media (min-width: 768px) {
    .volt-typewriter-cursor {
        height: 2rem;
    }
}

@keyframes volt-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ============================================
   MAIN CONTENT WRAPPER
   ============================================ */
.volt-main {
    position: relative;
    z-index: 10;
    flex: 1;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 6rem;
}

@media (min-width: 768px) {
    .volt-main {
        padding-left: 5rem;
        padding-bottom: 2rem;
    }
}

/* ============================================
   DASHBOARD - 4 COLUMN MENU CAPSULES
   ============================================ */
.volt-dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    width: 100%;
    padding: 1rem;
    padding-bottom: 6rem;
}

@media (min-width: 768px) {
    .volt-dashboard {
        padding-left: 6rem;
    }
}

.volt-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 1400px;
    align-items: stretch;
    justify-items: center;
}

@media (min-width: 768px) {
    .volt-dashboard-grid {
        gap: 1.5rem;
    }
}

/* Menu Capsule */
.volt-menu-capsule {
    position: relative;
    width: 100%;
    height: 350px;
    cursor: pointer;
    perspective: 1000px;
    opacity: 0;
    animation: volt-float-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@media (min-width: 768px) {
    .volt-menu-capsule {
        height: 500px;
    }
}

.volt-menu-capsule:nth-child(1) { animation-delay: 0ms; }
.volt-menu-capsule:nth-child(2) { animation-delay: 100ms; }
.volt-menu-capsule:nth-child(3) { animation-delay: 200ms; }
.volt-menu-capsule:nth-child(4) { animation-delay: 300ms; }

.volt-menu-capsule-inner {
    position: absolute;
    inset: 0;
    background-color: rgba(44, 44, 46, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--volt-radius-lg);
    border: 1px solid var(--volt-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0.5rem;
    transition: var(--volt-transition);
}

@media (min-width: 768px) {
    .volt-menu-capsule-inner {
        border-radius: var(--volt-radius-xl);
        padding: 3rem 1rem;
    }
}

.volt-menu-capsule:hover .volt-menu-capsule-inner {
    border-color: rgba(237, 135, 45, 0.5);
    box-shadow: var(--volt-shadow-glow);
}

/* Capsule Background Image */
.volt-menu-capsule-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    transition: opacity 0.7s ease;
}

.volt-menu-capsule:hover .volt-menu-capsule-bg {
    opacity: 0.4;
}

.volt-menu-capsule-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        var(--volt-bg-base), 
        transparent, 
        var(--volt-bg-base)
    );
    z-index: 1;
}

.volt-menu-capsule-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.7s ease;
}

.volt-menu-capsule:hover .volt-menu-capsule-bg img {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Capsule Icon */
.volt-menu-capsule-icon {
    position: relative;
    z-index: 10;
    padding: 0.75rem;
    background-color: rgba(28, 28, 30, 0.8);
    border: 1px solid rgba(237, 135, 45, 0.2);
    border-radius: 9999px;
    color: var(--volt-orange);
    transition: var(--volt-transition);
}

@media (min-width: 768px) {
    .volt-menu-capsule-icon {
        padding: 1rem;
    }
}

.volt-menu-capsule-icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .volt-menu-capsule-icon svg {
        width: 28px;
        height: 28px;
    }
}

.volt-menu-capsule:hover .volt-menu-capsule-icon {
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
    transform: scale(1.1);
}

/* Capsule Content */
.volt-menu-capsule-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    text-align: center;
    padding: 0 0.5rem;
    margin-top: auto;
}

@media (min-width: 768px) {
    .volt-menu-capsule-content {
        padding: 0 1rem;
    }
}

.volt-menu-capsule-line {
    height: 2rem;
    width: 1px;
    background-color: rgba(237, 135, 45, 0.3);
    margin-bottom: 0.5rem;
    transition: var(--volt-transition);
}

@media (min-width: 768px) {
    .volt-menu-capsule-line {
        height: 3rem;
        margin-bottom: 1rem;
    }
}

.volt-menu-capsule:hover .volt-menu-capsule-line {
    height: 4rem;
    background-color: var(--volt-orange);
}

@media (min-width: 768px) {
    .volt-menu-capsule:hover .volt-menu-capsule-line {
        height: 6rem;
    }
}

.volt-menu-capsule-title {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--volt-text-bone);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
    word-break: break-word;
    width: 100%;
}

@media (min-width: 768px) {
    .volt-menu-capsule-title {
        font-size: 1.25rem;
        letter-spacing: 0.15em;
        margin-bottom: 0.5rem;
    }
}

.volt-menu-capsule:hover .volt-menu-capsule-title {
    color: var(--volt-orange);
}

.volt-menu-capsule-subtitle {
    font-size: 8px;
    font-weight: 700;
    color: var(--volt-text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .volt-menu-capsule-subtitle {
        font-size: 10px;
        letter-spacing: 0.3em;
    }
}

.volt-menu-capsule:hover .volt-menu-capsule-subtitle {
    color: var(--volt-orange-light);
}

/* ============================================
   CAPSULE CARD (Standard)
   ============================================ */
.volt-capsule-card {
    position: relative;
    background-color: rgba(44, 44, 46, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--volt-border);
    border-radius: var(--volt-radius-lg);
    overflow: hidden;
    transition: var(--volt-transition-slow);
    box-shadow: var(--volt-shadow);
    opacity: 0;
    animation: volt-float-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.volt-capsule-card.clickable {
    cursor: pointer;
}

.volt-capsule-card.clickable:hover {
    transform: translateY(-0.5rem);
}

.volt-capsule-card:hover {
    border-color: rgba(237, 135, 45, 0.4);
    box-shadow: var(--volt-shadow-glow);
}

.volt-capsule-card.glow-emerald:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 30px -10px rgba(16, 185, 129, 0.2);
}

/* Card Background Image */
.volt-capsule-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.volt-capsule-card:hover .volt-capsule-card-bg {
    filter: grayscale(0);
}

.volt-capsule-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.volt-capsule-card:hover .volt-capsule-card-bg img {
    transform: scale(1.1);
}

.volt-capsule-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        var(--volt-bg-card),
        rgba(44, 44, 46, 0.9),
        transparent
    );
}

.volt-capsule-card-content {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================
   TECH BADGE
   ============================================ */
.volt-tech-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.volt-tech-badge.orange {
    border: 1px solid rgba(237, 135, 45, 0.3);
    color: var(--volt-orange-light);
    background-color: rgba(237, 135, 45, 0.1);
}

.volt-tech-badge.emerald {
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--volt-emerald-light);
    background-color: rgba(16, 185, 129, 0.1);
}

.volt-tech-badge.slate {
    border: 1px solid rgba(100, 116, 139, 0.3);
    color: var(--volt-text-bone);
    background-color: rgba(100, 116, 139, 0.1);
}

/* ============================================
   DETAIL VIEW
   ============================================ */
.volt-detail-view {
    display: flex;
    flex-direction: column;
    max-width: 64rem;
    margin: 0 auto;
    padding-bottom: 8rem;
    width: 100%;
    animation: volt-zoom-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@media (min-width: 768px) {
    .volt-detail-view {
        padding-left: 5rem;
    }
}

.volt-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 30;
    background-color: var(--volt-bg-overlay);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--volt-border);
}

@media (min-width: 768px) {
    .volt-detail-header {
        padding: 1rem 0;
    }
}

.volt-detail-back {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: 9999px;
    color: var(--volt-text-muted);
    cursor: pointer;
    transition: var(--volt-transition);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.volt-detail-back:hover {
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
    border-color: var(--volt-orange);
}

.volt-detail-back svg {
    transform: rotate(180deg);
}

.volt-detail-title-wrap h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .volt-detail-title-wrap h2 {
        font-size: 1.5rem;
    }
}

.volt-detail-title-wrap h2 svg {
    color: var(--volt-orange);
}

.volt-detail-subtitle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.volt-detail-subtitle::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background-color: rgba(237, 135, 45, 0.5);
}

.volt-detail-subtitle span {
    color: var(--volt-text-muted);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.volt-detail-content {
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .volt-detail-content {
        padding: 0;
    }
}

.volt-detail-box {
    background-color: rgba(44, 44, 46, 0.6);
    border: 1px solid var(--volt-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--volt-radius-lg);
    padding: 1.5rem;
    min-height: 400px;
    box-shadow: var(--volt-shadow);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .volt-detail-box {
        padding: 2.5rem;
    }
}

.volt-detail-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, 
        rgba(237, 135, 45, 0.05),
        transparent,
        transparent
    );
    pointer-events: none;
}

/* ============================================
   VERTICAL DOCK MENU (Desktop - Left)
   ============================================ */
.volt-dock-vertical {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    padding-left: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: none;
}

@media (min-width: 768px) {
    .volt-dock-vertical {
        display: block;
    }
}

.volt-dock-vertical-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(28, 28, 30, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--volt-border);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transition: width 0.3s ease;
    width: 2.5rem;
    overflow: hidden;
}

.volt-dock-vertical:hover .volt-dock-vertical-inner {
    width: 16rem;
}

.volt-dock-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--volt-border);
    transition: padding 0.3s ease;
}

.volt-dock-vertical:hover .volt-dock-brand {
    padding: 0.5rem;
}

.volt-dock-brand svg {
    flex-shrink: 0;
    color: var(--volt-orange);
}

.volt-dock-brand span {
    font-size: 12px;
    font-weight: 700;
    color: var(--volt-text-bone);
    letter-spacing: 0.1em;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.volt-dock-vertical:hover .volt-dock-brand span {
    opacity: 1;
}

.volt-dock-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.75rem;
    color: var(--volt-text-muted);
    cursor: pointer;
    transition: var(--volt-transition);
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 14px;
    text-align: left;
}

.volt-dock-item:hover {
    background-color: var(--volt-bg-elevated);
    color: var(--volt-text-bone);
}

.volt-dock-item.active {
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
}

.volt-dock-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.volt-dock-item span {
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.volt-dock-vertical:hover .volt-dock-item span {
    opacity: 1;
}

.volt-dock-divider {
    height: 1px;
    width: 100%;
    background-color: var(--volt-border);
    margin: 0.25rem 0;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.volt-lang-switcher {
    position: relative;
}

.volt-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    padding: 0.625rem;
    background: transparent;
    border: none;
    color: var(--volt-text-muted);
    cursor: pointer;
    transition: var(--volt-transition);
    border-radius: 0.75rem;
}

.volt-lang-toggle:hover {
    color: var(--volt-text-bone);
    background-color: rgba(255, 255, 255, 0.05);
}

.volt-lang-current {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.volt-lang-dropdown {
    position: absolute;
    left: calc(100% + 0.75rem);
    bottom: 0;
    min-width: 160px;
    padding: 0.5rem;
    background-color: rgba(28, 28, 30, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--volt-border);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.volt-lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.volt-lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--volt-text-muted);
    font-size: 0.8125rem;
    text-align: left;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: var(--volt-transition);
}

.volt-lang-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--volt-text-bone);
}

.volt-lang-option.active {
    background-color: rgba(237, 135, 45, 0.15);
    color: var(--volt-primary);
}

.volt-lang-flag {
    font-size: 1.125rem;
    line-height: 1;
}

.volt-lang-name {
    flex: 1;
}

/* Mobile Language Dropdown positioning */
@media (max-width: 767px) {
    .volt-lang-dropdown {
        left: auto;
        right: 0;
        bottom: calc(100% + 0.5rem);
        transform: translateY(10px);
    }
    
    .volt-lang-dropdown.open {
        transform: translateY(0);
    }
}

/* ============================================
   MOBILE DOCK (Bottom)
   ============================================ */
.volt-dock-mobile {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(28, 28, 30, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--volt-border);
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .volt-dock-mobile {
        display: none;
    }
}

.volt-dock-mobile-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    color: var(--volt-text-muted);
    cursor: pointer;
    transition: var(--volt-transition);
    background: transparent;
    border: none;
}

.volt-dock-mobile-item:hover {
    color: var(--volt-text-bone);
}

.volt-dock-mobile-item.active {
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
}

.volt-dock-mobile-item.home-item.active {
    background-color: var(--volt-bg-elevated);
    color: var(--volt-orange);
}

.volt-dock-mobile-item svg {
    width: 18px;
    height: 18px;
}

.volt-dock-mobile-divider {
    width: 1px;
    height: 1.5rem;
    background-color: var(--volt-border);
    margin: 0 0.25rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes volt-float-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes volt-zoom-in {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes volt-slide-in-left {
    from {
        opacity: 0;
        transform: translate(-20px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes volt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.volt-animate-float-up {
    animation: volt-float-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.volt-animate-pulse {
    animation: volt-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   SCROLLBAR
   ============================================ */
.volt-custom-scrollbar::-webkit-scrollbar {
    width: 0;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.volt-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .volt-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.volt-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .volt-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.volt-profile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .volt-profile {
        flex-direction: row;
        align-items: flex-start;
    }
}

.volt-profile-avatar {
    width: 12rem;
    height: 12rem;
    border-radius: var(--volt-radius-lg);
    padding: 0.25rem;
    box-shadow: var(--volt-shadow);
    flex-shrink: 0;
    border: 1px solid var(--volt-border);
    background-color: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.volt-profile-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--volt-radius-lg) - 0.2rem);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.volt-profile-info {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .volt-profile-info {
        text-align: left;
    }
}

.volt-profile-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .volt-profile-name {
        font-size: 2.25rem;
    }
}

.volt-profile-role {
    color: var(--volt-orange);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.volt-profile-bio {
    color: var(--volt-text-bone-dark);
    line-height: 1.7;
    font-size: 0.875rem;
    max-width: 42rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .volt-profile-bio {
        font-size: 1rem;
    }
}

.volt-profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 28rem;
    margin: 1.5rem auto 0;
}

@media (min-width: 768px) {
    .volt-profile-stats {
        margin: 1.5rem 0 0;
    }
}

.volt-profile-stat {
    background-color: rgba(44, 44, 46, 0.5);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--volt-border);
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.volt-profile-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    margin-bottom: 0.25rem;
}

.volt-profile-stat-label {
    font-size: 10px;
    color: var(--volt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* ============================================
   NEWSLETTER / REPORTS
   ============================================ */
.volt-report-featured {
    padding: 1.5rem;
    background: linear-gradient(90deg, 
        rgba(237, 135, 45, 0.2), 
        transparent
    );
    border: 1px solid rgba(237, 135, 45, 0.2);
    border-radius: var(--volt-radius-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1rem;
}

.volt-report-featured::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--volt-orange);
}

.volt-report-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.volt-report-indicator-dot {
    position: relative;
    width: 10px;
    height: 10px;
}

.volt-report-indicator-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background-color: var(--volt-orange);
    animation: volt-pulse 1.5s infinite;
}

.volt-report-indicator-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background-color: var(--volt-orange);
}

.volt-report-indicator span {
    color: var(--volt-orange);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.volt-report-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(44, 44, 46, 0.4);
    border: 1px solid var(--volt-border);
    border-radius: var(--volt-radius-md);
    cursor: pointer;
    transition: var(--volt-transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.volt-report-item:hover {
    background-color: var(--volt-bg-elevated);
}

.volt-report-item-id {
    color: var(--volt-text-muted);
    font-family: monospace;
    font-size: 12px;
    padding-top: 0.25rem;
    transition: color 0.3s ease;
}

.volt-report-item:hover .volt-report-item-id {
    color: var(--volt-orange);
}

.volt-report-item-title {
    font-weight: 700;
    color: var(--volt-text-bone);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.volt-report-item:hover .volt-report-item-title {
    color: var(--volt-orange-light);
}

.volt-report-item-desc {
    font-size: 12px;
    color: var(--volt-text-muted);
    margin-top: 0.25rem;
    font-weight: 300;
}

/* ============================================
   LIBRARY / 101 CARDS
   ============================================ */
.volt-library-card {
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.volt-library-card-icon {
    padding: 0.75rem;
    background-color: rgba(28, 28, 30, 0.6);
    border-radius: 9999px;
    color: var(--volt-orange);
    transition: var(--volt-transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(237, 135, 45, 0.2);
}

.volt-library-card:hover .volt-library-card-icon {
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
}

.volt-library-card-title {
    font-weight: 700;
    font-size: 12px;
    color: var(--volt-text-bone);
    letter-spacing: 0.05em;
    z-index: 10;
    transition: color 0.3s ease;
}

.volt-library-card:hover .volt-library-card-title {
    color: white;
}

/* ============================================
   PROJECT CARDS
   ============================================ */
.volt-project-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.volt-project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.volt-project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.volt-project-desc {
    color: var(--volt-text-bone-dark);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-left: 2px solid rgba(237, 135, 45, 0.3);
    padding-left: 1rem;
    font-weight: 300;
}

.volt-project-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.volt-project-tag {
    padding: 0.25rem 0.75rem;
    background-color: rgba(28, 28, 30, 0.6);
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    color: var(--volt-text-muted);
    border: 1px solid var(--volt-border);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ============================================
   FOOTER / SOCIAL
   ============================================ */
.volt-footer {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid var(--volt-border);
    margin-top: auto;
}

.volt-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.volt-social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: 9999px;
    color: var(--volt-text-muted);
    transition: var(--volt-transition);
}

.volt-social-link:hover {
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
    border-color: var(--volt-orange);
    transform: translateY(-2px);
}

.volt-copyright {
    font-size: 12px;
    color: var(--volt-text-muted);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.volt-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: 0.5rem;
}

.volt-lang-btn {
    padding: 0.25rem 0.5rem;
    font-size: 10px;
    font-weight: 700;
    color: var(--volt-text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: var(--volt-transition);
}

.volt-lang-btn:hover {
    color: var(--volt-text-bone);
}

.volt-lang-btn.active {
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
}

/* ============================================
   SINGLE POST & PAGE
   ============================================ */
.volt-single-content {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .volt-single-content {
        padding: 3rem 2rem;
    }
}

.volt-single-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--volt-border);
}

.volt-single-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .volt-single-title {
        font-size: 2.5rem;
    }
}

.volt-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--volt-text-muted);
}

.volt-single-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volt-single-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--volt-orange);
}

.volt-entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--volt-text-bone-dark);
}

.volt-entry-content h2,
.volt-entry-content h3,
.volt-entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--volt-text-bone);
}

.volt-entry-content p {
    margin-bottom: 1.5rem;
}

.volt-entry-content a {
    color: var(--volt-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.volt-entry-content a:hover {
    color: var(--volt-orange-light);
}

.volt-entry-content ul,
.volt-entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.volt-entry-content li {
    margin-bottom: 0.5rem;
}

.volt-entry-content blockquote {
    border-left: 4px solid var(--volt-orange);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--volt-text-muted);
}

.volt-entry-content pre {
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: var(--volt-radius-sm);
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.volt-entry-content code {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 0.875rem;
}

.volt-entry-content img {
    border-radius: var(--volt-radius-md);
    margin: 2rem 0;
}

/* Featured Image */
.volt-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--volt-radius-lg);
    overflow: hidden;
    border: 1px solid var(--volt-border);
}

.volt-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   ARCHIVE / BLOG
   ============================================ */
.volt-archive-header {
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.volt-archive-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    margin-bottom: 0.5rem;
}

.volt-archive-desc {
    color: var(--volt-text-muted);
    max-width: 32rem;
    margin: 0 auto;
}

.volt-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .volt-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .volt-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.volt-post-card {
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: var(--volt-radius-md);
    overflow: hidden;
    transition: var(--volt-transition);
}

.volt-post-card:hover {
    border-color: rgba(237, 135, 45, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--volt-shadow-glow);
}

.volt-post-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--volt-bg-elevated);
}

.volt-post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.volt-post-card:hover .volt-post-card-image img {
    transform: scale(1.05);
}

.volt-post-card-content {
    padding: 1.5rem;
}

.volt-post-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.volt-post-card:hover .volt-post-card-title {
    color: var(--volt-orange);
}

.volt-post-card-excerpt {
    font-size: 0.875rem;
    color: var(--volt-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.volt-post-card-meta {
    font-size: 12px;
    color: var(--volt-text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volt-post-card-meta svg {
    width: 14px;
    height: 14px;
    color: var(--volt-orange);
}

/* ============================================
   PAGINATION
   ============================================ */
.volt-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 1rem;
}

.volt-pagination a,
.volt-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: 0.5rem;
    color: var(--volt-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--volt-transition);
}

.volt-pagination a:hover {
    background-color: var(--volt-bg-elevated);
    color: var(--volt-text-bone);
    border-color: var(--volt-orange);
}

.volt-pagination .current {
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
    border-color: var(--volt-orange);
}

/* ============================================
   404 PAGE
   ============================================ */
.volt-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 2rem;
}

.volt-404-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--volt-orange);
    line-height: 1;
    opacity: 0.3;
}

.volt-404-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    margin-bottom: 1rem;
}

.volt-404-text {
    color: var(--volt-text-muted);
    margin-bottom: 2rem;
    max-width: 24rem;
}

.volt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: var(--volt-transition);
}

.volt-btn:hover {
    background-color: var(--volt-orange-light);
    transform: translateY(-2px);
}

/* ============================================
   COMMENTS
   ============================================ */
.volt-comments {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--volt-border);
}

.volt-comments-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volt-comments-title svg {
    color: var(--volt-orange);
}

.volt-comment {
    padding: 1.5rem;
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: var(--volt-radius-md);
    margin-bottom: 1rem;
}

.volt-comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.volt-comment-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: var(--volt-bg-elevated);
    overflow: hidden;
}

.volt-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volt-comment-author {
    font-weight: 600;
    color: var(--volt-text-bone);
}

.volt-comment-date {
    font-size: 12px;
    color: var(--volt-text-muted);
}

.volt-comment-content {
    color: var(--volt-text-bone-dark);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.volt-comment-reply {
    margin-left: 2rem;
}

@media (min-width: 768px) {
    .volt-comment-reply {
        margin-left: 4rem;
    }
}

/* Comment Form */
.volt-comment-form {
    margin-top: 2rem;
}

.volt-form-group {
    margin-bottom: 1.5rem;
}

.volt-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--volt-text-bone);
    margin-bottom: 0.5rem;
}

.volt-form-input,
.volt-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: 0.5rem;
    color: var(--volt-text-bone);
    font-size: 1rem;
    transition: var(--volt-transition);
}

.volt-form-input:focus,
.volt-form-textarea:focus {
    outline: none;
    border-color: var(--volt-orange);
    box-shadow: 0 0 0 3px rgba(237, 135, 45, 0.1);
}

.volt-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.volt-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--volt-transition);
}

.volt-form-submit:hover {
    background-color: var(--volt-orange-light);
    transform: translateY(-2px);
}

/* ============================================
   SEARCH
   ============================================ */
.volt-search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.volt-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: 9999px;
    color: var(--volt-text-bone);
    font-size: 1rem;
}

.volt-search-input:focus {
    outline: none;
    border-color: var(--volt-orange);
}

.volt-search-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--volt-orange);
    color: var(--volt-bg-base);
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--volt-transition);
}

.volt-search-btn:hover {
    background-color: var(--volt-orange-light);
}

/* ============================================
   WIDGETS / SIDEBAR
   ============================================ */
.volt-widget {
    background-color: var(--volt-bg-card);
    border: 1px solid var(--volt-border);
    border-radius: var(--volt-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.volt-widget-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--volt-text-bone);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--volt-border);
}

.volt-widget ul {
    list-style: none;
}

.volt-widget li {
    margin-bottom: 0.5rem;
}

.volt-widget a {
    color: var(--volt-text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volt-widget a:hover {
    color: var(--volt-orange);
}

.volt-widget a::before {
    content: '›';
    color: var(--volt-orange);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.volt-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .volt-container {
        padding: 0 2rem;
    }
}

.volt-flex {
    display: flex;
}

.volt-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.volt-gap-1 { gap: 0.25rem; }
.volt-gap-2 { gap: 0.5rem; }
.volt-gap-4 { gap: 1rem; }
.volt-gap-6 { gap: 1.5rem; }

.volt-mt-4 { margin-top: 1rem; }
.volt-mt-6 { margin-top: 1.5rem; }
.volt-mt-8 { margin-top: 2rem; }

.volt-mb-4 { margin-bottom: 1rem; }
.volt-mb-6 { margin-bottom: 1.5rem; }
.volt-mb-8 { margin-bottom: 2rem; }

.volt-text-center { text-align: center; }
.volt-text-left { text-align: left; }
.volt-text-right { text-align: right; }

.volt-hidden { display: none; }

@media (min-width: 768px) {
    .volt-md-block { display: block; }
    .volt-md-flex { display: flex; }
    .volt-md-hidden { display: none; }
}

/* ============================================
   GOOGLE TRANSLATE OVERRIDE
   ============================================ */
.goog-te-banner-frame,
.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    font-family: inherit !important;
}

.goog-te-gadget-simple {
    background-color: var(--volt-bg-card) !important;
    border: 1px solid var(--volt-border) !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    font-size: 12px !important;
}

.goog-te-gadget-simple span {
    color: var(--volt-text-muted) !important;
}

.goog-te-menu-value span {
    color: var(--volt-text-bone) !important;
}

/* ============================================
   WORDPRESS CORE STYLES
   ============================================ */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--volt-text-muted);
    text-align: center;
    padding-top: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    border-radius: var(--volt-radius-sm);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   ADMIN BAR ADJUSTMENT
   ============================================ */
.admin-bar .volt-boot-screen {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .volt-boot-screen {
        top: 46px;
    }
}

.admin-bar .volt-dock-vertical {
    top: calc(50% + 16px);
}

.admin-bar .volt-dock-mobile {
    bottom: 1rem;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .volt-boot-screen,
    .volt-dock-vertical,
    .volt-dock-mobile,
    .volt-bg-image,
    .volt-bg-gradient,
    .volt-bg-grid {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .volt-single-content {
        max-width: 100%;
    }
}
