/*
Theme Name: Maze Network
Theme URI: https://mazenetwork.dk
Author: Maze Network
Description: Simpel one-page WordPress hjemmeside til Maze Network.
Version: 1.0
Text Domain: maze-network
*/

:root {
  --dark: #1f1f1f;
  --blue: #2F9ED8;
  --light: #f5f7f9;
  --text: #334155;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; background: var(--light); color: var(--dark); line-height: 1.6; }
header { background: var(--white); border-bottom: 1px solid #e2e8f0; padding: 18px 6%; position: sticky; top: 0; z-index: 10; }
.nav { max-width: 1200px; margin: auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.brand { font-weight: 700; letter-spacing: 4px; font-size: 20px; }
.brand span { color: var(--blue); }
nav a { color: var(--dark); text-decoration: none; margin-left: 24px; font-weight: 600; font-size: 14px; }
nav a:hover { color: var(--blue); }
.hero { background: var(--white); padding: 90px 6%; }
.hero-inner { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.label { color: var(--blue); text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
h1 { font-size: 52px; line-height: 1.1; margin-bottom: 24px; }
.hero p { font-size: 19px; color: var(--text); max-width: 650px; margin-bottom: 32px; }
.buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-block; background: var(--blue); color: var(--white); padding: 14px 24px; border-radius: 14px; text-decoration: none; font-weight: 700; }
.btn.secondary { background: var(--white); color: var(--dark); border: 1px solid #cbd5e1; }
.logo-card { background: #111827; color: var(--white); border-radius: 30px; padding: 38px; box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22); text-align: center; }
.binary { font-size: 42px; font-weight: 800; letter-spacing: 16px; margin-bottom: 26px; }
.binary span { color: var(--blue); }
.logo-title { font-size: 30px; font-weight: 800; letter-spacing: 8px; }
.logo-title span { color: var(--blue); }
.tagline { margin-top: 10px; color: #94a3b8; text-transform: uppercase; letter-spacing: 4px; font-size: 12px; }
section { padding: 80px 6%; }
.container { max-width: 1200px; margin: auto; }
h2 { font-size: 38px; line-height: 1.2; margin-bottom: 20px; }
.intro { color: var(--text); font-size: 18px; max-width: 800px; margin-bottom: 42px; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid #e2e8f0; border-radius: 24px; padding: 28px; box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04); }
.icon { width: 46px; height: 46px; background: #eaf6fc; color: var(--blue); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 18px; }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--text); }
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.info-box { background: var(--light); border: 1px solid #e2e8f0; border-radius: 26px; padding: 30px; }
.small-box { background: var(--white); border-radius: 18px; padding: 20px; margin-top: 16px; }
.contact-box { background: #111827; color: var(--white); border-radius: 30px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact-card { background: var(--white); color: var(--dark); border-radius: 24px; padding: 28px; }
.contact-card p { margin-bottom: 10px; color: var(--text); }
footer { background: var(--white); border-top: 1px solid #e2e8f0; padding: 26px 6%; color: #64748b; font-size: 14px; }
.footer-inner { max-width: 1200px; margin: auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .hero-inner, .about-grid, .contact-box { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  h1 { font-size: 40px; }
  nav { display: none; }
  .binary { font-size: 30px; letter-spacing: 10px; }
}
