.nav-link {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.nav-link:hover {
  transform: translateY(-3px);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #4ade80, #f472b6);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link.active {
  color: #10B981; /* Or any color that matches your design */
  font-weight: 600;
}

.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    background: linear-gradient(to right, #10B981, #EC4899);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Alerts */
.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}

.alert-warning {
  background-color: #fffbeb;
  color: #b45309;
  border-left: 5px solid #f59e0b;
}

.alert-danger {
  background-color: #fef2f2;
  color: #b91c1c;
  border-left: 5px solid #ef4444;
}

.alert-success {
  background-color: #f0fdf4;
  color: #14532d;
  border-left: 5px solid #22c55e;
}

/* Golden Rules */
.golden-rules {
  list-style: none;
  padding-left: 0;
}

.golden-rules li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/*
.golden-rules li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: #ef4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
*/

/* Initialize the counter on the list container */
.golden-rules {
  list-style: none;         /* Removes default bullets/numbers */
  padding-left: 0;          /* Optional: clean reset */
}

/* Style each list item */
.golden-rules li {
  position: relative;       /* Contains the absolute ::before */
  margin-bottom: 1rem;      /* Optional: spacing between items */
  line-height: 1.5;         /* Improves text alignment with circle */
}




/* Info Cards */
.info-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Section Headings */
.section-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.section-separator {
  height: 1px;
  background-color: #e5e7eb;
  margin: 3rem 0;
}

/* Route Cards */
.route-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.time-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
}

.time-badge-green {
    background-color: #22c55e;
}

.time-badge-yellow {
    background-color: #f59e0b;
}

.time-badge-red {
    background-color: #ef4444;
}

.return-time-warning {
    background-color: #fffbeb;
    color: #b45309;
    padding: 0.75rem;
    border-radius: 0.25rem;
    margin-top: 1rem;
    border-left: 4px solid #f59e0b;
}

/* Hut Cards */
.hut-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hut-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hut-card img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.hut-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hut-card p {
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Contact Cards */
.contact-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.filter-button {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    background-color: #e5e7eb;
    color: #4b5563;
}

.filter-button.active {
    background-color: #10B981;
    color: white;
}

/* Rate Cards */
.rate-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rate-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rate-card p {
    color: #4b5563;
    margin-bottom: 1rem;
}