/* Brand text style */
.navbar-brand {
  letter-spacing: 3px;
  color: #c24244;
  display: flex;
  align-items: center;
}

.navbar-brand:hover {
  color: #c24244;
}

/* Navbar background + colors */
.navbar-scroll .nav-link,
.navbar-scroll .fa-bars,
.navbar-scrolled .nav-link,
.navbar-scrolled .fa-bars {
  color: #7f4722;
}

.navbar-scrolled {
  background-color: #ffede7;
}

/* Navbar container layout */
.navbar {
  padding: 0rem 1rem; /* smaller vertical padding */
  min-height: 65px; /* was 90px — reduces overall height */
  display: flex;
  align-items: center;
}

/* Fix container positioning */
.navbar .container {
  margin-left: 0; /* "10" was invalid, removed */
  padding-left: 0.5rem;
  justify-content: flex-start;
}

/* Logo styling */
.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .logo-img {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 75px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 60px;
  }
}

/* Nav links */
.nav-link {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: #f7c3b4;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fba68f;
}

/* Adjust spacing between logo and links */
.navbar-nav.me-auto {
  margin-left: 1rem;
}

/* Social icons */
.navbar-nav.flex-row .nav-link i {
  font-size: 1.2rem;
}

.navbar-nav.flex-row .nav-link {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* Mobile toggle cleanup */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Fix social icon alignment when collapsed */
@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: left;
  }

  .navbar-nav.ms-auto {
    flex-direction: column;
    justify-content: flex-start;
  }

  .navbar-nav.ms-auto .nav-item {
    margin-left: 10px;
  }
}
