/* Services/Amenities Section Styles */
.services-section {
  padding: 70px 0 90px;
  max-width: 1200px;
  margin: 50px auto 70px;
  background-color: transparent;
}

.service-section-title {
  color: #ffde59;
  font-weight: 400;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

.service-section-subtitle {
  color: #333;
  font-size: 3.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Merriweather', serif !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #e2e8f0;
}

.service-card {
  padding: 40px 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  background-color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon img {
  width: 60px;
  height: 60px;
}

.service-icon i {
  color: #333;
  margin-bottom: 5px;
}

.service-title {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.view-all-btn {
  background-color: #ffde59;
  color: #333;
  border: none;
  padding: 13px 35px;
  font-size: 0.95rem;
  margin-top: 50px;
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: block;
  margin: 50px auto 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  text-decoration: none;
  width: fit-content;
}

.view-all-btn:hover {
  background-color: #ffc300;
  color: #333;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .service-section-subtitle {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-section-subtitle {
    font-size: 4rem;
  }
} 