/*
Theme Name: Better Construction Co.
Description: A child theme of Divi designed for Better Construction Co.
Author: Josh Merriam - Merriam Creative
Author URI: https://www.merriamcreative.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: better-construction-co
*/

/* Import parent theme styles */
@import url("../Divi/style.css");

/* Custom styles for Better Construction Co. */

/* Add your custom CSS below this line */

/* Example: Custom color scheme for construction company */
:root {
    --construction-primary: #f2e04b;
    --construction-secondary: #000000;
    --construction-accent: #f2e04b;
    --construction-text: #333333;
    --construction-light: #f8f9fa;
}

/* Custom header styling */
.construction-header {
    background-color: var(--construction-secondary);
    color: white;
}

/* Custom button styling */
.construction-btn {
    background-color: var(--construction-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.construction-btn:hover {
    background-color: #e0cb43;
    transform: translateY(-2px);
}

/* Service section styling */
.construction-services {
    background-color: var(--construction-light);
    padding: 60px 0;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Footer customization */
.construction-footer {
    background-color: var(--construction-secondary);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .construction-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}