/*
Theme Name: Lobyte Wolftech
Theme URI: https://www.lobyte.es
Author: Lobyte Tech Solutions SL
Description: Tema oscuro techie con acentos azul y verde, inspirado en nuestro logo del lobo metálico.
Version: 1.0
Text Domain: jl-wolftech
*/

:root {
  --bg-dark: #0D0F10;
  --bg-section: #161A1D;
  --accent-blue: #2D8CFF;
  --accent-green: #00C47A;
  --accent-green-dark: #0A7A4F;
  --text-light: #FFFFFF;
  --text-muted: #C7C7C7;
  --border-metal: #2A2F33;
  --radius: 12px;
  --transition: 0.25s ease;
}

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

/* Links */
a {
  color: var(--accent-blue);
  text-decoration: none;
}
a:hover {
  color: #1B6ED6;
}

/* Container */
.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #0B0D0E;
  border-bottom: 1px solid var(--border-metal);
  padding: 15px 0;
}
.site-branding {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img {
  height: 60px;
  filter: drop-shadow(0 0 10px var(--accent-green));
}
.site-title {
  font-size: 1.4rem;
  margin: 0;
}

/* Nav */
.site-nav a {
  margin-left: 20px;
  color: var(--text-light);
}
.site-nav a:hover {
  color: var(--accent-blue);
}

/* Hero */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: radial-gradient(circle at center, #0F1418, #0D0F10);
}
.hero-logo {
  width: 150px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px var(--accent-green));
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
}
.hero-buttons {
  margin-top: 30px;
}

/* Botones */
.btn-primary, .btn-secondary {
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  margin: 0 10px;
  transition: var(--transition);
  font-weight: 600;
  display: inline-block;
}
.btn-primary {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 0 10px rgba(45,140,255,0.4);
}
.btn-primary:hover {
  background: #1B6ED6;
}
.btn-secondary {
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
}
.btn-secondary:hover {
  background: var(--accent-green);
  color: #fff;
}

/* Secciones */
.section {
  padding: 80px 0;
  background: var(--bg-section);
}
.section:nth-of-type(even) {
  background: var(--bg-dark);
}
.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

/* Grid tarjetas */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: #131618;
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border-metal);
  transition: var(--transition);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 0 18px rgba(0,196,122,0.4);
}

/* Footer */
.site-footer {
  background: #0B0D0E;
  border-top: 1px solid var(--border-metal);
  padding: 30px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}