/* ========================================
   WOLUJEWICZ LAB CUSTOM STYLES
   ======================================== */

/* Hide the old static banner image */
.page__hero--overlay {
    display: none !important;
}

.page__hero-image {
    display: none !important;
}

/* Animated DNA Banner Styles */
.animated-banner-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.animated-banner {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 100;
    text-align: center;
    padding: 40px;
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.banner-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
    text-shadow: 0 3px 20px rgba(0,0,0,0.6);
    letter-spacing: -1px;
}

.banner-content p {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* DNA Ticker - Top */
.dna-ticker-top {
    position: absolute;
    width: 100%;
    top: 32%;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 8px;
    color: rgba(59, 130, 246, 0.25);
    white-space: nowrap;
    overflow: hidden;
}

.ticker-content-top {
    display: inline-block;
    animation: ticker 40s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* DNA Ticker - Bottom (Opposite Direction) */
.dna-ticker-bottom {
    position: absolute;
    width: 100%;
    top: 68%;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 8px;
    color: rgba(59, 130, 246, 0.25);
    white-space: nowrap;
    overflow: hidden;
}

.ticker-content-bottom {
    display: inline-block;
    animation: tickerReverse 40s linear infinite;
}

@keyframes tickerReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.dna-ticker-top .highlight-base,
.dna-ticker-bottom .highlight-base {
    color: rgba(59, 130, 246, 0.7);
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

/* Larger Colorful Dots */
.large-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.large-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: largeDotFloat 6s ease-in-out infinite;
}

@keyframes largeDotFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-35px) scale(1.2); 
        opacity: 1; 
    }
}

.large-dot.pink {
    background: #ec4899;
    box-shadow: 0 0 35px rgba(236, 72, 153, 0.8);
}

.large-dot.blue {
    background: #3b82f6;
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.8);
}

.large-dot.purple {
    background: #a855f7;
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.8);
}

.large-dot.cyan {
    background: #06b6d4;
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.8);
}

.large-dot.green {
    background: #10b981;
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.8);
}

.large-dot.orange {
    background: #f59e0b;
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .animated-banner {
        height: 350px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 18px;
    }
    
    .dna-ticker-top,
    .dna-ticker-bottom {
        font-size: 16px;
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .animated-banner {
        height: 300px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .dna-ticker-top,
    .dna-ticker-bottom {
        font-size: 14px;
        letter-spacing: 4px;
    }
}
