/* Custom Styles for non-Tailwind specific needs */
body {
    background-color: #F8FAFC;
    color: #0F172A;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* New Nav Glass for Light Background */
.glass-nav-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,249,255,0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,1);
    box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #94A3B8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748B;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.clip-image {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
