/* Specific styling for the location hero */
.location-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 75px;
  position: relative;
}

.location-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.location-hero-overlay h1 {
  color: #fff;
  font-size: 3em;
  margin-bottom: 5px;
  animation: fade-in-up 1s ease-out; /* Added animation */
}

.location-hero-overlay p {
  font-size: 1.2em;
  font-weight: 300;
  animation: fade-in-up 1.2s ease-out; /* Added animation */
}

.amenities-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.amenities-list li {
  text-align: center;
  padding: 15px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  font-weight: 600;
  font-size: 0.95em;
  transition: transform 0.3s; /* Added hover transition */
}

.amenities-list li:hover {
  transform: translateY(-5px);
}

.amenities-list i {
  font-size: 1.8em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.amenities-list li:hover i {
  color: #005a4a;
}

/* --- New Room Card Styling (Copied from sector47) --- */
.room-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.room-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card-content {
  padding: 20px;
}

.room-card-content h3 {
  margin-top: 0;
  color: var(--color-primary);
}

.room-card-price {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--color-accent);
  margin: 10px 0;
}

.room-card-price span {
  font-size: 0.7em;
  font-weight: normal;
  color: #666;
}

.room-card-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 0.9em;
}

.room-card-features li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.room-card-features i {
  color: var(--color-accent);
  margin-right: 8px;
  font-size: 1em;
  display: inline-block; /* Override existing style */
}

.room-card .btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

/* --- How to Arrive Section Styling (NEW - Copied from sector 47) --- */
.arrival-section {
  background-color: #f7fcfb; /* Very light, soft background color */
  padding: 40px 0; /* REDUCED VERTICAL PADDING (Height) */
  text-align: center;
}

.arrival-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin: 40px auto 0 auto;
  max-width: 900px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.arrival-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 150px;
  flex-basis: auto;
}

.arrival-icon-circle {
  background-color: var(
    --color-light-accent
  ); /* Using the light accent color for background */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

.arrival-item:hover .arrival-icon-circle {
  background-color: rgba(
    0,
    90,
    74,
    0.1
  ); /* Slightly darker/more saturated hover state of the accent color */
}

.arrival-icon-circle i {
  font-size: 2.2em;
  color: var(
    --color-accent
  ); /* Using the primary accent color (Teal/Green) for the icon */
  margin: 0;
  display: block;
}

.arrival-item p {
  margin: 0;
  font-weight: 600;
  color: var(--color-primary);
}

.arrival-item span {
  display: block;
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}
/* --- End of New How to Arrive Styling --- */

@media (max-width: 992px) {
  .amenities-list {
    grid-template-columns: 1fr 1fr;
  }
  .room-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .arrival-grid {
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .location-hero {
    height: 40vh;
  }
  .location-hero-overlay h1 {
    font-size: 2.2em;
  }
  .amenities-list {
    grid-template-columns: 1fr;
  }
  .room-cards-grid {
    grid-template-columns: 1fr;
  }
  .arrival-grid {
    justify-content: space-around;
    max-width: 100%;
    gap: 20px 0;
  }
  .arrival-item {
    max-width: 45%;
    flex-basis: 45%;
  }
}
