/* ========================================
   Webshops Page Specific Styles
   ======================================== */

/* Hero Section - Webshops Page (Same as webdesign-page) */
.hero.webshops-page {
    background: linear-gradient(135deg, #020617 0%, #0a0f1e 30%, #0f172a 60%, #020617 100%);
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Animated Grid Lines - Sci-Fi Style */
.hero.webshops-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 150, 213, 0.4) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 150, 213, 0.4) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: grid-move 15s linear infinite;
    z-index: 1;
    opacity: 0.5;
}

@keyframes grid-move {
    0% {
        transform: perspective(600px) rotateX(65deg) translateY(0);
    }
    100% {
        transform: perspective(600px) rotateX(65deg) translateY(60px);
    }
}

/* Neon Glow Effects */
.hero.webshops-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 150, 213, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(0, 150, 213, 0.2) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 150, 213, 0.15) 0%, transparent 50%);
    animation: neon-pulse 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes neon-pulse {
    0%, 100% {
        opacity: 0.4;
        filter: blur(60px);
    }
    50% {
        opacity: 0.6;
        filter: blur(80px);
    }
}

.hero.webshops-page .container {
    position: relative;
    z-index: 500;
}

/* Code elements for tech feel - Webshops specific */
.hero.webshops-page .code-element {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: rgba(59, 130, 246, 0.3);
    z-index: 2;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero.webshops-page .code-element:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero.webshops-page .code-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero.webshops-page .code-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Wave separator */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero.webshops-page {
        padding: 100px 0 60px;
    }
    
    /* Hide code elements on mobile to prevent overflow */
    .hero.webshops-page .code-element:nth-child(2),
    .hero.webshops-page .code-element:nth-child(3) {
        display: none;
    }
    
    .hero.webshops-page .code-element:nth-child(1) {
        left: 5%;
    }
    
    .hero.webshops-page .hero-title {
        font-size: 2.5rem;
    }
    
    .hero.webshops-page .hero-description {
        font-size: 1rem;
    }
}
