/* style.css - Premium Leadboard Styles */

/* Base Styles */
body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f8f9fa; 
    color: #191c1d; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-manrope, .font-headline { 
    font-family: 'Manrope', sans-serif; 
}

/* Material Symbols configuration */
.material-symbols-outlined { 
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
}

/* Premium Gradients */
.bg-gradient-primary, .primary-gradient { 
    background: linear-gradient(135deg, #0059bb 0%, #0070ea 100%); 
    transition: all 0.3s ease;
}

.bg-gradient-primary:hover, .primary-gradient:hover {
    background: linear-gradient(135deg, #004d9c 0%, #0060c2 100%);
    box-shadow: 0 4px 15px rgba(0, 112, 234, 0.4);
}

/* Glassmorphism Effects */
.glass-panel, .glass-card { 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.8); 
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: all 0.3s ease;
}

.glass-panel:hover, .glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 40px 0 rgba(31, 38, 135, 0.1);
}

/* Ambient Shadows */
.shadow-ambient { 
    box-shadow: 0 20px 40px rgba(25, 28, 29, 0.04), 0 1px 3px rgba(25, 28, 29, 0.02); 
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.shadow-ambient:hover {
    box-shadow: 0 30px 60px rgba(25, 28, 29, 0.08), 0 4px 12px rgba(25, 28, 29, 0.04);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover scales */
.hover-scale {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-scale:hover {
    transform: scale(1.02);
}

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #c1c6d7; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a4c1ff; 
}

/* Form focus states */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 89, 187, 0.2);
    transition: box-shadow 0.2s ease;
}

/* Base button and link transition */
button, a {
    transition: all 0.2s ease-in-out;
}
