/*
Theme Name: Desa Biru
Theme URI: https://dnpsuarsana.my.id
Author: OpenClaw Assistant
Description: Tema modern clean untuk website profil desa
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: desa-biru
*/

:root {
  --primary: #0ea5e9;
  --text: #1f2937;
  --white: #ffffff;
  --gray: #f3f4f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

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

header {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.hero-slider {
  height: 500px;
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-slider h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-slider p {
  font-size: 20px;
  opacity: 0.9;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

footer {
  background: #111827;
  color: var(--white);
  padding: 50px 0 20px;
  text-align: center;
}

