/*
 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
*/


/* -----------------------------
    IMAGE EFFECTS
------------------------------ */

img {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 12px;
}


/* -----------------------------
   STYLISH HEADINGS (DIVIDER)
------------------------------ */

.heading-divider {
  position: relative;
  display: inline-block;
  padding-left: 40px;
}

.heading-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background-color: #6ab04c; /* change to your brand color */
  transform: translateY(-50%);
}

/* -----------------------------
   UTILITIES
------------------------------ */

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.shadow-soft {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.rounded-xl {
  border-radius: 1.5rem;
}

.padding-lg {
  padding: 3rem;
}

.margin-lg {
  margin: 3rem 0;
}
