/* hotel.css — Hotels & transport (/hotel, views/hotel.php).
 * Plain CSS; relies on the global CSS variables defined in views/layout.php.
 * Loaded via Page::$extraCss. */

  .page-hero {
    background: linear-gradient(160deg, #0a2540 0%, #0077b6 50%, #00b4d8 100%);
    padding: 132px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .page-hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
  }

  .page-hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    position: relative;
  }

  .page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .venue-banner {
    max-width: 1100px;
    margin: 48px auto 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .venue-main {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
  }

  .venue-img {
    height: 200px;
    background: linear-gradient(135deg, #c8e6f5, #a8d8ea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    position: relative;
    border-bottom: 1px solid var(--border);
  }

  .venue-img-label {
    text-align: center;
    line-height: 1.5;
  }

  .venue-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
  }

  .venue-info {
    padding: 24px;
  }

  .venue-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--deep);
    margin-bottom: 6px;
  }

  .venue-sub {
    font-size: 14px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 14px;
  }

  .venue-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .venue-detail {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    align-items: flex-start;
  }

  .venue-detail-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .venue-map {
    background: linear-gradient(135deg, #def0f7, #c5e5f3);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
    min-height: 280px;
  }

  .map-pin {
    font-size: 40px;
  }

  .map-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--deep);
  }

  .map-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 200px;
  }

  .map-btn {
    padding: 10px 24px;
    background: var(--deep);
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 4px;
    transition: opacity 0.2s;
  }

  .map-btn:hover {
    opacity: 0.8;
  }

  /* Hotel page section spacing (overrides shared section) */
  .hotel-page-section {
    padding: 48px 0;
  }

  .hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
  }

  .hotel-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
  }

  .hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.1);
    border-color: #a8d4ee;
  }

  .hotel-card-img {
    height: 140px;
    position: relative;
    background: linear-gradient(135deg, #c8e6f5, #a8d8ea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
  }

  .hotel-card-img.featured {
    background: linear-gradient(135deg, #a8d8ea, #7ec8e3);
  }

  .hotel-distance {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(10, 37, 64, 0.75);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
  }

  .hotel-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--deep);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.05em;
  }

  .hotel-body {
    padding: 16px 18px 18px;
  }

  .hotel-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 4px;
  }

  .hotel-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 6px;
  }

  .hotel-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .hotel-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .hotel-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    background: var(--light);
    border-radius: 20px;
    padding: 2px 8px;
  }

  .hotel-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep);
    margin-top: 10px;
  }

  .hotel-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
  }

  .landmarks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .landmark-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
  }

  .landmark-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
  }

  .landmark-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .landmark-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 4px;
  }

  .landmark-dist {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 6px;
  }

  .landmark-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
  }

  .transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
  }

  .transport-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
  }

  .transport-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .transport-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 8px;
  }

  .transport-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .transport-list li {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    gap: 8px;
  }

  .transport-list li::before {
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
  }

  .info-box {
    background: var(--sand);
    border: 1px solid #f0d9b5;
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .info-box-icon {
    font-size: 32px;
    flex-shrink: 0;
  }

  .info-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 6px;
  }

  .info-box p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* Hotel page CTA band (centered variant) */
  .hotel-cta {
    background: linear-gradient(135deg, var(--deep), var(--mid));
    margin-top: 48px;
    padding: 56px 40px;
    text-align: center;
  }

  .hotel-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
  }

  .hotel-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
  }

  .hotel-cta .btn-white {
    padding: 14px 36px;
  }

  @media (max-width: 900px) {
    .venue-banner {
      grid-template-columns: 1fr;
      padding: 0 20px;
    }

    .hotel-grid {
      grid-template-columns: 1fr;
    }

    .landmarks-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .transport-grid {
      grid-template-columns: 1fr;
    }

    .page-hero {
      padding: 48px 20px 64px;
    }
  }
