header {
  width: 100%;
  height: 150px;
  background: none;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: transparent !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: none;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}
.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right a {
  margin: 0 10px;
  text-decoration: none;
  color: #ebb577;
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav .logo {
  width: 100px;
  height: 100px;
  color: linear-gradient(to right, #ba893c, #ffe4ba 69%, #503e22 100%);
}
footer {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 20px 0 10px;
}

footer a {
  font-size: 12px;
  color: #c5a47e;
  letter-spacing: 2px;
  line-height: 24px;
  margin: 0px 10px;
  text-decoration: none;
  cursor: pointer;
}
.row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}

.footer {
  font-size: 12px;
  color: rgb(66, 72, 90);
  letter-spacing: 1px;
  text-align: center;
  line-height: 20px;
}
:root {
  --primary-color: #c5a47e;
  --dark-bg: #262736;
  --secondary-bg: #2d2d2d;
}

body {
  background: var(--dark-bg);
  color: white;
}

.navbar {
  background: transparent !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: none;
}

.logo {
  height: 50px;
  filter: drop-shadow(0 0 5px rgba(197, 164, 126, 0.5));
}

.nav-link {
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.modal-content {
  border: 1px solid var(--primary-color);
}

.form-control {
  border: 1px solid var(--primary-color);
}

.form-control:focus {
  background: var(--secondary-bg);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(197, 164, 126, 0.25);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  background: #b29142;
}

.invalid-feedback {
  color: #ff6b6b;
}

.modal-bg-image {
  background: url("../images/auth_bg.png") no-repeat center center;
  background-size: cover;
}

.hero {
  margin-top: 0;
}
