body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #7a9e7e;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-item.left { justify-content: flex-end; }
.nav-item.right { justify-content: flex-start; }

.logo-link img.logo-nav {
  height: 90px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ddd;
}

.sold-out-container {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.sold-out {
  max-width: 800px;
  width: 100%;
  height: auto;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f1f1f1;
  font-size: 0.95rem;
  color: #777;
}

footer a {
  color: #6f9d8a;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
