/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Katalog Slider Section */
#katalog-slider {
  margin: 50px 0;
}

#katalog-slider .carousel-item {
  height: 500px;
}

#katalog-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Frame Foto Section */
#frame-foto {
  padding: 50px 0;
}

.frame-container {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.frame-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.frame-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Instagram Videos Section */
#instagram-videos {
  padding: 50px 0;
  background-color: #fff;
}

.instagram-embed {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.instagram-media {
  background: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #katalog-slider .carousel-item {
    height: 300px;
  }

  .frame-container {
    margin-bottom: 20px;
  }

  .frame-container img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  #katalog-slider .carousel-item {
    height: 250px;
  }
}
