/* Branding and Logo Styles */

/* Auth pages logo */
.auth-logo-container {
  text-align: center;
  margin-bottom: 25px;
}

.auth-logo {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}

/* Navbar logo */
.navbar-brand-logo {
  height: 35px;
  object-fit: contain;
}

/* Navbar brand text */
.navbar-brand-text {
  color: black !important;
  font-weight: 600;
  font-size: 1.1rem;
}

/* First story page nav logo */
.top-nav .nav-brand {
  display: flex;
  align-items: center;
}

.top-nav .navbar-brand-logo {
  height: 40px;
  object-fit: contain;
}

.top-nav .navbar-brand-text {
  color: black !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: 10px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .auth-logo {
    max-height: 150px;
  }
  
  .navbar-brand-logo {
    height: 30px;
  }
}

@media screen and (max-width: 480px) {
  .auth-logo {
    max-height: 135px;
  }
  
  .navbar-brand-logo {
    height: 28px;
  }
}