/* Thematic area section */
#area-menu {
  background: #bacbf0;
  border-radius: 5px;
  padding: 2rem; /* Overall padding */
}

.area-menu-heading {
  text-align: center;
  font-size: 3rem; /* Responsiveness */
  font-weight: 400;
  color: #202020;
  margin-bottom: 2rem;
}

.area-menu-container {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 0; /* Adjusted padding for consistency */
  justify-content: center; /* Center the items */
}

.area-menu-container img {
  display: block;
  width: 17rem; /* Converted from px to rem */
  height: 17rem; /* Converted from px to rem */
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.area-menu-container img:hover {
  box-shadow: 0 0 0.9rem black; /* Converted px to rem */
  transform: scale(1.05); /* Adjusted scale to a smaller, subtle effect */
}

.area-menu-item {
  display: flex;
  flex: 1 1 calc(33.33% - 2rem); /* Maintain 3 items per row */
  justify-content: center;
  align-items: center;
  margin: 1rem; /* Margin for spacing */
  padding: 2rem;
  flex-direction: column;
  text-align: center;
}

.area-description {
  margin-top: 1.5rem; /* Consistent spacing */
}

.font-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #444;
}

.area-description p {
  font-size: 1.1rem;
  color: #555;
  font-weight: 300;
}

.area-description h3 {
  color: #117964;
  font-weight: 700;
}

@media (max-width: 900px) {
  .area-menu-item {
      flex: 1 1 calc(50% - 2rem); /* Two items per row for medium screens */
  }
}

@media (max-width: 600px) {
  .area-menu-heading {
      font-size: 2.5rem; /* Smaller font size on small screens */
  }

  .area-menu-container img {
      width: 12.5rem; /* Converted from px to rem */
      height: 12.5rem; /* Converted from px to rem */
  }

  .area-menu-item {
      flex: 1 1 100%; /* One item per row on small screens */
      margin-bottom: 1.5rem;
  }

  .font-title {
      font-size: 1.5rem; /* Adjust font size for small screens */
  }

  .area-description p {
      font-size: 1rem; /* Adjust paragraph size */
  }
}
