/*
Theme Name: Ascent Child
Theme URI: https://ascentinfomanagement.com
Description: Child theme for Divi, inspired by Michelle demo, tailored for IT management services.
Author: Grok (adapted for Bobby Cowan)
Author URI: https://x.ai
Template: Divi
Version: 1.0
*/

/* Import parent theme styles */
@import url("../Divi/style.css");

/* Custom styles to emulate Michelle's design: soft pastels, modern typography, spacious layouts */
body {
    font-family: 'Open Sans', sans-serif; /* Clean, professional font */
    color: #333;
    background-color: #f9f9f9; /* Light background for readability */
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif; /* Elegant serif for headings, like Michelle */
    color: #2c3e50; /* Dark blue for professionalism */
}

.et_pb_section {
    padding: 80px 0; /* Spacious section padding */
}

.et_pb_button {
    border-radius: 30px; /* Rounded buttons for a soft, inviting look */
    background-color: #3498db; /* Blue accent for IT theme */
    border: none;
    padding: 15px 30px;
    transition: background-color 0.3s;
}

.et_pb_button:hover {
    background-color: #2980b9;
}

.et_pb_blurb {
    text-align: center; /* Centered service blurbs */
    margin-bottom: 40px;
}

.et_pb_testimonial {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtle shadows for depth */
}

/* Add more custom CSS as you build pages to fine-tune colors (e.g., primary: #ffb6c1 for soft pink accents if desired, or stick to blues for IT) */