.navbar,
.logo-title,
.navbar-title,
.navbar-logo,
.brand-title {
  font-family: "GochiHand-Regular", cursive !important;
}
.navbar-links,
.site-tagline,
.site-tagline h2,
.site-tagline p {
  font-family: "GochiHand", cursive, sans-serif;
}
.navbar-links {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  overflow: hidden;
  padding-right: 25px;
}
.navbar-links ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar-links ul li {
  margin-left: 30px;
}
.navbar-links a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-links a:hover,
a:hover {
  color: darkred;
}
@media screen and (max-width: 1024px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .navbar-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fefefe;
    border-top: 1px solid #ccc;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
  }
  .navbar-links.active {
    display: flex;
  }
  .navbar-links ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .navbar-links ul li {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
  .navbar-links a {
    display: block;
    width: 100%;
    padding: 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .navbar-links a:hover {
    background-color: #eee;
    color: darkred;
  }
}
