/* Add the Pacifico font to the navbar */
.navbar {
  font-family: "Poppins", sans-serif;
}

/* Add the styling for the underline animation */
.underline {
  width: 0;
  height: 2px;
  background-color: #da1c5c;
  transition: width 0.3s ease;
}

.nav-link:hover .underline {
  width: 100%;
}

/* Adjust the width of the navbar items in mobile view */
@media (max-width: 767.98px) {
  .nav-item {
    max-width: 100px;
    padding-left: 20px;
  }
}

.contact-button {
  border: 2px solid #da1c5c;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: transparent;
  color: #da1c5c;
}

.navbar-brand img {
  /* animation: spin 6s linear infinite; Adjust the duration as needed */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Default font size */
.navbar-nav .nav-link {
    font-size: 16px;
}

/* Media query for screens less than medium size (adjust max-width as needed) */
@media (max-width: 767.98px) {
    .navbar-nav .nav-link {
        font-size: 14px; /* Adjust the font size for smaller screens */
    }
}

/* Optional: Adjust padding for better spacing on smaller screens */
@media (max-width: 767.98px) {
    .navbar-nav {
        padding-top: 10px; /* Adjust the top padding for smaller screens */
    }
}

.navbar-nav .nav-link {
  font-size: 16px; /* Default font size */
}

@media (max-width: 576px) {
  .navbar-nav .nav-link {
      font-size: 14px; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 320px) {
  .navbar-nav .nav-link {
      font-size: 12px; /* Adjust font size for even smaller screens */
  }
}
