/* General styles */
body {
  margin: 0;
  color: #333;
  background-color: #f9f9f9;
}

/* Info Section Styles */
.info-section-section {
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url('../assets/images/img2.jpg') no-repeat center center;
  background-size: cover;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
}

.info-section__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid layout */
  gap: 30px; /* Space between blocks */
  width: 100%;
  max-width: 1200px; /* Limit overall width */
}

.info-section__block {
  background: #ffffff;
  border-radius: 12px; /* Modern rounded corners */
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
  text-align: center;
  display: flex;
  flex-direction: column; /* Stack content */
  align-items: center;
  gap: 15px;
}

.info-section__block:hover {
  transform: translateY(-10px); /* Lift effect */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.info-section__title {
  font-size: 3rem;
  font-weight: 600;
  color:  #a27c27;
  letter-spacing: 1px;
  font-family: "Pinyon Script", serif;
}

.info-section__text {
  font-family: "Bodoni Moda", serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-family: "Bodoni Moda", serif;
}

.info-section__link {
  font-family: "Bodoni Moda", serif;
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-section__link:hover {
  color: #0056b3; /* Slightly darker blue on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .info-section-section {
    padding: 60px 15px;
  }

  .info-section__content {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .info-section__block {
    padding: 15px;
  }
}
