/* SLIDER STYLES */
.image-slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slider-image {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  box-sizing: border-box;
}

.slider-btn {
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  font-size: 16px;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: white;
}

/* RESTAURANT CARD STYLES */
.restaurant-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.restaurant-info {
  padding: 5px;
}

.restaurant-info h3 {
  margin-top: 0;
  margin-bottom: 6px;
  color: #333;
}

.restaurant-contact p {
  margin: 6px 0;
  color: #555;
}

.restaurant-social {
  margin-top: 10px;
}

.restaurant-social a {
  color: #555;
  margin-right: 6px;
  font-size: 25px;
  transition: color 0.3s ease;
}

.restaurant-social a:hover {
  color: #ff6b6b;
}