<?php
/*
Theme Name: Astra Child
Description: Child theme for the Astra WordPress theme
Author: Your Name
Template: astra
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../astra/style.css");

/* Custom styles for your child theme */

/* Example: Change the site title color */
.site-title a {
    color: #333;
}

/* Example: Custom header background */
.main-header-bar {
    background-color: #ffffff;
}

/* Example: Custom button styling */
.ast-button, .button {
    background-color: #0073aa;
    border-radius: 5px;
}

/* Example: Custom footer styling */
.site-footer {
    background-color: #f8f8f8;
    padding: 20px 0;
}

/* Add your custom CSS below this line */