/* General Navbar Styles */
.navbar {
  background-color: #c80000;
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
  width: 300px;
  height: 80px;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-color: #fff;
  border-radius: 2px;
  width: 30px;
  height: 4px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 30px;
  height: 4px;
  left: 0;
  transition: all 0.3s;
}

.navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler-icon::after {
  bottom: -10px;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffcccc !important;
}

.nav-link img {
  vertical-align: middle;
  margin-right: 0.5rem;
  width: 20px;
  height: 20px;
}

.d-lg-block img {
  width: 150px;
  height: 40px;
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 200px;
    height: 60px;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    bottom: -8px;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    text-align: center;
  }
}

/* Mobile L - 425px */
@media (max-width: 425px) {
  .navbar .navbar-brand img {
    width: 180px;
    height: 50px;
  }

  .navbar-toggler-icon {
    width: 25px;
    height: 3px;
  }

  .nav-link {
    font-size: 0.85rem;
  }
}

/* Mobile M - 375px */
@media (max-width: 375px) {
  .navbar .navbar-brand img {
    width: 150px;
    height: 40px;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.7rem 0.5rem;
  }
}

/* Mobile S - 320px */
@media (max-width: 320px) {
  .navbar .navbar-brand img {
    width: 130px;
    height: 35px;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 0.5rem 0.5rem;
  }

  .navbar-toggler-icon {
    width: 20px;
    height: 2px;
  }
}
