/* ==========================================================================
   DHOLERA NEW FULL-WIDTH AMENITIES BANNER COMPONENT STYLESHEET
   Developed by Expert UI/UX Designer & Developer
   ========================================================================== */

.dh-amenities-section {
  padding: 100px 40px;
  background-color: #ffffff; /* Clean white background */
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.dh-amenities-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 🔷 1. SECTION HEADER */
.dh-amenities-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dh-amenities-subtitle {
  color: var(--dh-orange, #ef7d00);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.dh-amenities-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

/* Accent bottom line */
.dh-amenities-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--dh-orange, #ef7d00);
  border-radius: 2px;
}

.dh-amenities-intro {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* 🔷 2. FULL-WIDTH BANNER SHOWCASE (100% PROPORTIONAL & UNCROPPED) */
.dh-amenities-full-showcase {
  width: 100%;
  margin-top: 20px;
}

.dh-amenities-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dh-amenities-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 125, 0, 0.25);
}

.dh-amenities-image {
  width: 100%;
  height: auto;
  display: block; /* Ensures natural height is used and image is fully shown */
  object-fit: contain; /* Prevents any cropping whatsoever */
}

/* Inner overlay border */
.dh-amenities-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
  pointer-events: none;
  z-index: 2;
  transition: all 0.5s ease;
}

/* ==========================================================================
   AMENITIES BANNER RESPONSIVENESS
   ========================================================================== */

@media (max-width: 991px) {
  .dh-amenities-section {
    padding: 80px 24px;
  }
  .dh-amenities-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 600px) {
  .dh-amenities-section {
    padding: 60px 16px;
  }
  .dh-amenities-title {
    font-size: 1.55rem;
  }
  .dh-amenities-image-wrapper {
    border-radius: 16px;
  }
}
