/*
Theme Name: Tema Saya
Theme URI: https://example.com
Author: Ahmad Wahyuni
Author URI: https://example.com
Description: Theme WordPress custom yang rapi dan terstruktur
Version: 1.0.0
Text Domain: tema-saya
*/

:root {
  --primary: #2563eb;
  --dark: #0f172a;
  --light: #f8fafc;
  --text: #334155;
}

* {
  box-sizing: border-box;
}

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

a { text-decoration: none; color: inherit; }
.container { width: min(1140px, 92%); margin: 0 auto; }
.site-header, .site-footer { background: white; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.hero { padding: 90px 0; background: linear-gradient(135deg, var(--dark), var(--primary)); color: white; }
.btn-primary { display: inline-block; background: var(--primary); color: white; padding: 12px 22px; border-radius: 12px; }
.section { padding: 70px 0; }
.card { background: white; border-radius: 18px; padding: 24px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); }
