.hall-section {
  padding: 2.5rem 1.7rem;
}


.groups {
  padding: 0.75rem;
  justify-content: space-evenly;
  row-gap: 2rem;
}


.group-block {
  position: relative;
  min-height: 520px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  margin: 0;
  background-size: cover;
  display: block;
  background-position: center;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
}

.group-block:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.30);
}

.group-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 20, 60, 0.30) 50%,
    rgba(0, 20, 60, 0.82) 100%
  );
  transition: background 0.4s ease;
  border-radius: 16px;
}

.group-block:hover .group-block-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 20, 60, 0.42) 45%,
    rgba(0, 20, 60, 0.90) 100%
  );
}

.group-block-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.group-block .group-block-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin: 0;
  text-align: right;
}

.group-block-explore {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 6px 16px;
  border-radius: 30px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.3s ease;
  backdrop-filter: blur(4px);
}

.group-block:hover .group-block-explore {
  opacity: 1;
  transform: translateY(0);
}

.group-block-explore .ms-2 {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
  transform: scaleX(-1);
}

.group-block img{
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.halls {
  padding: 0.75rem;
  justify-content: space-evenly;
  row-gap: 2rem;
}


.hall-block {
  position: relative;
  min-height: 370px;
  border-radius: 20px;
  box-shadow: 0px 0px 1px 1px #AAA;
  margin: 15px;
  background-size: cover;
  display: block;
}


.hall-block img{
    border-radius: 20px;
    box-shadow: 0px 0px 1px 1px #AAA;
}

.hall-block .hall-block-price{
    position: absolute;
    left: 0px;
    top: 20px;
    background-color: #e1a122;
    padding: 3px 10px;
    border-top-right-radius: 15px;
    border: none;
    color: white;
}

.hall-block .hall-block-title {
  position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00204ce8;
    width: 100%;
    height: 60px;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

  .wide-banner {
    display: block;
    width: 100%;
    height: 505px;
    /* background-image: url('/vpults/images/rotating/photo5.jpg'); */
    background-position: center center;
    background-size: cover;
    margin-top: 0;
  }


  .wide-banner.description, .vpults .wide-banner.description .shadow {
    height: 61vh;
    min-height: 370px;
    max-height: 800px;
  }

  .halls {
    justify-content: right;
  }

  
  .hall-group {
    position: relative;
    color: #00204c;
    padding-bottom: 20px;
    text-transform: uppercase;
    text-align: right;
    margin: 25px auto;
}


.hall-group:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 2px;
  background-color: #e1a122;
}


.hall-item{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-height: 125px;
  margin: 10px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0px 0px 2px 1px #DDD;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.hall-item.checked{
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.hall-item label {
  color: white;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  text-shadow: 0px 0px 1px #EEE;
  text-align: center;
}

.hall-item input[type="checkbox"] {
  display: none;
}