/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background: transparent;
}

/* Scrolled state */
.site-header.scrolled {
  background: #ffffff;
}

/* Header container */
.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.logo a {
  color: #fff !important; /* Force white when not scrolled */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.site-header.scrolled .logo a {
  color: #08cb00 !important; /* Green when scrolled */
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.main-nav ul li a {
  color: #fff !important; /* Force white */
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.site-header.scrolled .main-nav ul li a {
  color: #333 !important; /* Dark text when scrolled */
}

.main-nav ul li a:hover {
  color: #08cb00 !important; /* Always green on hover */
}

/* Auth Links */
.auth-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.auth-links a {
  color: #fff !important; /* Force white */
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 2px solid #08cb00;
  background: transparent;
}

.site-header.scrolled .auth-links a {
  color: #333 !important; /* Dark when scrolled */
}

.auth-links a:hover {
  background: #08cb00;
  color: #08cb00;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .site-header .container {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav ul {
    gap: 1rem;
  }

  .main-nav ul li a {
    font-size: 0.9rem;
  }

  .auth-links {
    font-size: 0.8rem;
  }
}

/* Added body padding to account for fixed header */
body {
  padding-top: 80px;
}
