/*
Theme Name: Hello Child
Description: A child theme of the Hello Elementor theme
Author: Mahbub Hasan
Template: hello-elementor
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

/* Your custom styles go here */
body {
    font-family: 'Arial', sans-serif;
}

/* Custom header styles */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Custom button styles */
.btn-primary {
    background-color: #007cba;
    border-color: #007cba;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #005a87;
    border-color: #005a87;
    color: #ffffff;
}

/* Custom footer styles */
.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
    }
} 