/*
Theme Name:   4K FLIX Child
Theme URI:    https://4kflixiptv.com
Description:  Child theme for 4K FLIX IPTV - Protects customizations from theme updates
Author:       4K FLIX IPTV
Author URI:   https://4kflixiptv.com
Template:     astra
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  4kflix-child
*/

/* 
===================================================================
IMPORTANT: This is a child theme
All customizations should be made here, NOT in the parent theme
Parent theme (Astra) can update safely without losing your changes
===================================================================
*/

/* Brand Colors */
:root {
    --brand-primary: #7209b7;
    --brand-secondary: #b509d4;
    --brand-gradient: linear-gradient(135deg, #7209b7, #b509d4);
    --text-dark: #0a0a0a;
    --text-light: #4a4a4a;
    --background: #ffffff;
}

/* Custom Styles - Add your customizations below */

/* Example: Custom button styling */
.custom-button {
    background: var(--brand-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 9, 183, 0.3);
}

/* Add more custom styles as needed */