
.category-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* keeps them in one row */
    gap: 12px;
    padding: 10px;
}

.category-card {
    background:  rgb(192, 212, 216);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
    height: 140px; /* consistent card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card figure {
    margin: 0;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    background: none;
    mix-blend-mode:darken;
}

.category-card h2 {
    font-size: 13px;
    margin: 0;
    padding-top: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color:white;
}

.reservation-btn {
    display: inline-block;
    padding: 15px 64px;
    font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-width: 2px;
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.reservation-btn:active:focus,
.reservation-btn:focus,
.reservation-btn:hover {
    color: #fff;
    background-color: #156779;
    border-color: #000;
    box-shadow: 0 0 0 transparent;
    outline: none;
}
.hero-book-now-btn{
    color: #fff;
    border-color: #156779;
}

/* loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

/* Bouncing dots */
.dots-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dots-loader span {
  width: 15px;
  height: 15px;
  background-color: #3796a9;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 0.6s infinite alternate;
}

.dots-loader span:nth-child(2) {
  animation-delay: 0.2s;
  background-color: #f39c12;
}

.dots-loader span:nth-child(3) {
  animation-delay: 0.4s;
  background-color: #e74c3c;
}

/* Bounce animation */
@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.5;
  }
  to {
    transform: translateY(-20px);
    opacity: 1;
  }
}

/* Page fade-in */
body.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.loaded.fade-in {
  opacity: 1;
}

