/* --- General Room Card Structure Styles (from previous response) --- */



.room-cards-list {
  display: grid;
  gap: 30px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .room-cards-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .room-cards-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .room-cards-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card {
  background-color: var(--eerie-black-4);
  border-radius: var(--radius-20);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  transition: var(--transition-2);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-1);
}

.room-card .card-banner {
  width: 100%;
  height: 250px; /* Consistent height for all images */
  overflow: hidden;
  border-bottom: 1px solid var(--eerie-black-3);
}

.room-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images cover the area without distortion, crucial for consistency */
  transition: var(--transition-2);
}

.room-card:hover .card-banner img {
  transform: scale(1.05);
}

.room-card .card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left; /* Align content to the left */
}

.room-card .card-title {
  color: var(--white);
  margin-bottom: 15px;
  font-family: var(--font-forum);
  font-size: var(--fs-3);
}

.room-card .card-text {
  color: var(--grey);
  font-size: var(--fs-7);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* --- ICON AND FEATURE CONSISTENCY STYLES --- */

.room-card .card-features {
  display: grid;
  grid-template-columns: 1fr; /* Default to one column per feature item */
  /* For wider screens, allow multiple columns. Adjust `minmax` as needed */
  /* For example: grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
  gap: 15px; /* Spacing between feature items */
  margin-bottom: 25px;
  border-top: 1px solid var(--eerie-black-3);
  border-bottom: 1px solid var(--eerie-black-3);
  padding-block: 20px;
  text-align: left; /* Align feature items to the left */
}

.room-card .feature-item {
  display: flex; /* Use flexbox for icon and text alignment */
  align-items: center; /* Vertically center icon and text */
  color: var(--white); /* Text color for features */
  font-size: var(--fs-7); /* Font size for feature text */
  gap: 8px; /* Space between icon and text */
}

.room-card .feature-item ion-icon {
  font-size: 24px; /* **Consistent icon size** */
  color: var(--gold-crayola); /* **Consistent icon color** */
  /* You can adjust --ionicon-stroke-width if you want bolder outline icons */
  --ionicon-stroke-width: 25px; /* Default is usually 32px, make it slightly thinner if preferred */
  flex-shrink: 0; /* Prevent icon from shrinking on small screens */
}

/* --- Card Actions (Buttons) Styles --- */
.room-card .card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
}

.room-card .btn-secondary {
  padding: 10px 20px;
  font-size: var(--fs-8);
}

.room-card .btn-text-link {
  color: var(--gold-crayola);
  font-size: var(--fs-8);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-1);
}

.room-card .btn-text-link:hover {
  color: var(--white);
}

.room-card .btn-text-link ion-icon {
  font-size: 18px;
  transition: var(--transition-1);
}

.room-card .btn-text-link:hover ion-icon {
  transform: translateX(5px);
}

/* --- General Section Text Styles (ensure these are present and consistent) --- */
.section-subtitle {
  color: var(--gold-crayola);
}

.section-title {
  color: var(--white);
  font-family: var(--font-forum);
}

.section-text {
  color: var(--grey);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.8;
}

/* --- Ensure these CSS variables are defined in your root or a common stylesheet --- */
/*
:root {
  --gold-crayola: hsl(38, 61%, 72%);
  --eerie-black-4: hsl(240, 2%, 12%);
  --eerie-black-3: hsl(240, 2%, 17%);
  --white: hsl(0, 0%, 100%);
  --grey: hsl(0, 0%, 70%);

  --font-forum: 'Forum', cursive;
  --fs-3: 3.2rem;
  --fs-7: 1.6rem;
  --fs-8: 1.4rem;

  --radius-20: 20px;
  --shadow-1: 0 8px 30px hsla(0, 0%, 0%, 0.2);
  --shadow-2: 0 4px 15px hsla(0, 0%, 0%, 0.1);

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;

  --section-padding: 100px; // Example value, adjust as needed
}
*/