/*
Theme Name: StableVault
Theme URI: https://wpastra.com/
Description: Child theme for Astra WordPress theme - StableVault customization
Author: Your Name
Author URI: https://yoursite.com/
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stablevault
*/

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

/* Add your custom styles below */

/* Example custom styles - you can modify or remove these */
body {
    /* Add your custom body styles here */
}

.site-header {
    /* Add your custom header styles here */
}

.site-footer {
    /* Add your custom footer styles here */
}

/* Custom button styles */
.custom-button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #005a87;
    color: white;
}

/* Custom heading styles */
.custom-heading {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

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