/* Button Grid Section */

.button-grid-section {
  background: #2d3250;
}

.button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  height: 280px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 8px;
}

.button-text {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  font-family: 'Vend Sans', sans-serif;
}

.button-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.4;
  font-family: 'Vend Sans', sans-serif;
}

/* Individual Button Colors */

.button-box-1 {
  background: #6b4e9c;
}

.button-box-2 {
  background: #6b4e9c;
}

.button-box-3 {
  background: #6b4e9c;
}

.button-box-4 {
  background: #6b4e9c;
}

/* Hover Animations */

.button-box-1:hover {
  background: #A97C50;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px #A97C50;
}

.button-box-2:hover {
  background: #211B18;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px #A97C50;
}

.button-box-3:hover {
  background: #A97C50;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px #A97C50;
}

.button-box-4:hover {
  background: #A97C50;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px #A97C50;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .button-box {
    height: 240px;
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .button-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .button-text {
    font-size: 16px;
  }
}

