/*
 Theme Name: gcf-it-child
 Theme URI: https://gcf-it.de
 Description: Premium IT Architecture Child Theme. 1:1 Preview Match with High-End Interactive Neon Effects.
 Author: Giancarlo Fiorino
 Template: storefront
 Version: 1.9.0
*/

@import url("../storefront/style.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
    --gcf-primary: #2563eb;
    --gcf-bg: #020617;
    --gcf-accent: #3b82f6;
    --gcf-glass: rgba(255, 255, 255, 0.03);
    --gcf-glass-border: rgba(255, 255, 255, 0.08);
    --hero-font-size: 4.3rem;
    --body-font-size: 1.05rem;
    --card-title-font-size: 1.8rem;
    --global-scale: 0.5;
}

body {
    background-color: var(--gcf-bg) !important;
    color: #f1f5f9 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: var(--body-font-size) !important;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Vibrant Background Mesh */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, var(--gcf-primary)05, transparent 50%),
        radial-gradient(circle at 90% 90%, var(--gcf-accent)05, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.site-header {
    background-color: rgba(2, 6, 23, 0.8) !important;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--gcf-glass-border);
}

/* Custom Hero Section */
.v-hero {
    padding: calc(160px * var(--global-scale)) 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, var(--gcf-primary)10, transparent 70%);
    overflow: hidden;
}

.v-hero h1 {
    font-size: var(--hero-font-size);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.07em;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 80px var(--gcf-primary)40;
}

.v-hero p {
    font-size: calc(var(--body-font-size) * 1.35);
    color: #94a3b8;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 500;
}

.v-btn {
    display: inline-block;
    padding: 22px 65px;
    background: linear-gradient(135deg, var(--gcf-primary), var(--gcf-accent));
    color: white !important;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    box-shadow: 0 10px 40px var(--gcf-primary)50;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    margin-top: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.v-btn:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px var(--gcf-primary);
    filter: brightness(1.2);
}

/* Service Card System */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.v-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gcf-glass-border);
    padding: 60px 50px;
    border-radius: 40px;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(30px);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.v-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gcf-primary)05 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.v-card:hover {
    transform: translateY(-20px);
    border-color: var(--gcf-primary)50;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 50px var(--gcf-primary)20;
    background: rgba(255, 255, 255, 0.04);
}

.v-card:hover::before { opacity: 1; }

.v-card h3 {
    font-size: var(--card-title-font-size);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    transition: all 0.4s;
}

.v-card:hover h3 {
    color: var(--gcf-primary);
    transform: translateX(10px);
}

.v-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.1rem;
    transition: color 0.4s;
}

.v-card:hover p { color: #f1f5f9; }

.v-card-icon {
    display: inline-block;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border-radius: 25px;
    color: var(--gcf-primary);
    margin-bottom: 35px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
}

.v-card:hover .v-card-icon {
    background: var(--gcf-primary);
    color: white;
    transform: scale(1.2) rotate(12deg);
    box-shadow: 0 0 30px var(--gcf-primary)60;
}

/* Footer Section */
.site-footer {
    background: #010409 !important;
    border-top: 1px solid var(--gcf-glass-border);
    color: #64748b !important;
    padding: 100px 0;
}

.footer-link:hover {
    color: var(--gcf-primary) !important;
    padding-left: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    :root { 
        --hero-font-size: 3rem; 
        --body-font-size: 1rem;
    }
    .v-hero { padding: 100px 20px; }
}
