.MnE-banner {
  min-height: 400px;
  width: 100%;
  background-image: url("/Media/Background/meetingEventsP00.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.MnE-banner-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 50px;
}

.MnE-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.MnE-banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.MnE-banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.MnE-banner-divider {
  width: 100px;
  height: 3px;
  background: #f9a01b;
  margin: 0 auto 20px;
}

.MnE-banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.MnE-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .MnE-banner {
    min-height: 300px;
    padding: 20px 15px;
  }

  .MnE-banner-overlay {
    padding: 30px 20px;
    max-width: 100%;
  }

  .MnE-banner-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .MnE-banner-subtitle {
    font-size: 1.2rem;
  }

  .MnE-banner-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .MnE-banner-divider {
    width: 80px;
    margin-bottom: 15px;
  }

  .MnE-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: -30px;
  }
}

.section-title {
  font-size: 2.2rem;
  color: #f9a01b;
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 2px;
  background: #f9a01b;
}

.limited-height-carousel .carousel-inner img {
  max-height: 350px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .ballroom-description {
    font-size: 1rem;
    padding: 0 2px;
  }
}

@media (max-width: 576px) {
  .ballroom-description {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 2px;
  }
}

.ballroom-type-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 0;
  max-width: 1200px;
}

.ballroom-tab {
  background: white;
  color: #333;
  border: 2px solid #f9a01b;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ballroom-tab:hover {
  background: #f9a01b;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(249, 160, 27, 0.3);
}

.ballroom-tab.active {
  background: #f9a01b;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 160, 27, 0.4);
}

.ballroom-type-buttons .ballroom-tab[download] {
  background-color: #f9a01b;
  color: #fff;
}

#ballroom-detail-section {
  padding: 40px 0;
  background: #f9f9f9;
}

#ballroom-detail-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

#ballroomSliderWrapper {
  max-width: 900px;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#ballroomSlider {
  overflow: hidden;
}

#ballroomSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 10px;
  flex-wrap: wrap;
  max-width: 900px;
}

.thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #f9a01b;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ballroom-info {
  background: #eaeaea;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.ballroom-name {
  font-size: 1.8rem;
  color: #f9a01b;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.ballroom-specs {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.ballroom-specs li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #444;
  display: flex;
  align-items: flex-start;
}

.ballroom-specs li strong {
  min-width: 140px;
  display: inline-block;
  color: #333;
}

.ballroom-capacity-table {
  width: auto;
  margin-bottom: 1px;
  font-size: 1.05rem;
  border-collapse: collapse;
  border: none;
}

.ballroom-capacity-table td {
  line-height: 1.5;
  white-space: nowrap;
  border: none;
  color: #444;
  padding-right: 40px;
}

.ballroom-capacity-table {
  display: table;
  width: auto;
  border-collapse: collapse;
}

@media (max-width: 768px) {
  .ballroom-capacity-table {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 6px 16px;
    align-items: start;
  }

  .ballroom-capacity-table td {
    display: block;
    line-height: 1.4;
    padding: 3px 10px;
    white-space: normal;
    text-align: left;
  }
}

.ballroom-capacity-table tr:not(:last-child) td {
  padding-bottom: 6px;
}

.ballroom-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-reserve,
.btn-whatsapp,
.btn-email {
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-reserve {
  background: #f9a01b;
  color: white;
  border: 2px solid #f9a01b;
}

.btn-reserve:hover {
  background: #e09015;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(249, 160, 27, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: 2px solid #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

.btn-email {
  background: #5865f2;
  color: white;
  border: 2px solid #5865f2;
}

.btn-email:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(88, 101, 242, 0.3);
}

@media (max-width: 992px) {
  #ballroomSlider {
    height: auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  #main-carousel-section {
    height: 400px;
  }

  #ballroomSlider {
    height: auto;
  }

  .ballroom-tab {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .ballroom-specs li {
    flex-direction: column;
  }

  .ballroom-specs li strong {
    min-width: 100%;
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  #main-carousel-section {
    height: 300px;
  }

  #ballroomSlider {
    height: auto;
  }

  .thumbnail {
    width: 60px;
    height: 45px;
  }

  .ballroom-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-reserve,
  .btn-whatsapp,
  .btn-email {
    width: 100%;
    justify-content: center;
  }
}

.btn-primary {
  background-color: #f9a01b;
  border-color: #f9a01b;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

.btn-primary:hover {
  background-color: #e09015;
  border-color: #e09015;
  transform: translateY(-2px);
}

.option-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 10px;
}

.hotel-section {
  margin-top: 21px;
}
