/* ==========================================================
   minihall.css — Mini Hall Page
   The Mount View Castle Hotels & Resorts
   ========================================================== */

/* ----------------------------------------------------------
   MINI HALL HERO DETAILS
   ---------------------------------------------------------- */
.minihall-intro-section {
  background: #ffffff;
  padding: 68px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.minihall-intro-section .section-heading { text-align: left; }

.mh-split-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(0,0,0,.14);
  object-fit: cover;
  height: 420px;
}

/* ----------------------------------------------------------
   CAPACITY & FEATURES GRID
   ---------------------------------------------------------- */
.mh-features-section {
  background: #f4f8f5;
  padding: 68px 0;
}

.mh-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border-bottom: 3px solid transparent;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}

.mh-feature-card:hover {
  border-bottom-color: #c99b37;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.mh-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #edf5f1, #c8e4d5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-feature-icon i { font-size: 28px; color: #173f35; }

.mh-feature-card h4 {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 17px;
  color: #173f35;
  margin: 0;
  letter-spacing: .3px;
}

.mh-feature-card p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------
   EVENT TYPES
   ---------------------------------------------------------- */
.mh-events-section {
  background: #173f35;
  padding: 68px 0;
}

.mh-events-section .section-heading { color: #ffffff; }
.mh-events-section .section-intro   { color: rgba(255,255,255,.68); }
.mh-events-section .section-tag     { color: #e0b54a; }

.event-type-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 26px 20px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background .22s, border-color .22s, transform .22s;
}

.event-type-card:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(201,155,55,.4);
  transform: translateY(-3px);
}

.event-type-card i { font-size: 36px; color: #e0b54a; }

.event-type-card h4 {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 16px;
  color: #fff;
  margin: 0;
  letter-spacing: .3px;
}

.event-type-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.68);
  margin: 0;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   ENQUIRY SECTION
   ---------------------------------------------------------- */
.mh-enquiry-section {
  background: #fffaf2;
  padding: 72px 0;
}

.mh-enquiry-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 48px 44px;
  box-shadow: 0 8px 30px rgba(0,0,0,.09);
  border-top: 5px solid #c99b37;
  height: 100%;
}

.mh-enquiry-card h3 {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 26px;
  color: #173f35;
  margin-bottom: 6px;
  letter-spacing: .3px;
}

.mh-enquiry-card p {
  font-size: 15px;
  color: #5a5a5a;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Reuse contact form field styles from contact.css */
.mh-info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
}

.mh-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mh-info-item-icon {
  width: 44px;
  height: 44px;
  background: #edf5f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mh-info-item-icon i { font-size: 20px; color: #173f35; }

.mh-info-item-text h5 {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 15px;
  color: #173f35;
  margin: 0 0 2px;
  letter-spacing: .2px;
}

.mh-info-item-text p,
.mh-info-item-text a {
  font-size: 14px;
  color: #5a5a5a;
  margin: 0;
  text-decoration: none;
}

.mh-info-item-text a:hover { color: #c99b37; }

@media (max-width: 767.98px) {
  .mh-split-img { height: 260px; }
  .mh-enquiry-card { padding: 28px 20px; }
}
