/* printworks.css - PrintWorks-specific styles */
.hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(123, 45, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(240, 248, 255, 0.8);
}

.tagline {
    display: inline-block;
    font-size: 1.5rem;
    margin-bottom: 40px;
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.tagline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: 0.5s;
}

.tagline:hover::after {
    left: 100%;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.upload-section {
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.8) 0%, rgba(20, 20, 40, 0.9) 100%);
    border-radius: 20px;
    padding: 50px;
    margin: 80px 0;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.upload-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0, 240, 255, 0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: -1;
}

.upload-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--light);
}

.footer {
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.9) 0%, rgba(20, 20, 40, 1) 100%);
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(240, 248, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    color: var(--light);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(240, 248, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .upload-section {
        padding: 30px 20px;
    }
    
    .upload-section h2 {
        font-size: 2rem;
    }
}