/* Common styles for all pages */
body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

/* Pill Button Styling */
.pill-button {
  display: inline-block;
  padding: 12px 24px;
  background: #1f2937;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pill-button:hover {
  background: #4b5563;
  transform: translateY(-3px);
}

/* Modal styling */
#mobileNav {
  display: none; /* Start hidden */
  opacity: 0;
  transition: opacity 0.5s ease;
}

#mobileNav.show {
  display: flex;
  opacity: 1;
}

/* Background color and shadow settings */
.bg-gray-800 {
  background-color: #1f2937;
}

.shadow-lg {
  box-shadow: none;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }

  #mobileNav.show {
    display: flex;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
  }

  #mobileNav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #mobileNav ul li a {
    text-decoration: none;
    color: white;
    font-size: 2rem;
    transition: color 0.3s ease;
  }

  #mobileNav ul li a:hover {
    color: #d3d3d3;
  }
}

/* Footer styling */
footer {
  margin-top: auto;
  padding: 20px;
  background-color: #1f2937;
  color: white;
}

footer .flex {
  display: flex;
  justify-content: space-between; /* Distribute space between elements */
  align-items: center; /* Align items vertically in the center */
  flex-wrap: wrap; /* Ensure responsiveness */
}

footer .flex div {
  margin-bottom: 20px;
  text-align: center;
  flex: 1; /* Ensure equal space for each section */
}

footer .flex a {
  margin: 0 10px; /* Add horizontal margin between icons */
}

footer .fa {
  font-size: 1.5rem; /* Adjust icon size */
}

footer p {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem; /* Make copyright text smaller */
}
