/* Struktur Organisasi Section */
.struktur-section {
  background: #fff8e1;
  border: 2px solid #c0c17d;
  padding: 60px 20px;
  text-align: center;
  color: #ff5722; /* Merah oranye */
  position: relative;
  overflow: hidden;
  margin-top: 5px;
}

.struktur-section h2 {
  font-size: 34px;
  font-weight: 600;
  color: #f57f17; /* oranye ceria */
  margin-bottom: 30px;
  position: relative;
}

.struktur-section h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #ff9800; /* hijau ceria */
  margin: 12px auto 30px auto;
  border-radius: 3px;
}

@keyframes munculDikit {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.struktur-section h2 i {
  margin-right: 10px;
  color: #ff7043;
}

/* Frame & Box */
.struktur-frame {
  display: flex;
  justify-content: center;
}

.struktur-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.struktur-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fffef5;
  padding: 20px;
  border: 8px solid #ffd54f;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 138, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  width: 700px;
}

.struktur-box img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hover Effect */
.struktur-box:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 111, 0, 0.3);
}

/* Icon Hiasan */
.icon-decor {
  position: absolute;
  font-size: 36px;
  opacity: 0.9;
  animation: floaty 3s infinite ease-in-out;
}

.decor-left {
  top: -20px;
  left: -20px;
}

.decor-right {
  bottom: -20px;
  right: -20px;
}

@keyframes floaty {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsif */
@media (max-width: 768px) {
  .struktur-box {
    width: 100%;
    padding: 15px;
    border-width: 6px;
  }

  .struktur-section h2 {
    font-size: 26px;
  }

  .icon-decor {
    font-size: 28px;
  }
}

/* guru-section reveal-section */
.guru-section {
  background-color: #fff9e6;
  border: 2px solid #c0c17d;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 60px 30px;
  text-align: center;
}

.guru-section h2 {
  font-size: 2.5rem;
  color: #ff5722;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}

.guru-section h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #ff9800;
  margin: 12px auto 30px auto;
  border-radius: 3px;
}

@keyframes munculDikit {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.guru-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.guru-box {
  background: linear-gradient(145deg, #fffde7, #fff3e0);
  border: 2px solid #ffe082;
  border-radius: 20px;
  padding: 20px 15px;
  width: 180px;
  height: 270px;
  box-shadow: 0 6px 12px rgba(255, 152, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guru-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(255, 87, 34, 0.25);
}

.guru-box img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #ffe082;
}

.guru-box p {
  margin-top: 12px;
  font-size: 1rem;
  color: #e65100;
  font-weight: bold;
  background-color: #fff8e1;
  padding: 6px 8px;
  border-radius: 10px;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .guru-box {
    width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .guru-box {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .guru-box {
    width: 90%;
  }
}
