/* Critical CSS - Loads first to prevent FOUC */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #1d1d1f;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Links - Prevent blue flash */
a {
    color: inherit !important;
    text-decoration: none !important;
}

a:link, a:visited, a:hover, a:active {
    color: inherit;
}

/* Compact Navbar - Prevent flash */
.navbar-compact {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    height: 80px;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-compact .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.navbar-compact .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-compact .logo {
    flex-shrink: 0;
    width: 200px;
}

.navbar-compact .logo-image {
    height: 48px;
    width: auto;
    display: block;
}

.navbar-compact .logo a {
    text-decoration: none;
    display: block;
}

.navbar-compact .nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
}

.navbar-compact .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    color: #1a1a1a !important;
    text-decoration: none !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Hide old navbar */
.navbar {
    display: none !important;
}
