/* Header component styles */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #4285f4;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.main-nav a:hover {
  color: #4285f4;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-actions .btn-primary {
  background: #4285f4;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
}

.header-actions .btn-primary:hover {
  background: #357abd;
}

.header-actions .btn-secondary {
  background: #f5f5f5;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}

.header-actions .btn-secondary:hover {
  background: #e0e0e0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

.mobile-nav-actions {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .header-actions {
    display: none;
  }

  .mobile-nav-actions {
    display: block;
    padding-top: 16px;
    border-top: 1px solid #eee;
  }

  .mobile-nav-actions .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    box-sizing: border-box;
  }

  .mobile-menu-btn {
    display: flex;
  }
}
