:root {
  --primary-color: #8b4513;
  --secondary-color: #d2b48c;
  --accent-color: #cd853f;
  --background-color: #f5f5dc;
  --text-color: #4a4a4a;
  --text-light: #6b6b6b;
  --border-color: #e5e5e5;
  --shadow-color: rgba(139, 69, 19, 0.1);
  --gradient-bg: linear-gradient(135deg, #f5f5dc 0%, #f0e68c 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--gradient-bg);
  min-height: 100vh;
  position: relative;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

.header {
  position: relative;
  z-index: 1000;
  background: rgba(245, 245, 220, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.uk-navbar-nav > li > a {
  color: var(--text-color);
  font-weight: 500;
  text-transform: none;
  transition: color 0.3s ease;
}

.uk-navbar-nav > li > a:hover,
.uk-navbar-nav > li.uk-active > a {
  color: var(--primary-color);
}
