/* ===== BASE NAVBAR ===== */
.navbar, .medieval-navbar {
  background: linear-gradient(to bottom, #1a1a1a, #000000);
  border-bottom: 3px solid #c89b3c;
  padding: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
}

/* ===== NAV CONTAINER ===== */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Clickable logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* ===== SITE NAME ===== */
.site-name {
  font-family: "Georgia", "Uncial Antiqua", serif;
  font-size: 22px;
  color: #e6d3a3;
  letter-spacing: 1px;
}

.site-name:hover {
  color: #c89b3c;
  text-shadow: 0 0 6px rgba(200,155,60,0.6);
}

/* ===== NAV MENU ===== */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #e6d3a3;
  font-family: "Georgia", "Uncial Antiqua", serif;
  font-size: 18px;
  padding: 6px 10px;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover */
.nav-menu a:hover {
  color: #c89b3c;
}

/* Active page */
.nav-menu a.active {
  color: #c89b3c;
  border-bottom: 2px solid #c89b3c;
}

/* Underline animation */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #c89b3c;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ===== SEARCH BOX ===== */
.search-box {
  display: flex;
  align-items: center;
  background: #f5e6c8;
  border: 2px solid #c89b3c;
  border-radius: 4px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 6px 10px;
  font-family: Georgia, serif;
  background: transparent;
  outline: none;
}

.search-box button {
  background: #c89b3c;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: #000;
  font-size: 14px;
}

.search-box button:hover {
  background: #a67c2d;
}

/* ===== GENERAL PAGE STYLING ===== */

/* Body */
body {
  margin: 0;
  background: #1a1a1a;
  color: #e6d3a3;
  font-family: Georgia, serif;
}

/* Cards section */
.cards {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}

/* Card box */
.card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #c89b3c;
  border-radius: 8px;
  padding: 20px;
  color: #e6d3a3;
}

/* Headings */
h1, h2, h3 {
  font-family: "Georgia", "Uncial Antiqua", serif;
  color: #c89b3c;
}

/* Links */
a {
  color: #c89b3c;
}

a:hover {
  color: #e6d3a3;
}