
/*
 Theme Name: Dan's Dog Walking — Hello Child
 Theme URI: https://example.com/
 Description: Child theme for Hello Elementor that adds gradient contact buttons via a shortcode.
 Author: ChatGPT
 Author URI: https://openai.com/
 Template: hello-elementor
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: ddw-hello-child
*/

/* Inherit Hello styles */
@import url("../hello-elementor/style.css");

/* Gradient button styles */
.ddw-contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .ddw-contact-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ddw-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  padding: 1rem;
  text-align: center;
}
.ddw-gradient-btn {
  display: block;
  width: 100%;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff !important;
  background-image: linear-gradient(90deg, #58C4B9 0%, #94E3DB 100%);
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.ddw-gradient-btn:hover {
  filter: brightness(0.97);
}
.ddw-subtitle {
  margin-top: .5rem;
  color: #475569;
  font-size: .95rem;
}

/* Optional: make active menu items match gradient */
.elementor-nav-menu--main .elementor-item.elementor-item-active {
  background-image: linear-gradient(90deg, #58C4B9 0%, #94E3DB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* Utility: spacing on Elementor page if needed */
.ddw-section { margin: 2rem 0; }
