/* HEADER */
.header {
  position: absolute;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  margin-right: 8px;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* NAV */
.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: #e5e5e5;
  text-decoration: none;
}

.nav a.active {
  color: #fff;
}

/* NAV */
.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.nav a:hover {
  color: #fff;
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d6a84f;
}

/* RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-login {
  border: 1px solid #d6a84f;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-login:hover {
  background: #d6a84f;
  color: #222;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0f2a1d, #1c3b2a);
  color: #ddd;
  margin-top: 20px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer a:hover {
  color: #f2c94c; /* gold */
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  font-size: 13px;
}