@import url('./variables.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html {
  font-size: 16px;
}

body {
  background: var(--color-background);
  min-height: 100vh;
}

.header {
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 12px 35px;
}

.header-wrapper{
  display: flex;
  justify-content: start;
  gap: 2rem;
}
.header div {
  display: flex;
  align-items: center;
}

.header img {
  height: 32px;
  width: 32px;
  margin-right: 0;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-link:hover {
  text-decoration: underline;
  color: var(--color-accent);
}

.nav-link.active {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
}
