/* Header base */
.jp-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.jp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo / brand */
.jp-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.jp-brand img {
  height: 60px;
  width: auto;
  margin-right: 10px;
}
/*
.jp-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #222;
}
*/
.jp-title { display:none; }

/* Navigation */
.jp-nav {
  flex: 1;
  text-align: center;
}
.jp-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 30px;
}
.jp-menu li a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}
.jp-menu li a:hover {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
}

/* Social icons */
.jp-social {
  display: flex;
  gap: 15px;
}
.jp-social a {
  color: gold;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.jp-social a:hover {
  color: black;
  transform: rotate(360deg);
}
