/* About Page Custom Styles */

.about-section {
  padding: 80px 0;
}

.welcome-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  display: block;
}

.about-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1c232f;
  line-height: 1.1;
}

.about-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Section 1 Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.grid-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-block {
  background-color: #b1976b; /* Adjusted Gold/Tan color */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.stat-block .number {
  font-size: 40px;
  font-weight: 700;
}

.stat-block .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section 2 Facilities */
.facilities-section {
  padding: 80px 0;
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.facilities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.facility-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.facility-icon {
  font-size: 24px;
  color: #b1976b;
  margin-top: 5px;
}

.facility-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1c232f;
}

.facility-content p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.facilities-images {
  display: flex;
  gap: 20px;
}

.vertical-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vertical-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .about-grid,
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 36px;
  }

  .vertical-img {
    height: 400px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .facilities-list {
    grid-template-columns: 1fr;
  }
}

/* Lifestyle Section */
.lifestyle-section {
  padding: 100px 0;
}

.lifestyle-row {
  margin-bottom: 80px;
}

.lifestyle-row:last-child {
  margin-bottom: 0;
}

.lifestyle-content .section-line {
  display: block;
  width: 40px;
  height: 3px;
  border-top: 3px solid #ff6b6b;
  margin-bottom: 20px;
}

.lifestyle-content .section-line.pink {
  border-color: #ff6b6b;
}
.lifestyle-content .section-line.yellow {
  border-color: #ffb800;
}
.lifestyle-content .section-line.green {
  border-color: #26de81;
}

.lifestyle-content .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c232f;
  margin-bottom: 20px;
}

.lifestyle-content p {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
}

.lifestyle-image-container {
  position: relative;
  padding: 15px;
  z-index: 1;
}

.lifestyle-image-container img {
  width: 65%;
  height: auto;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
  margin-left: 100px;
}

.lifestyle-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 116px;
  width: calc(100% - 265px);
  height: calc(100% - 15px);
  border: 2px dashed #ff6b6b;
  border-radius: 20px;
  z-index: -1;
}

.lifestyle-image-container.pink-border::after {
  border-color: #ffc0cb;
  opacity: 0.6;
}
.lifestyle-image-container.yellow-border::after {
  border-color: #ffeb3b;
  opacity: 0.6;
}
.lifestyle-image-container.green-border::after {
  border-color: #b2f2bb;
  opacity: 0.6;
}

/* Team Section */
.team-section {
  padding: 100px 0;
}

.section-bg-cream {
  background-color: #fcf8f1;
}

.team-card {
  background: transparent;
  text-align: center;
  transition: all 0.3s ease;
}

.team-thumb {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.team-thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info .name {
  font-size: 20px;
  font-weight: 700;
  color: #1c232f;
  margin-bottom: 5px;
}

.team-info .designation {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #666;
  font-size: 14px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #1c232f;
  color: #fff;
  border-color: #1c232f;
}

/* Lifestyle Section — Tablet (≤991px) */
@media (max-width: 991px) {
  .lifestyle-row {
    flex-direction: column !important;
    text-align: center;
  }

  .lifestyle-image-container {
    margin-bottom: 40px;
    padding: 10px;
  }

  /* Make image full-width on tablet/mobile */
  .lifestyle-image-container img {
    width: 100%;
    margin-left: 0;
    margin: 20px;
  }

  /* Hide the decorative dashed border on smaller screens */
  .lifestyle-image-container::after {
    display: none;
  }

  .lifestyle-content .section-line {
    margin: 0 auto 20px;
  }

  .lifestyle-content.ps-lg-5 {
    padding-left: 0 !important;
  }

  .lifestyle-section {
    padding: 60px 0;
  }

  .lifestyle-row {
    margin-bottom: 60px;
  }

  .lifestyle-content .section-title {
    font-size: 26px;
  }
}

/* Lifestyle Section — Mobile (≤575px) */
@media (max-width: 575px) {
  .lifestyle-section {
    padding: 40px 0;
  }

  .lifestyle-row {
    margin-bottom: 40px;
  }

  .lifestyle-content .section-title {
    font-size: 22px;
  }

  .lifestyle-content p {
    font-size: 14px;
  }

  .lifestyle-image-container {
    padding: 0;
    margin-bottom: 25px;
  }

  .lifestyle-image-container img {
    border-radius: 12px;
    margin: 20px;
    margin-left: 0;
  }
}
