/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap');

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #fafcff;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hover-lift {
    transition: all 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(0, 20, 40, 0.12);
}

.footer-links a {
    transition: color 0.15s;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #4f46e5;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
    border-radius: 4px;
}

a, button {
    transition: all 0.2s ease;
}













/* Add this to your style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings - slightly tighter and bolder */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em; /* Slight tightening for headings */
}

/* Your specific example */
h1 {
    font-weight: 700; /* Extra bold for main headline */
    letter-spacing: -0.03em; /* Tighter for impact */
}

p {
    font-weight: 400;
    line-height: 1.6;
    color: #4a5568; /* Slightly softer than pure gray */
}


























/* Custom Scrollbar Styles */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 20px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.3);
    border-radius: 20px;
    transition: background 0.2s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 70, 229, 0.4);
}

/* For Firefox */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.3) transparent;
}

/* Smooth scrolling */
.custom-scrollbar {
    scroll-behavior: smooth;
}

/* Ensure the modal content doesn't overflow */
#cookie-settings-modal .flex-col {
    overflow: hidden;
}