/*
Theme Name: Divi Child
Template: Divi
Version: 1.0
*/

@import url("../Divi/style.css");

/* Typography */
h1, h2, h3 {
  font-family: 'Merriweather', serif;
  color: #0D1B2A;
}
body, p, .coach-bio {
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

/* Button */
a.btn, .et_pb_button {
  background-color: #3A8D8C;
  color: #fff;
  border-radius: 4px;
  padding: 12px 24px;
  text-transform: uppercase;
  font-weight: bold;
}
a.btn:hover, .et_pb_button:hover {
  background-color: #D98A4F;
}

.buttstuff input[type="submit"] {
  background-color: #3A8D8C;
  color: #fff;
  border-radius: 4px;
  padding: 12px 24px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.buttstuff input[type="submit"]:hover {
  background-color: #D98A4F;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  background-color: #D98A4F;
}

/* Image styling */
.coach-profile-image img {
  border-radius: 50%;
  border: 4px solid #D98A4F;
}

/* Card containers */
.coach-details .card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 20px;
}

/* CTA section */
.cta-section {
  background-color: #3A8D8C;
  padding: 40px;
  text-align: center;
  color: #fff;
}
.cta-section .btn {
  background-color: #D98A4F;
}


