/* (c) 2025  Bea Molar */
* {
  box-sizing: border-box;
}
body {
  font-family: "IBM Plex Sans", Arial, Helvetica, sans-serif;
  background-color: #f2f4f7;
}
/* navigation bar */

.zk-navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: #f0f0f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 7000;
}
.zk-nav-left {
  margin-left: 5%;
  display: inline-flex;
  align-items: center;
  height: 100%;
  width: fit-content;
  float: left;
}
.zk-nav-home {
  margin: 5px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  font-family: "DM Serif Display", Arial, serif;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 8px;
  color: #81c784;
}
.zk-nav-home:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.zk-nav-logo {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.zk-nav-right {
  margin-right: 5%;
  display: inline-flex;
  align-items: center;
  height: 100%;
  width: fit-content;
  float: right;
}
.zk-nav-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.zk-nav-right ul li {
  display: inline;
}
.zk-nav-link {
  margin: 6px;
  padding: 10px 8px;
  display: inline-block;
  font-size: 0.9em;
  text-decoration: none;
  border-radius: 8px;
  color: #a1887f;
}
.zk-nav-link:hover {
  background-color: rgba(46, 74, 35, 0.1);
}

/* main contents */
.zk-main {
  min-height: 800px;
}
.zk-hidden {
  display: none !important;
}
.zk-cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #00000080;
  z-index: 8000;
}
.zk-cookie-box {
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 30px;
  padding: 20px;
  width: 400px;
  max-width: Calc(100% - 60px);
  font-size: 0.9em;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  z-index: 9000;
}

.zk-cookie-x {
  position: absolute;
  right: 0;
  margin: 0 20px;
  line-height: 1.5em;
  cursor: pointer;
}
.zk-cookie-x:hover {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.zk-cookie-header {
  font-weight: bold;
  line-height: 1.5em;
}
.zk-cookie-actions {
  margin: 25px 0 8px;
  text-align: right;
}
.zk-cookie-action {
  padding: 10px 15px;
  width: 100px;
  display: inline;
  font-size: 0.9em;
  border-radius: 3px;
  cursor: pointer;
}

.zk-cookie-link {
  text-decoration: none;
}
.zk-cookie-more {
  color: #3f7d58;
}
.zk-cookie-more:hover {
  margin: 0 0 0 5px;
  text-decoration: underline;
}
.zk-cookie-ok {
  margin: 0 0 0 5px;
  color: #fff;
  background-color: #a1887f;
}
.zk-cookie-ok:hover {
  margin: 0 0 0 5px;
  color: #fff;
  background-color: #a1887fcc; /* append cc for opacity */
}

/* copyright */
.zk-footer-area {
  width: 100%;
  padding: 10px 0;
  font-size: 0.8em;
  text-align: center;
  color: #666;
}
.zk-footer-links a {
  font-weight: bold;
  text-decoration: none;
  color: #666;
}
.zk-footer-copyright {
  margin-top: 5px;
}
