/*
Theme Name: GeneratePress Child
Theme URI: https://wasatchlusitanos.com
Description: Child theme for GeneratePress
Author: Your Name
Template: generatepress
Version: 1.0
*/

/* Your custom CSS starts below */

.wl-dark-section {
  background-color: transparent;
  color: var(--contrast); /* or your theme text color */
}

.wl-dark-section a {
  color: var(--accent);
}


.site,
.site-content,
.content-area,
.site-main,
.entry-content,
.dynamic-entry-content {
  background-color: transparent;
}



/* Base button */
a.wl-button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 0.2s ease;
  margin: 4px 4px;

  /* Reset link styling */
  color: #ffffff !important;
  border: 1px solid #6a6a6a;
}

/* Remove GP hover underline */
a.wl-button:hover,
a.wl-button:focus {
  text-decoration: none !important;
}

/* Primary */
a.wl-button.wl-button-primary {
  background-color: #2f2f2f;
  border-color: #7a7a7a;
}

a.wl-button.wl-button-primary:hover {
  background-color: #444444;
  border-color: #a0a0a0;
  color: #ffffff !important;
}

/* Secondary */
a.wl-button.wl-button-secondary {
  background-color: transparent;
  border-color: #8a8a8a;
}

a.wl-button.wl-button-secondary:hover {
  background-color: #2a2a2a;
  border-color: #b0b0b0;
  color: #ffffff !important;
}