.hotel-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.subtitle {
  font-size: 14px;
  color: #b59b65;
  font-weight: 600;
  margin-bottom: 10px;
}

.title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 25px;
  border-radius: 30px;
  border: 2px solid #c79649;
  background-color: white;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: #c79649;
  color: #fff;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
}

.card:hover img {
  /* transform: translateY(-5px); */
  transform: rotate(5deg) scale(1.2);
}

.card img {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
  transition: all .4s ease-in;
}

.content {
  padding: 15px;
  text-align: left;
  position: relative;
  z-index: 2;
  background-color: white;
}

.content h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.content p {
  font-size: 13px;
  color: #666;
  margin: 8px 0;
}

.stars {
  color: #f39c12;
  font-size: 16px;
}

/* Hide cards on filter */
.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 600px) {
  .title {
    font-size: 22px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .content p {
    font-size: 12px;
  }
}


/* table section */
.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
}

thead th {
    padding: 12px;
    text-align: left;
    color: white;
    font-size: 16px;
}

thead th:first-child {
    background: #6ea8dc;
}

thead th.blue {
    background: #002366;
}
thead th.white {
    background: #777;
}
thead th.red {
    background: #8b0000;
}
thead th.purple {
    background: #800080;
}

tbody td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

tbody td.check {
    color: green;
    font-size: 18px;
    text-align: center;
}

tbody td.cross {
    color: red;
    font-size: 18px;
    text-align: center;
}

/* Responsive table style for mobile */
/* @media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        display: none;
    }

    tbody tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 10px;
        background: #fff;
    }

    tbody td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        text-align: left;
    }
} */