/* =========================
   NAVIGATION LOGO
   ========================= */

.site-nav {
  height: 100px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 300px;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Navigation links */
.links {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-nav {
    height: 70px;
    padding: 0 20px;
  }

  .brand img {
    height: 40px;
    max-width: 150px;
  }
}

/* Keep navbar height unchanged */
.site-nav {
  height: 100px;
  display: flex;
  align-items: center;
}

/* Make only the logo visually bigger */
.brand img {
  height: 250px;
  width: auto;
  display: block;
  object-fit: contain;
  transform: scale(1.3);
}
