/*
Theme Name: Hello Child
Description: Child theme of Hello Elementor for iaos.africa
Author: Your Name
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-child
*/

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

/* Custom styles for iaos.africa */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --background-color: #ffffff;
}

/* Custom header styles */
.site-header {
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Sticky header enhancement */
.elementor-sticky--active {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Custom button styles */
.custom-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive typography */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .custom-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Additional custom styles can be added here */