/*
 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 */
    background: #fff;   /* optional */
    padding: 20px;      /* optional */
}

/* move gold padding in on cards */
.service-card {
  outline: 2px dashed #C49A3B;   /* gold */
  outline-offset: -10px;         /* pulls the border in */
  border-radius: 12px;
  background: #006B3C;
  color: white;
  padding: 20px;
}

.site-header {
    border-bottom: 2px solid #CC9933;
}

.site-footer {
    border-top: 2px solid #CC9933;
}

/* Push the bottom container to the bottom */
.testimonial-bottom {
    margin-top: auto;
}

/* Make testimonial cards flex containers and set min-height */
.gb-testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;  /* Adjust as needed */
    height: 100%;
}

/* Change Hamburger Button Background */
.menu-toggle,
.menu-toggle:focus,
.menu-toggle:hover {
    background: #006633 !important;
    border-radius: 5px;   /* Optional: soften corners */
}

/* Change Mobile Dropdown Menu Background */
@media (max-width: 768px) {
    .main-navigation.toggled .main-nav > ul,
    .main-navigation .main-nav.toggled > ul {
        background: #006633 !important;
    }
}