/* Component: footer */

/* Footer column styles */
.arh-footer-col {
  flex: 1 1 300px;
  min-width: 260px;
  padding: 1rem 0;
}

/* Logo styles */
.arh-footer-col img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

/* Quick links menu */
.arh-footer-menu {
  font-size: 1rem;
  list-style: none;
}

.arh-footer-menu a {
  color: #aaa!important;
  text-decoration: none;
  font-weight: 100; /* Adjusted font weight for better visibility */
  transition: color 0.3s ease;
}

.arh-footer-menu .menu-item a {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-bottom: 0;
  padding-top: 0;
}

/* Remove border from last item */
.arh-footer-menu .menu-item:last-child a {
  border-right: none;
}

.arh-footer-menu a:hover {
  color: #fff!important;
}

.arh-footer-menu li {
  display: inline;
}

/* Opening hours styles */
.arh-footer-hours-container {
  margin-bottom: 2rem;
}

.arh-footer-hours-text {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
}

/* Quick links styles */
.arh-footer-links-container {
  margin-bottom: 0.4rem;
}

.arh-footer-heading {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Copyright text */
.arh-footer-copyright {
  font-size: 0.95rem;
  color: #ccc;
}

/* Previous copyright style for backwards compatibility */
.arh-footer-container .copyright {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 1.5rem;
}

@media( min-width: 768px ) {

  .arh-footer-menu .menu-item:first-child a {
    padding-left: 0;
  }

  .arh-footer-menu .menu-item a {
    border-right: 1px solid #444; /* Subtle border for separation */
  }

}