.page-header {
  background:
    linear-gradient(to bottom, rgba(4, 13, 26, 0.5) 0%, rgba(7, 21, 38, 0.85) 100%),
    url('../multimedia/forest.webp') center / cover no-repeat;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  transition:
    background 0.35s,
    padding 0.35s,
    backdrop-filter 0.35s;
}

.nav--scrolled {
  background: rgba(25, 57, 102, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.hotel-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.hotel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.hotel-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(10, 30, 60, 0.07);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hotel-name {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 5px;
  line-height: 1.1;
}

.hotel-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
}

.hotel-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.12s;
  margin-top: 2px;
}

.hotel-booking-btn:hover {
  background: var(--mid);
  transform: scale(0.98);
}

.hotel-booking-btn svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

.hotel-details {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.hotel-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(10, 30, 60, 0.055);
}

.hotel-detail-row:last-child {
  border-bottom: none;
}

.hotel-detail-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sky);
}

.hotel-detail-icon svg {
  width: 16px;
  height: 16px;
}

.hotel-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 30, 60, 0.38);
  margin-bottom: 1px;
}

.hotel-detail-val {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.3;
}

.hotel-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(37, 104, 168, 0.1);
  color: var(--sky);
  margin-top: 4px;
}

.ugost-note {
  text-align: center;
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.55);
  padding-top: 40px;
  border-top: 1px solid rgba(10, 30, 60, 0.08);
  line-height: 1.7;
}

.ugost-note a {
  color: var(--sky);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--sky);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.ugost-note a:hover {
  opacity: 0.7;
}

.hotel-card--dom {
  flex-direction: row;
  align-items: stretch;
}

.hotel-card--dom-img {
  min-width: 220px;
  background:
    linear-gradient(to bottom right, rgba(7, 21, 38, 0.6), rgba(13, 42, 74, 0.7)),
    url('../multimedia/accommodation/mountain-lodge.webp') center / cover no-repeat;
  border-radius: var(--radius) 0 0 var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.hotel-card--dom-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-card--dom-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hotel-card--dom-details .hotel-detail-row:nth-child(1) {
  border-right: 1px solid rgba(10, 30, 60, 0.055);
  padding-right: 20px;
}

.hotel-card--dom-details .hotel-detail-row:nth-child(2) {
  border-right: 1px solid rgba(10, 30, 60, 0.055);
  padding: 11px 20px;
}

.hotel-card--dom-details .hotel-detail-row:nth-child(3) {
  padding-left: 20px;
  border-bottom: none;
}

@media (max-width: 768px) {
  .hotels-grid {
    grid-template-columns: 1fr;
  }

  .hotel-card--dom {
    flex-direction: column;
  }

  .hotel-card--dom-img {
    min-width: unset;
    min-height: 160px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

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

  .hotel-card--dom-details .hotel-detail-row:nth-child(1),
  .hotel-card--dom-details .hotel-detail-row:nth-child(2) {
    border-right: none;
    padding-right: 0;
    padding: 11px 0;
  }

  .hotel-card--dom-details .hotel-detail-row:nth-child(3) {
    padding-left: 0;
    border-bottom: 1px solid rgba(10, 30, 60, 0.055);
  }

}

