/* ===== GIF Gallery Styles ===== */

/* Text Panel for GIF Section */
.gif-text-panel {
  max-width: 700px;
  margin: 30px auto;
  text-align: center;
  padding: 12px 18px;
  line-height: 1.4;
  color: #ffffff;
}

.gif-text-panel h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gif-text-panel p {
  font-size: 1rem;
  margin: 6px 0;
}

/* GIF Gallery Grid Layout */
.gif-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 30px 20px;
  justify-items: center;
}

.gif-gallery img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gif-gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ===== Responsive Adjustments ===== */
@media screen and (max-width: 1024px) {
  .gif-gallery {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .gif-text-panel {
    margin: 15px auto;
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .gif-text-panel h2 {
    font-size: 1.5em;
    margin-bottom: 8px;
  }

  .gif-gallery {
    gap: 15px;
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .gif-gallery img {
    width: 92%;
  }
}
