.hero-section {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.rounded-circle {
  object-fit: cover;
  width: 120px;
  height: 120px;
}
.gallery-slider img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.slick-slide {
  padding: 0 10px;
}
textarea.form-control {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}
video, iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.gallery-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}
.gallery-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.gallery-thumb {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}
.gallery-thumb:hover {
  transform: scale(1.03);
}