/* 
  EduNest Premium Design System
  V1.0 - Animations & Effects
*/

:root {
    --nav-height: 80px;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --premium-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* Typography Enhancements */
h1,
h2,
h3 {
    letter-spacing: -0.02em;
}

/* Advanced Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Magnetic Button Base (Handled by JS, but styles here) */
.magnetic-btn {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Premium Card Hover */
.premium-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Smooth Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GSAP Hidden Initial State */
.gsap-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Custom Selection Color */
::selection {
    background: rgba(59, 130, 246, 0.2);
    color: #1e3a8a;
}