.navigation-bar
{
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  height: 120px;
  box-sizing: border-box;
}

.navigation-bar a.nav-logo
{
  margin-right: 60px;
}

.navigation-bar a.nav-logo img
{
  height: 120px;
  width: auto;
  display: block;
}

.nav-links
{
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-quote-btn
{
  background: rgb(195, 28, 47);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.desktop-only
{
  margin-left: auto;
}

.nav-quote-btn:hover
{
  background: rgb(160, 20, 36);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.navigation-bar a
{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navigation-bar a button
{
  background: rgb(195, 28, 47);
  border: 2px solid rgb(195, 28, 47);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  width: 100px;
}

.navigation-bar a button.inactive
{
  background: white;
  color: rgb(195, 28, 47);
  border: 2px solid white;
}

.navigation-bar a button.inactive:hover
{
  background: rgb(160, 20, 36);
  color: #fff;
  border: 2px solid rgb(160, 20, 36);
}

.navigation-bar a button:hover
{
  background: rgb(160, 20, 36);
}

.navigation-bar a button.active:hover
{
  background: rgb(195, 28, 47);
}

.hamburger
{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  margin-right: 10px;
}

.hamburger span
{
  display: block;
  width: 26px;
  height: 3px;
  background: rgb(195, 28, 47);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Top bar — rotate to \ */
.hamburger.open span:nth-child(1)
{
  transform: translateY(8px) rotate(45deg);
}

/* Middle bar — fade out */
.hamburger.open span:nth-child(2)
{
  opacity: 0;
  transform: scaleX(0);
}

/* Bottom bar — rotate to / */
.hamburger.open span:nth-child(3)
{
  transform: translateY(-8px) rotate(-45deg);
}