/*
Theme Name: Maroota Prime Premium
Theme URI: https://maroota-prime.de
Author: Maroota Prime eG
Author URI: https://maroota-prime.de
Description: Premium WordPress Theme (Yellow/Grey/Black) for a Tech-Holding & IT-Consulting cooperative.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: maroota-prime-premium
*/

:root{
  --bg:#0b0b0b;
  --bg2:#111111;
  --card:#151515;
  --text:#eaeaea;
  --muted:#bdbdbd;
  --line:#2a2a2a;
  --yellow:#ffd400;
  --yellow2:#ffea63;
  --shadow: 0 12px 35px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f2f2f2;
  color:#111;
}
a{color:inherit}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,11,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand-mark{
  width:40px; height:40px; border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, var(--yellow2), var(--yellow));
  box-shadow: 0 8px 18px rgba(255,212,0,.18);
}
.brand-title{
  color: var(--text);
  font-weight: 800;
  letter-spacing: .3px;
  line-height: 1.1;
}
.brand-sub{
  display:block;
  font-weight: 600;
  color: rgba(234,234,234,.72);
  font-size: 12px;
  margin-top: 2px;
}

.primary-nav ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap: 14px; flex-wrap: wrap;
}
.primary-nav a{
  color: rgba(234,234,234,.86);
  text-decoration:none;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 12px;
}
.primary-nav a:hover{
  color: var(--yellow);
  background: rgba(255,212,0,.08);
}

.hero{
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.95)), url('assets/hero.jpg') center/cover no-repeat;
  color: var(--text);
  padding: 92px 18px 70px;
}
.hero-inner{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  letter-spacing: .4px;
  color: rgba(234,234,234,.9);
  background: rgba(255,212,0,.10);
  border: 1px solid rgba(255,212,0,.25);
  padding: 8px 12px;
  border-radius: 999px;
}
.kicker-dot{
  width:10px;height:10px;border-radius:999px;background:var(--yellow);
  box-shadow: 0 0 0 6px rgba(255,212,0,.12);
}
.hero h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 18px 0 14px;
}
.hero p{
  color: rgba(234,234,234,.84);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 62ch;
}
.hero-ctas{display:flex; gap: 12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  text-decoration:none;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: var(--yellow);
  color: #0b0b0b;
  box-shadow: 0 12px 28px rgba(255,212,0,.18);
}
.btn-primary:hover{filter:brightness(1.05)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover{border-color: rgba(255,212,0,.35); color: var(--yellow)}

.hero-card{
  background: rgba(21,21,21,.7);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 14px;
}
.stat b{display:block; color: var(--yellow); font-size: 20px}
.stat span{color: rgba(234,234,234,.78); font-weight:700}

.section{ padding: 76px 18px; }
.section-inner{ max-width: var(--max); margin: 0 auto; }
.h2{ font-size: 30px; margin: 0 0 14px; letter-spacing: .2px; }
.lead{ color:#333; font-size: 17px; line-height:1.7; max-width: 80ch; }

.cards{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background:#fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.card h3{margin: 10px 0 8px}
.card p{margin:0; color:#444; line-height:1.6}
.icon{
  width: 34px;height: 34px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,212,0,.16);
  color: #000;
}

.split{
  margin-top: 28px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.panel{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid #e8e8e8;
  background:#fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.panel .pad{padding: 18px}
.panel img{width:100%; height: 260px; object-fit: cover; display:block}

.dark-band{
  background: linear-gradient(180deg, #0b0b0b, #121212);
  color: var(--text);
}
.dark-band .lead{color: rgba(234,234,234,.82)}
.dark-cards .card{
  background: rgba(21,21,21,.85);
  border-color: rgba(255,255,255,.08);
  color: var(--text);
}
.dark-cards .card p{color: rgba(234,234,234,.78)}

.form{ display:grid; gap: 12px; margin-top: 18px; }
.input, .textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #dedede;
  font-size: 16px;
}
.textarea{min-height: 150px; resize: vertical}
.notice{
  background: rgba(255,212,0,.14);
  border: 1px solid rgba(255,212,0,.35);
  padding: 12px 14px;
  border-radius: 14px;
  color: #111;
  margin-top: 14px;
}

.site-footer{
  background: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.95)), url('assets/footer.jpg') center/cover no-repeat;
  color: rgba(234,234,234,.86);
  padding: 52px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-inner a{color: var(--yellow); text-decoration:none; font-weight:800}
.small{font-size: 13px; color: rgba(234,234,234,.72)}

@media (max-width: 920px){
  .hero-inner{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
}
