
/* ===================== */
/* NAVBAR */
/* ===================== */

:root {
  --navbar-height: 84px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 84px;
  z-index: 100;
  background: #000000;
  border-bottom: 1px solid #141414;
  padding: 0 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 600;

  color: #c2baac;

  background: #000000;
  padding: 10px 18px;
  height: 100%;
  min-height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo-image {
  height: 4.8rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #c2baac;

  font-size: 1.5rem;
  letter-spacing: 1px;

  transition: 0.3s ease;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.nav-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #8b1e2d;
  border-radius: 50%;
  color: #c2baac;
  text-decoration: none;
  font-size: 1.6rem;
  transition: 0.3s ease;
}

.nav-socials a:hover {
  background: #8b1e2d;
  color: #c2baac;
}

.nav-links a:hover {
  color: #8b1e2d;
  position: relative;
}

.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  transform: none;
  bottom: -32px;
  width: 100%;
  height: 25px;
  background-image: url("images/Page Break_Small1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  z-index: 150;
  pointer-events: none;
}