/*
Theme Name: IronPulse Gym
Theme URI: https://example.com/ironpulse-gym
Author: Antigravity
Author URI: https://example.com
Description: A high-performance, dark-mode gym theme optimized for Elementor. Features neon accents, bold typography, and a modern industrial vibe.
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: ironpulse-gym
Tags: gym, fitness, dark-mode, elementor-ready, responsive-layout
*/

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --primary-color: #000000;
    --secondary-color: #121212;
    --accent-color: #ccff00;
    /* Neon Lime */
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition-speed: 0.3s;
}

/* ==========================================================================
   Reset & Basics
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

h3 {
    font-size: 1.75rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Header */
.site-header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.site-branding .site-title {
    font-size: 2rem;
    margin: 0;
    color: var(--text-color);
}

.site-branding .site-title span {
    color: var(--accent-color);
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.site-footer p {
    color: var(--text-muted);
}

/* ==========================================================================
   Components
   ========================================================================== */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--accent-color);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.card {
    background: var(--secondary-color);
    padding: 30px;
    border: 1px solid #333;
    transition: transform var(--transition-speed);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

/* ==========================================================================
   Elementor Overrides
   ========================================================================== */
.elementor-page .site-header {
    position: relative;
    /* Let Elementor handle sticky if needed */
}

/* Form Styles */
input,
textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    margin-bottom: 20px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}