@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9; /* light background */
    color: #0f172a; /* dark text */
    overflow-x: hidden;
}

/* Glass Card (light version) */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
}

/* Gradient Text stays same */
.gradient-text {
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-transition {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden-page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.active-page {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Inputs (light mode) */
input, select, textarea {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #0f172a !important;
}

    /* Focus state */
    input:focus, select:focus, textarea:focus {
        border-color: #0ea5e9 !important;
        outline: none;
        box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.3);
    }

/* Button */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    color: white;
    transition: transform 0.2s;
}

    .btn-primary:hover {
        transform: scale(1.02);
        filter: brightness(1.05);
    }

/* Scrollbar (light) */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #e2e8f0;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}
