/*
Theme Name: Vzytowka Cyberpunk 2050
Theme URI: https://vzytowka.pl
Author: Vzytowka.pl
Author URI: https://vzytowka.pl
Description: Motyw cyberpunkowy 2050 dla agencji marketingowej Vzytowka.pl
Version: 1.0
License: GPL v2 or later
Text Domain: vzytowka
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Space+Grotesk:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #03050a;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

:root {
    --primary: #00f0ff;
    --secondary: #ff36b0;
    --tertiary: #b87cff;
    --dark: #0a0c15;
    --darker: #04060c;
    --glass-bg: rgba(10, 15, 25, 0.7);
}

/* Canvas 3D tła */
#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.8;
    pointer-events: none;
}

/* Subtelna siatka */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Kursor */
.cyber-cursor {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    transition: transform 0.15s ease;
    will-change: left, top;
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 60px;
    padding: 1rem 2rem;
    z-index: 100;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0,240,255,0.3);
}

/* Przyciski */
.btn-neon {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0,240,255,0.3);
    text-decoration: none;
    display: inline-block;
    cursor: none;
}

.btn-neon:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 30px var(--primary);
    transform: scale(1.05);
}

.btn-neon.secondary {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 10px rgba(255,54,176,0.3);
}

.btn-neon.secondary:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 30px var(--secondary);
}

/* Karty */
.glass-card {
    background: rgba(15, 20, 30, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
    transform: translateY(-10px) scale(1.02);
    background: rgba(20, 30, 45, 0.8);
}

/* Tytuły */
.cyber-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--tertiary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 20px rgba(0,240,255,0.5));
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 30%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

/* Statystyki */
.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 40px;
    border: 1px solid rgba(0,240,255,0.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

/* Portfolio */
.portfolio-item {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    background: var(--darker);
    border: 1px solid rgba(0,240,255,0.2);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(255,54,176,0.2));
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Karty monitorów */
.monitor-card {
    background: #111;
    padding: 15px 15px 25px 15px;
    border-radius: 20px 20px 15px 15px;
    transition: all 0.4s;
    position: relative;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.monitor-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--primary);
    transform: translateY(-10px);
}

.monitor-screen {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 180px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
}

.monitor-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.monitor-card:hover .monitor-screen img {
    transform: scale(1.1);
}

.monitor-stand {
    width: 40px;
    height: 6px;
    background: var(--primary);
    border-radius: 3px;
    margin: 0 auto 5px;
    box-shadow: 0 0 15px var(--primary);
}

/* Formularz */
.cyber-input {
    background: rgba(5, 10, 20, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 40px;
    padding: 1rem 1.5rem;
    width: 100%;
    color: white;
    transition: 0.3s;
}

.cyber-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary);
}

.cyber-input option {
    background: #0a0c15;
    color: white;
}

/* Mapa */
.map-container {
    border: 1px solid var(--primary);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,240,255,0.3);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(50%) hue-rotate(180deg) brightness(0.8);
}

/* Footer */
.footer {
    background: rgba(5, 8, 15, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,240,255,0.2);
    padding: 3rem 0;
    margin-top: 5rem;
}

/* Service cards */
.service-card {
    background: rgba(15, 20, 30, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    padding: 2.5rem;
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0,240,255,0.3);
    transform: translateY(-10px);
}

/* Responsywność */
@media (max-width: 768px) {
    .navbar { padding: 1rem; width: 95%; }
    .cyber-title { font-size: 3rem; }
    .monitor-screen { height: 140px; }
}

