<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom CSS for Summer Reading Program Page */

/* Custom CSS for Summer Reading Program Page */

.srp-full-page-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 150px;
  background-image: url(https://www.yourmdl.org/wp-content/uploads/2025/06/watercolor-dots-more-transparent.png),
    url(https://www.yourmdl.org/wp-content/uploads/2025/05/water-color-paper.png);
  background-size: 1000px, 600px;
  background-repeat: repeat, repeat;
}

/* Banner at the top of the page */
.srp-banner-container {
  width: 100%;
  position: relative;
  background: url("https://www.yourmdl.org/wp-content/uploads/2025/06/srp-banner-background-very-transparent.png")
    center center / 100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: saturate(100%);
}

/* Logo inside the banner */
.srp-logo-animated {
  padding: 60px 0;
  width: 40%;
  height: auto;
  animation: srp-logo-zoom-in 1.5s ease-in-out forwards;
}

@keyframes srp-logo-zoom-in {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(.7);
    opacity: 1;    
  }  
  75% {
    transform: scale(1.1);
  }  

  100% {
    transform: scale(1);
  }
}

.srp-logo-animated img {
  width: 100%;
}

.srp-logo {
  padding: 60px 0;
  width: 40%;
  height: auto;
}

.srp-logo img {
  width: 100%;
}

/* Section containing the images grid */
.srp-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  padding: 50px 10px;
}

/* Grid of images (main navigation images) */
.srp-grid-item {
  flex: 1 1 200px;
  max-width: 300px;
  min-width: 200px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8));
}

/* Individual image styling in the images grid */
.srp-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover effect for images in the images grid */
.srp-grid-item img:hover {
  transform: scale(1.07) rotate(-3deg);
}

.srp-button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  padding: 50px 10px;
}

/* Grid of images (main navigation images) */
.srp-button-item {
  flex: 1 1 300px;
  max-width: 350px;
  min-width: 250px;
}

.srp-button-item-selected {
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 250px;
}

.srp-button-item-deselected {
  flex: 1 1 300px;
  max-width: 300px;
  min-width: 250px;
}
/* Individual image styling in the images grid */
.srp-button-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.srp-button-item-selected img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));  
}

.srp-button-item-deselected img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0%);
  transition: transform 0.3s ease;
}

/* Hover effect for images in the buttons grid */
.srp-button-item img:hover {
  transform: scale(1.07);
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
}

.srp-button-item-deselected img:hover {
  transform: scale(1.2);
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
  filter: saturate(100%);
}

/* Responsive: 2 images on top row, 1 below for medium screens */
@media (max-width: 1100px) {
  .srp-logo {
    width: 60%;
    padding: 40px 0;
  }
  .srp-logo-animated {
    width: 60%;
    padding: 40px 0;
  }  
}

/* Responsive: stack images vertically on mobile */
@media (max-width: 775px) {
  .srp-grid-container {
    gap: 30px;
  }
  .srp-buttons-grid {
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .srp-logo {
    width: 90%;
    padding: 20px 0;
  }
  .srp-logo-animated {
    width: 90%;
    padding: 20px 0;
  }  
  .srp-grid-item {
    max-width: 250px;
  }
  .srp-button-container {
    gap: 30px;
  }
  .srp-button-item {
    max-width: 250px;
  }
}
</pre></body></html>