/*
Theme Name: Divi Child
Description: Child theme for the Divi WordPress theme
Author: Your Name
Author URI: https://yourwebsite.com
Template: Divi
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: divi-child
*/

/* =Theme customization starts here
-------------------------------------------------------------- */

/* Import parent theme styles - handled by functions.php */

/* Custom styles go below this line */

/* Example: Custom header styling */
#main-header {
    /* Add your custom header styles here */
}

/* Example: Custom button styling */
.et_pb_button {
    /* Add your custom button styles here */
}

/* Example: Custom typography */
body {
    /* Add your custom font styles here */
}

/* Example: Custom colors */
:root {
    --primary-color: #2ea3f2;
    --secondary-color: #333333;
    --accent-color: #ff6b35;
}

/* Example: Mobile responsive adjustments */
@media (max-width: 768px) {
    /* Add mobile-specific styles here */
}

/* Example: Custom page layouts */
.custom-page-class {
    /* Add custom page styles here */
}