/* ==========================================================
   amenities.css — Amenities page styles
   The Mount View Castle Hotels & Resorts
   ========================================================== */

/* ----------------------------------------------------------
   INTRO HIGHLIGHT STRIP
   ---------------------------------------------------------- */
.amenities-intro-strip {
  background: #ffffff;
  padding: 58px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.intro-highlight {
  text-align: center;
  padding: 16px 12px;
}

.intro-highlight-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #edf5f1, #c8e4d5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform .25s, box-shadow .25s;
}

.intro-highlight:hover .intro-highlight-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(23,63,53,.18);
}

.intro-highlight-icon i { font-size: 28px; color: #173f35; }

.intro-highlight h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #173f35;
  margin-bottom: 5px;
}

.intro-highlight p { font-size: 13.5px; color: #5a5a5a; line-height: 1.65; margin: 0; }

/* ----------------------------------------------------------
   CATEGORY SECTION LABEL
   ---------------------------------------------------------- */
.category-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.category-label-icon {
  width: 52px;
  height: 52px;
  background: var(--green-primary, #173f35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-label-icon i { font-size: 24px; color: #e0b54a; }

.category-label h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #173f35;
  margin: 0 0 2px;
}

.category-label p { font-size: 14px; color: #5a5a5a; margin: 0; }

/* ----------------------------------------------------------
   AMENITY DETAIL CARDS  (main grid)
   ---------------------------------------------------------- */
.amenities-grid-section {
  background: #fffaf2;
  padding: 72px 0;
}

.amenities-category-block { margin-bottom: 60px; }
.amenities-category-block:last-child { margin-bottom: 0; }

.amen-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .24s, box-shadow .24s, border-color .24s;
  position: relative;
  overflow: hidden;
}

.amen-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c99b37, #e0b54a);
  opacity: 0;
  transition: opacity .24s;
}

.amen-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
  border-color: rgba(201,155,55,.25);
}

.amen-card:hover::before { opacity: 1; }

/* Large icon ring */
.amen-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(201,155,55,.14), rgba(201,155,55,.06));
  border: 1.5px solid rgba(201,155,55,.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .24s, border-color .24s;
}

.amen-card:hover .amen-icon {
  background: linear-gradient(135deg, rgba(201,155,55,.25), rgba(201,155,55,.12));
  border-color: rgba(201,155,55,.6);
}

.amen-icon i {
  font-size: 30px;
  color: #c99b37;
  transition: color .24s;
}

.amen-card:hover .amen-icon i { color: #b8891e; }

.amen-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #173f35;
  margin: 0;
}

.amen-card p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

/* ----------------------------------------------------------
   DARK AMENITIES STRIP  (full-width dark green)
   ---------------------------------------------------------- */
.amenities-dark-strip {
  background: #1C3530;
  padding: 72px 0;
}

.amenities-dark-strip .section-tag     { color: #e0b54a; }
.amenities-dark-strip .section-heading { color: #ffffff; }
.amenities-dark-strip .section-intro   { color: rgba(255,255,255,.65); }

.strip-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(37,64,56,.7);
  transition: background .22s, border-color .22s, transform .22s;
  height: 100%;
}

.strip-amenity:hover {
  background: #2d4d43;
  border-color: rgba(201,155,55,.38);
  transform: translateY(-3px);
}

.strip-icon-ring {
  width: 58px;
  height: 58px;
  background: rgba(201,155,55,.14);
  border: 1px solid rgba(201,155,55,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-icon-ring i { font-size: 26px; color: #e0b54a; }

.strip-amenity span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

/* ----------------------------------------------------------
   EXPERIENCE QUOTE BANNER
   ---------------------------------------------------------- */
.amenity-quote-banner {
  background: linear-gradient(135deg, #173f35 0%, #1C3530 100%);
  padding: 65px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.amenity-quote-banner::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: var(--font-heading);
  font-size: 280px;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.amenity-quote-banner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 30px);
  color: #ffffff;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.amenity-quote-banner cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: #e0b54a;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 767.98px) {
  .amenities-grid-section { padding: 52px 0; }
  .amenities-dark-strip   { padding: 52px 0; }
  .amenity-quote-banner   { padding: 50px 0; }
  .category-label { flex-direction: column; text-align: center; }
  .category-label-icon { margin: 0 auto; }
}
