/* Logo Styling */
.navbar-brand {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.navbar-brand .logo-img {
  height: 50px;
  width: auto;
  margin-right: 15px;
  border-radius: 8px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
  transform: scale(1.05);
}

.navbar-brand .logo-text {
  font-family: "Dancing Script", cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffbe33;
  text-decoration: none;
}

.navbar-brand:hover .logo-text {
  color: #ff9500;
}

/* Responsive Logo */
@media (max-width: 768px) {
  .navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
  }

  .navbar-brand .logo-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand .logo-img {
    height: 48px;
    margin-right: 12px;
  }

  .navbar-brand .logo-text {
    font-size: 1.5rem;
  }
}

/* Alternative: Logo only (hide text on small screens) */
@media (max-width: 480px) {
  .navbar-brand .logo-text {
    display: none;
  }

  .navbar-brand .logo-img {
    height: 55px;
    margin-right: 0;
  }
}
