/* Hero Section */
.project-hero-section {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background-image: url('https://images.pexels.com/photos/9656532/pexels-photo-9656532.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--color-text-white);
}

.project-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.9) 0%, rgba(10, 25, 41, 0.8) 100%);
}

.project-hero-section .hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-black);
  margin-bottom: var(--space-2);
  position: relative;
  
  color: white;
}

.project-hero-section .hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  position: relative;
}

/* Projects Grid */
.projects-grid {
  position: relative;
  background-color: var(--color-bg-white);
}

.category-title {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  position: relative;
  padding-left: var(--space-3);
}

.category-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background-color: var(--color-secondary);
}

.project-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.status-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
  padding: 0.5rem var(--space-2);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
}

.project-details {
  padding: var(--space-3);
}

.project-details h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.location {
  color: var(--color-text-medium);
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3);
}

.features li {
  padding: 0.5rem 0;
  color: var(--color-text-medium);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.features li:last-child {
  border-bottom: none;
}

/* Amenities Section */
.amenities-section {
  background-color: var(--color-bg-light);
}

.amenity-card {
  background-color: var(--color-bg-white);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-medium);
  height: 100%;
}

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

.amenity-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(213, 160, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  color: var(--color-secondary);
}

.amenity-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.amenity-card p {
  color: var(--color-text-medium);
  margin: 0;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--color-primary);
  color: var(--color-text-white);
}

.cta-section h2 {
  color: var(--color-text-white);
  font-size: 2.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .project-hero-section {
    height: 50vh;
  }
  
  .project-hero-section .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 767.98px) {
  .project-hero-section {
    height: 40vh;
  }
  
  .project-hero-section .hero-title {
    font-size: 2.25rem;
  }
  
  .project-hero-section .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .category-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .project-hero-section .hero-title {
    font-size: 2rem;
  }
  
  .amenity-card {
    margin-bottom: var(--space-3);
  }
}