/* Accommodation Page Styles */

.accommodation-page {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.accommodation-hero {
  background: var(--primary);
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.accommodation-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.accommodation-breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.accommodation-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.accommodation-breadcrumb a:hover {
  opacity: 0.8;
}

.accommodation-breadcrumb span {
  margin: 0 0.5rem;
}

.accommodation-container {
  width: min(1200px, calc(100% - 2rem));
  margin: 3rem auto 4rem;
}

.accommodation-section-title {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 3rem;
  font-weight: 700;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.hotel-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hotel-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hotel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image {
  transform: scale(1.08);
}

.hotel-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hotel-name {
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hotel-location {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotel-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.hotel-btn {
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hotel-btn:hover {
  background: #0f45a2;
}

.accommodation-section {
  margin-bottom: 4rem;
}

.accommodation-section-desc {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  max-width: 800px;
  margin: -1.5rem auto 2.5rem;
  line-height: 1.6;
}

.hostel-section {
  padding-top: 3rem;
  border-top: 1px solid #e0e0e0;
}

.hostel-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: #fff8e1;
  border-left: 4px solid #f5a623;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.hostel-note a {
  color: var(--primary);
  font-weight: 500;
}

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

  .accommodation-section-desc {
    font-size: 0.95rem;
    margin: -1rem auto 2rem;
    padding: 0 1rem;
  }
}
