/* ======================================================= */
/* SHANAYA — SHARED STICKY NAVBAR                          */
/* Used by pages that don't import shanaya.css             */
/* ======================================================= */

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: rgba(75, 58, 48, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sticky-inner {
  width: min(1400px, 92%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.sticky-logo img {
  height: 32px;
  width: auto;
}

.sticky-logo h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: white;
}

.sticky-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.sticky-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.sticky-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.sticky-nav a:hover {
  color: white;
}

.sticky-nav a:hover::after {
  width: 100%;
}

.sticky-nav a.nav-active {
  color: #C4AB74;
}

.sticky-nav a.nav-active::after {
  width: 100%;
  background: #C4AB74;
}

.sticky-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-register-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.sticky-register-link:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.sticky-book-btn {
  width: 150px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: white;
  color: black;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.sticky-book-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .sticky-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .sticky-header {
    height: 64px;
  }

  .sticky-logo h2 {
    font-size: 22px;
  }

  .sticky-book-btn {
    width: 100px;
    height: 38px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}
