.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 10px;
  background: linear-gradient(90deg, #7cd2fdbb 60%, #e4ff5ab6 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 0 0 24px 24px;
}

.header h1, .header .site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}

.header-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #22223b;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.header a {
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.2s;
  border-radius: 4px;
  padding: 6px 14px;
}

.header a:hover {
  color: #d97706; /* Tailwind amber-600 */
  background: #fffbe6;
}

.home-btn {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #22223b;
  text-decoration: none;
  font-weight: 600;
  gap: 6px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s;
}

.home-btn:hover {
  background: #6366f1;
  color: #fff;
}

.social-icons {
  position: relative;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #444;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #6366f1;
  color: #fff;
  transform: scale(1.08);
}

.dropbtn {
  background: #fff;
  color: #444;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropbtn:hover {
  background: #6366f1;
  color: #fff;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 54px;
  background: #fff;
  min-width: 170px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  border-radius: 12px;
  z-index: 1;
  flex-direction: column;
  padding: 8px 0;
}

.dropdown-content a {
  color: #22223b;
  padding: 10px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background: #f0f0f0;
  color: #6366f1;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: flex;
}

@media (max-width: 600px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 10px 4px;
  }
  .header-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .home-btn {
    font-size: 1rem;
    padding: 6px 14px;
  }
  .dropbtn {
    font-size: 1.3rem;
    width: 34px;
    height: 34px;
  }
  .dropdown-content {
    min-width: 130px;
    top: 40px;
  }
  .dropdown-content a {
    font-size: 0.95rem;
    padding: 8px 12px;
  }
}