/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Topbar */
.topbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Nav */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #2db459;
}

/* Right Actions */
.actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search */
.search {
  font-size: 18px;
  text-decoration: none;
  color: #333;
}

/* Donate Button */
.donate-btn {
  background: #2db459;
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.donate-btn:hover {
  background: #dce955;
}

/* Donate Button commerce */
#sectioncommerce a.donate-btn {
  background: #dce955;
  color: #2db459;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

#sectioncommerce a.donate-btn:hover {
  background: yellowgreen;
}


/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}