/* Hero Slider */
.conference-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.conference-slide-bg {
  height: 60vh;
  background-size: cover;
  background-position: center;
}
.conference-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: #d8a670;
}
.conference-hero-overlay .container {
  z-index: 2;
}

/* Halls Showcase */
.hall-card {
  transition: transform 0.3s;
}
.hall-card:hover {
  transform: scale(1.02);
}
.hall-info {
  text-align: center;
}
.hall-info .btn-bar {
  margin-top: 0.5rem;
}

/* Use same .btn-bar and .text-bar styles from your bar.css */
/* Example: */
.btn-bar {
  background: #85490a;
  color: #fff;
  border: none;
  transition: background 0.3s;
}
.btn-bar:hover { background: #6b3805; }

.text-bar { color: #85490a; }

/* Responsive */
@media (max-width: 768px) {
  .conference-hero, .conference-slide-bg { height: 40vh; }
}
