/* =========================
   ACCOMMODATION PAGE CSS
   ISWAVLD 2027
========================= */

/* =========================
   GRID LAYOUT
========================= */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* =========================
   CARD DESIGN
========================= */
.accommodation-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.accommodation-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.accommodation-card h3 {
  margin: 10px 0 5px 0;
  font-size: 18px;
}

.accommodation-card p {
  margin: 4px 0;
  font-size: 14px;
}










/* =========================
   RATES TABLE
========================= */

.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

/* =========================
   BORDERS
========================= */

.rates-table th,
.rates-table td {
  border: 1px solid #d0d0d0;
  padding: 6px;
}

/* =========================
   HEADER ONLY
========================= */

.rates-table th {
  background-color: #f5f5f5;
  font-weight: 700;
  color: #000;
}

/* =========================
   BODY ROWS (IMPORTANT FIX)
========================= */

.rates-table td {
  font-weight: 400;   /* resets any bolding */
  color: #333;
}

/* Alignment only — NO bold */
.rates-table td:first-child {
  text-align: left;
}

.rates-table td:last-child {
  text-align: right;
  white-space: nowrap;
}








/* =========================
   ALIGNMENT FIX (IMPORTANT)
========================= */

/* LEFT COLUMN = ROOM TYPE */
.rates-table td:first-child,
.rates-table th:first-child {
  text-align: left;
}

/* RIGHT COLUMN = RATE */
.rates-table td:last-child,
.rates-table th:last-child {
  text-align: center;
}

/* =========================
   BUTTONS (ACCOMMODATION ONLY)
========================= */
.accommodation-button {
  background-color: #086096;
  color: #ffffff;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.accommodation-button:hover {
  background-color: #2a6e98;
}

/* secondary button */
.accommodation-button.secondary {
  background-color: #9bcb3c;
}

.accommodation-button.secondary:hover {
  background-color: #abcb6d;
}

/* =========================
   ACCORDION
========================= */
.accordion-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.accordion-tab {
  padding: 10px 15px;
  background: #eeeeee;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.accordion-tab.active {
  background: #dcdcdc;
}

/* content panels */
.accordion-content {
  display: none;
  padding: 15px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  margin-bottom: 20px;
  background: #ffffff;
}

.accordion-content.active {
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .accommodation-grid {
    grid-template-columns: 1fr;
  }

  .rates-table {
    font-size: 12px;
  }

}