/* --- HEADER & DESKTOP NAVIGATION --- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
#main-header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--text-dark);
}
.desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.desktop-nav ul li {
  margin-left: 30px;
}
.desktop-nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 400;
  transition: color 0.3s ease;
}
.desktop-nav ul li a:hover {
  color: var(--accent-color);
}
.nav-cta {
  background: var(--accent-color);
  color: white !important;
  padding: 8px 20px;
  border-radius: 20px;
  transition: background 0.3s ease;
}
.nav-cta:hover {
  background: #d1758f;
}