/* src/styles/premium-theme.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors - Modernized */
    --primary-blue: #00529B;     /* Deep Medical Blue */
    --primary-light: #4A90E2;    /* Soft Action Blue */
    --accent-teal: #00Bfa5;      /* Success/Safety Teal */
    
    /* Neumorphism/Glass Colors */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    
    --surface-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Outfit', sans-serif !important;
    background: radial-gradient(circle at 10% 20%, rgb(239, 246, 255) 0%, rgb(219, 234, 254) 90%);
    /* Abstract shapes background could be added here */
}

/* --- Glassmorphism Utilities --- */

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.glass-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: #fff;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    outline: none;
}

/* --- Buttons --- */

.btn-premium {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 82, 155, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-premium:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 155, 0.4);
}

.btn-premium:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
}

/* --- Modality Cards (Selection) --- */

.modality-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modality-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.modality-card.selected {
    border: 2px solid var(--primary-blue);
    background: rgba(235, 248, 255, 0.9);
}

/* --- Animations --- */

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-entrance {
    animation: slideUpFade 0.6s ease-out forwards;
}

.wizard-step {
    animation: slideUpFade 0.4s ease-out;
}

/* --- Typography Overrides --- */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
