@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* 
 * NexGen - Premium Corporate Light Theme 
 * Tasarım: Apple-esque Minimalizm
 */

:root {
    --brand-base: #FBFBFD;
    --brand-light: #FFFFFF;
    --brand-lighter: #F5F5F7;
    --brand-accent: #0066CC;
    --brand-dark: #1D1D1F;
    --brand-gray: #86868B;
}

body {
    background-color: var(--brand-base);
    color: var(--brand-gray);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-dark);
    letter-spacing: -0.02em;
}

::selection {
    background-color: var(--brand-accent);
    color: var(--brand-light);
}

/* Custom Shadows for Cards */
.shadow-soft {
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.05) !important;
}

.shadow-hard {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08) !important;
}

/* Base Link Transitions */
a {
    transition: all 0.3s ease;
}

/* Image selections */
img {
    user-select: none;
    -webkit-user-drag: none;
}
