/* ==========================================================================
   IRON BOX - CROSSFIT DEMO
   ========================================================================== */

:root {
    --bg-dark: #0A0A0A;
    --bg-card: #151515;
    --accent: #CCFF00; /* Neon Green */
    --accent-hover: #AADD00;
    
    --text-main: #FFFFFF;
    --text-muted: #999999;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
}

.text-neon { color: var(--accent); }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.text-center { text-align: center; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-heading);
    transform: skew(-10deg);
}

.btn-large { padding: 18px 45px; font-size: 1.1rem; }

.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: #FFF; color: #000; transform: skew(-10deg) scale(1.05); }

.btn-outline { background: transparent; color: #FFF; border: 2px solid #FFF; }
.btn-outline:hover { background: #FFF; color: #000; transform: skew(-10deg) scale(1.05); }

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; font-style: italic; letter-spacing: -1px; }

.nav { display: flex; gap: 40px; }
.nav-link { font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); transition: color 0.3s; }
.nav-link:hover { color: var(--accent); }

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%) contrast(120%); }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 100%);
    z-index: -1;
}

.hero-content { max-width: 700px; }
.hero-title { font-size: clamp(4rem, 10vw, 7rem); font-style: italic; margin-bottom: 20px; text-shadow: 4px 4px 0px rgba(0,0,0,0.5); }
.hero-desc { font-size: 1.2rem; color: #DDD; margin-bottom: 40px; font-weight: 400; max-width: 550px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* Marquee */
.marquee-wrapper {
    background: var(--accent);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-2deg);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.marquee {
    display: flex;
    animation: scroll 15s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.marquee span { padding: 0 30px; font-style: italic; }
.marquee .dot { width: 10px; height: 10px; background: #000; border-radius: 50%; display: inline-block; margin: 0 10px; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* About / Images Stack */
.image-stack { position: relative; height: 600px; }
.image-stack img { position: absolute; object-fit: cover; border-radius: 4px; filter: grayscale(20%); }
.img-back { width: 70%; height: 70%; top: 0; right: 0; z-index: 1; }
.img-front { width: 60%; height: 60%; bottom: 0; left: 0; z-index: 2; border: 8px solid var(--bg-dark); }

.section-title { font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 30px; font-style: italic; }
.section-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; }

.features-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.features-list li { font-size: 1.2rem; font-weight: 600; display: flex; align-items: center; gap: 15px; }

/* Footer */
.footer { padding: 100px 0 50px; background: url('./assets/hero.png') center/cover; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,10,10,0.9); }
.footer-inner { position: relative; z-index: 1; }

.footer-title { font-size: clamp(3.5rem, 8vw, 6rem); font-style: italic; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.social-links { display: flex; gap: 20px; }
.social-links a { font-size: 1.5rem; color: #FFF; transition: color 0.3s; }
.social-links a:hover { color: var(--accent); }
.copyright { color: var(--text-muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 900px) {
    .nav { display: none; }
    .btn-nav { padding: 10px 15px; font-size: 0.8rem; }
    .logo { font-size: 1.8rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .image-stack { height: 400px; margin-bottom: 50px; order: -1; }
    .hero-overlay { background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.9) 100%); }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}
