:root {
  --brand-blue: #3c6b8d;
  --brand-dark: #1f2b3a;
  --brand-light: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #1e1e1e;
  background: #ffffff;
}

a {
  color: var(--brand-blue);
}

a:hover {
  color: #2b4f68;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero {
  position: relative;
  color: #ffffff;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin-bottom: 24px;
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.section-muted {
  background: var(--brand-light);
}

.form-wrap {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 24px;
  border-radius: 12px;
}

.form-success {
  display: none;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #e6f9ef;
  color: #137333;
  border: 1px solid #b5e4c7;
}

.site-footer {
  background: var(--brand-dark);
  color: #ffffff;
  padding: 32px 0;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.hotel-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 14px;
}

.hotel-table th,
.hotel-table td {
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.hotel-table th {
  background: #f5f5f5;
  font-weight: 600;
  white-space: nowrap;
}

.hotel-table td {
  background: #ffffff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 14px;
}

.price-table th,
.price-table td {
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: #f5f5f5;
  font-weight: 600;
  white-space: nowrap;
}

.price-table--wide {
  min-width: 980px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .card img {
    height: 200px;
  }

  .hotel-table {
    font-size: 13px;
  }
}
