/*
Theme Name: TVFireStick Child
Theme URI: https://tvfirestick.com
Description: A dark modern tech-focused child theme for Twenty Twenty-One.
Author: Antigravity
Author URI: https://tvfirestick.com
Template: twentytwentyone
Version: 1.0.0
Text Domain: tvfirestick-child
*/

/* 
  TVFireStick.com Custom Styles 
  Integrated from custom-style.css
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-bg: #0f172a;
    --secondary-bg: #1e293b;
    --accent-color: #ff6a00;
    --accent-hover: #e65f00;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-radius: 12px;
    --container-width: 1200px;
    --transition: 0.3s ease;
}

/* Base Styles */
body {
    background-color: var(--primary-bg) !important;
    color: var(--text-main) !important;
    font-family: 'Inter', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-main) !important;
    font-weight: 700 !important;
}

/* Custom Overrides for Twenty Twenty-One */
#page {
    background-color: var(--primary-bg) !important;
}

.site-header {
    background-color: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enforce Dark Backgrounds on Blocks */
.wp-block-group,
.wp-block-columns,
.wp-block-post {
    border-radius: var(--border-radius);
}

.card-box,
.wp-block-post {
    background: var(--secondary-bg) !important;
    padding: 24px !important;
    transition: var(--transition) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.card-box:hover,
.wp-block-post:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color) !important;
}

/* Link and Button Styles */
a {
    color: var(--accent-color);
}

.wp-block-button__link {
    background-color: var(--accent-color) !important;
    border-radius: var(--border-radius) !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
}

.highlight-orange {
    color: var(--accent-color) !important;
}