/*
Theme Name: Pixenco Studio
Theme URI: https://pixencostudio.com/
Author: Pixenco Studio
Description: Premium Dark Glassmorphism & Vibrant Teal custom WordPress theme built specifically for Pixenco Studio Setup BCL & Bayarcash.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: pixenco-studio
*/

/* Custom Base & Utility Extensions */
:root {
    --color-brand-green: #25D366;
    --color-brand-teal: #14b8a6;
    --color-brand-teal-dark: #0f766e;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #020617;
    color: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

/* Glassmorphism Panels */
.glass-panel {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-header {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Custom Gradient Text */
.text-gradient-teal {
    background: linear-gradient(135deg, #2dd4bf 0%, #38bdf8 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse {
    animation: whatsapp-pulse 2.2s infinite;
}

/* Card Hover Enhancements */
.card-hover {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover:hover {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(20, 184, 166, 0.45);
    box-shadow: 0 20px 40px -15px rgba(20, 184, 166, 0.15);
}

/* Custom Slim Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d9488;
}
