header {
  height: 120px;
  margin-top: 20px;
}

header .nav-link {
  /* font-size: 25px; */
  font-size: 1.3rem;
}
/* Container wrapping the input + button */
.search-wrapper {
  position: relative;
  width: 280px;
  /* Adjust width as needed */
  height: 36px;
  /* Adjust height as needed */
  background-color: #000;
  /* Black background */
  border: 2px solid #db4c34;
  /* Red border */

  /*
      Creates a single angled corner at top-right.
      Adjust the polygon points for a steeper or shallower angle.
      For example, 0 0, 90% 0, 100% 100%, 0 100%
    */
  clip-path: polygon(5px 5%, 100% 0px, 90% 100%, 5px 95%);
}

/* The input field takes up most of the space inside the wrapper */
.search-wrapper input {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  /* Leave room for the icon on the right */
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ccc;
  /* Text color */
  font-size: 14px;
  padding: 0 12px;
  /* Padding to keep text away from left border */
}

/* Placeholder styling */
.search-wrapper input::placeholder {
  color: #666;
}

/* The button (containing the SVG icon) in the top-right corner */
.search-icon {
  position: absolute;
  top: 0;
  right: 12px;
  width: 32px;
  /* Same as .search-wrapper height */
  height: 32px;
  /* So it matches vertically */
  background: transparent;
  border: none;
  color: #db4c34;
  /* Icon inherits this red color */
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make the SVG scale to fit the button */
.search-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  /* uses the button's color (#f00) */
}

.navbar-toggler-icon {
      width: 40px;
      --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28219, 76, 52, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
  background-color: var(--red);
  /* Ensure the dropdown has a black background */
}