/*
Theme Name: MacroStrike
Author: MOACIR JR
Description: Tema gamer dark para WooCommerce
Version: 1.0
*/

/* ===== FONTE D DAY STENCIL ===== */

@font-face {
  font-family: 'DDayStencil';
  src: url('assets/fonts/DDayStencil.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ===== VARIÁVEIS ===== */

:root {
  --bg: #050505;
  --card: #0c0c0c;
  --primary: #00ff88;
  --text: #ffffff;
  --muted: #aaaaaa;
}

/* ===== RESET ===== */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ===== CONTAINER ===== */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ===== HEADER ===== */

header {
  background: #000;
  padding: 15px 0;
  border-bottom: 1px solid #111;
}

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

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

/* ===== BOTÕES ===== */

.btn {
  background: var(--primary);
  padding: 10px 20px;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  box-shadow: 0 0 15px var(--primary);
  transform: translateY(-2px);
}

/* ===== HERO ===== */

.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-family: 'DDayStencil', sans-serif;
  font-size: 64px;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* ===== GRID ===== */

.grid {
  display: grid;
  gap: 20px;
}

.products {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ===== CARD ===== */

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,255,136,0.3);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin-top: 15px;
}

.card p {
  color: var(--primary);
  font-weight: bold;
}

/* ===== FOOTER ===== */

footer {
  background: #0a0a0a;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
  color: var(--muted);
}
