/* Amenities Page Styles */
.amenities-page {
  min-height: 100vh;
}

.amenities-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.amenities-hero .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.amenities-hero .hero-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}

.amenities-hero .hero-description {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Amenities Section */
.amenities-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.amenities-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.amenity-category {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.amenity-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-light);
}

.category-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-header h3 {
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 600;
}

.category-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.check-mark {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

/* Special Features Section */
.special-features {
  background: var(--white);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.special-feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.special-feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.special-feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.special-feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Experience Section */
.experience-section {
  background: linear-gradient(135deg, #2d7a2d, #1b5e20);
  padding: 80px 0;
  color: var(--white);
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-text h2 {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: 700;
}

.experience-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.9;
}

.experience-highlights {
  display: flex;
  gap: 40px;
}

.highlight-item {
  text-align: center;
}

.highlight-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.highlight-text {
  font-size: 14px;
  opacity: 0.8;
}

.experience-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.experience-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.experience-image:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-categories {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .experience-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .experience-highlights {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .amenities-hero {
    height: 50vh;
    min-height: 350px;
  }

  .amenities-hero .hero-title {
    font-size: 36px;
  }

  .amenities-hero .hero-subtitle {
    font-size: 20px;
  }

  .amenities-hero .hero-description {
    font-size: 16px;
  }

  .amenities-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenity-category {
    padding: 25px;
  }

  .category-header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .category-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
  }

  .category-header h3 {
    font-size: 18px;
  }

  .amenity-item {
    font-size: 13px;
    gap: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .special-feature-card {
    padding: 30px 25px;
  }

  .feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .special-feature-card h3 {
    font-size: 18px;
  }

  .special-feature-card p {
    font-size: 13px;
  }

  .experience-text h2 {
    font-size: 28px;
  }

  .experience-text p {
    font-size: 16px;
  }

  .experience-highlights {
    flex-direction: column;
    gap: 20px;
  }

  .highlight-number {
    font-size: 28px;
  }

  .experience-image img {
    height: 300px;
  }
}
