/* Header consistency fixes for index.html */

/* Ensure header has correct position and styling */
#site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: var(--header-bg, rgba(255, 255, 255, 0.98)) !important;
}

/* Ensure navigation links have correct styling */
.nav-links a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.8px !important;
  position: relative !important;
}

/* Ensure correct spacing between nav items */
.nav-links {
  gap: 2rem !important;
}

/* Override any conflicting body padding */
body {
  padding-top: var(--header-height, 80px) !important;
}

/* Special case for hero section - remove padding for full viewport coverage */
.hero-video-container {
  margin-top: calc(-1 * var(--header-height, 80px)) !important;
}
