/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


/* Reusable shadow class */
.box-shadow {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* subtle shadow */
    border-radius: 8px; /* optional */
}	


/* Reusable hover and glow on containers */
.container-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 16px;
}

.container-hover:hover {
  box-shadow: 0 0 25px 3px rgba(198, 178, 229, 0.7),
              0 0 40px 8px rgba(142, 112, 184, 0.4);
  transform: translateY(-4px);
}

/* Remove logos on background containers on mobile */
@media (max-width: 767px) {
  .logo-bg {
    background-image: none !important;
  }
}