/*
Theme Name: IronForge
Theme URI: https://example.com/ironforge
Author: IronForge Team
Author URI: https://example.com
Description: A powerful, high-contrast WooCommerce theme for bodybuilding and fitness nutrition brands. Features a dark industrial-athletic design with bold typography and aggressive layouts.
Version: 1.0.3
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ironforge
Tags: woocommerce, one-column, two-columns, custom-header, custom-background, custom-logo, featured-images, translation-ready

IronForge WordPress Theme, (C) 2024 IronForge Team
IronForge is distributed under the terms of the GNU GPL v2 or later.
*/

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    background-color: #0a0a0a;
    color: #c0c0c0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

a {
    color: #e8001d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff1a33;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    padding: 14px 36px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    line-height: 1;
}

.btn-primary {
    background-color: #e8001d;
    color: #ffffff;
    border-color: #e8001d;
}

.btn-primary:hover {
    background-color: transparent;
    color: #e8001d;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background-color: #e8001d;
    border-color: #e8001d;
    color: #ffffff;
}

/* === SECTION TITLES === */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #c0c0c0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* === CARD === */
.card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #e8001d;
    transform: translateY(-4px);
}

/* === NOISE OVERLAY === */
.noise-overlay {
    position: relative;
}

.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
}

/* === DIAGONAL SECTION === */
.diagonal-section {
    position: relative;
}

.diagonal-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #0a0a0a;
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 0);
    z-index: 2;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* === UTILITY === */
.text-red {
    color: #e8001d;
}

.text-white {
    color: #ffffff;
}

.bg-dark {
    background-color: #0a0a0a;
}

.bg-charcoal {
    background-color: #1a1a1a;
}
