/* Premium Visual Effects and Animations */

/* Minimal Animations */
.floating {
    /* Animation disabled for cleaner look */
}

/* Static Text Styles */
.text-gradient-animated {
    color: var(--text-dark);
}

/* Premium Section Backgrounds */
.section-premium {
    background: var(--bg-section);
}

/* Clean sections without animations */

/* Glass Cards - Minimal Light Theme */
.card-glass-premium {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, 0.06);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-glass-premium:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.1);
}

/* Clean Button Styles */
.neon-glow {
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.neon-glow:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

/* Keyframes removed for cleaner design */

/* Parallax Sections */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 50vh;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.8),
        rgba(139, 92, 246, 0.6)
    );
}

/* Premium Icons */
.icon-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.icon-premium::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.icon-premium:hover::before {
    opacity: 0.7;
}

.icon-premium:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Clean decorative elements removed */

/* Hover Reveal Effects */
.hover-reveal {
    position: relative;
    overflow: hidden;
}

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

.hover-reveal:hover::before {
    left: 100%;
}

/* Premium Typography Effects */
.text-shadow-premium {
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 2px rgba(0, 0, 0, 0.1),
        0 4px 4px rgba(0, 0, 0, 0.1),
        0 8px 8px rgba(0, 0, 0, 0.1);
}

.text-outline {
    -webkit-text-stroke: 2px var(--primary);
    -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-glass-premium:hover,
    .card:hover {
        transform: none;
    }
}
