/* 
=============================
  HEADER STYLES
=============================
*/

.site-header {
  background: var(--primary-color);
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-right {
  display: flex;
  align-items: center;
}

.lycos-button {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lycos-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .site-title {
    font-size: 1.5rem;
  }
  
  .header-logo {
    width: 40px;
    height: 40px;
  }
  
  .lycos-button {
    height: 32px;
  }
}
