
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}


:root {
    --bg-light: #ffffff;
    --bg-secondary: #f3f5f9;
    --text-primary: #1a1d24;
    --text-secondary: #5a6072;
    
    --accent-primary: #ff4757;
    --accent-secondary: #2ed573;
    --accent-gradient: linear-gradient(135deg, #ff4757, #ff6b81);
    
    --border-color: rgba(26, 29, 36, 0.08);
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Lenis Recommended CSS */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -1px;
}

/* Bootstrap Overrides */
:root {
    --bs-primary-rgb: 26, 29, 36;
    --bs-secondary-rgb: 243, 245, 249;
}

.bg-secondary {
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.bg-primary {
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-primary {
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity, 1)) !important;
}

/* Navbar */
.quantum-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0%; height: 2px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Overrides */
.dropdown-menu {
    border-radius: 12px;
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.dropdown-item:active, .dropdown-item.active {
    background-color: var(--text-primary);
    color: #fff;
}

.btn-quantum {
    background: var(--text-primary);
    color: var(--bg-light);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border: 2px solid var(--text-primary);
    transition: all 0.3s ease;
}

.btn-quantum:hover {
    background: transparent;
    color: var(--text-primary);
}

.btn-quantum-outline {
    background: transparent;
    color: var(--text-primary);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-quantum-outline:hover {
    border-color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 90% 10%, rgba(255, 71, 87, 0.05), transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(46, 213, 115, 0.05), transparent 40%);
    padding-top: 100px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}
.shape-1 { top: -10%; right: -5%; width: 500px; height: 500px; background: rgba(255, 71, 87, 0.1); }
.shape-2 { bottom: -10%; left: -5%; width: 600px; height: 600px; background: rgba(46, 213, 115, 0.1); }

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.highlight-text {
    color: var(--accent-primary);
    display: inline-block;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 10px; left: 0; width: 100%; height: 15px;
    background: rgba(255, 71, 87, 0.2);
    z-index: -1;
    transform: rotate(-2deg);
}

/* Cards */
.quantum-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.quantum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.quantum-card:hover .icon-wrapper {
    background: var(--text-primary);
    color: #fff;
}

/* Footer */
.quantum-footer {
    background: var(--bg-secondary);
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-color);
}
