* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body.home {
  height: 100vh;
  background: url("assets/background.jpg") no-repeat center center/cover;
}

.topbar {
  position: relative;
  width: 100%;
  padding: 20px;
}

/* Center top title */
.title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Top right nav */
.nav {
  position: absolute;
  top: 20px;
  right: 20px;
}

.nav a {
  margin-left: 15px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.nav a:hover {
  background: rgba(255,255,255,0.3);
}

/* Simple inner pages */
.page {
  padding: 60px;
  color: black;
  background: white;
  min-height: 100vh;
}