/*
Theme Name: CatVanPlan Child
Theme URI: https://catvanplan.com
Description: Custom child theme for the CatVanPlan van life blog. Built on top of Twenty Twenty-Five so we can safely customize the site's code without touching (or breaking) the original theme.
Author: Dean Rago
Version: 1.1.0
Template: twentytwentyfive
Text Domain: catvanplan-child
*/

/* =========================================================
   CUSTOM STYLES
   ---------------------------------------------------------
   Anything we write below this line changes how your site
   looks. Each rule is just: "find these things on the page,
   and style them like this." We'll add more here together.
   ========================================================= */

/* Give all photos nice rounded corners. */
img {
  border-radius: 12px;
}

/* ---------------------------------------------------------
   PHOTO GALLERIES
   Makes the built-in WordPress Gallery block look polished:
   soft shadows, and a gentle zoom when you hover a photo.
   --------------------------------------------------------- */

/* Each photo in a gallery gets a soft shadow and a smooth
   "transition" so the hover effect below animates nicely. */
.wp-block-gallery img {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* When you hover a gallery photo, it zooms in slightly and
   the shadow grows — makes the photos feel alive. */
.wp-block-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
}

/* A little breathing room between photos in the grid. */
.wp-block-gallery {
  gap: 12px;
}
