@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ══════════════════════════════════════════════════════════════════
   TOKENS (Purr & Plate Theme)
══════════════════════════════════════════════════════════════════ */
:root {
  --b-dark:    #1a2535;   
  --b-mid:     #2e3f58;   
  --b-accent:  #6b8cae;   
  --b-soft:    #9ab3cc;   
  --b-sand:    #f4ede0;   
  --b-linen:   #ede4d3;   
  --b-cream:   #fdf9f3;   
  --b-text:    #1a2535;   
  --b-body:    #3d4f60;   
}

* {
  box-sizing: border-box;
}

/* ── Navbar ── */
.lux-nav {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  background: rgba(26, 37, 53, 0.97); /* Deep dusk navy */
  border-bottom: 1px solid rgba(107, 140, 174, 0.2); /* Dusty blue border */
  transition: box-shadow 0.3s ease;
}

.lux-nav::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(107, 140, 174, 0.4), transparent);
}

.lux-nav.scrolled {
  box-shadow: 0 4px 24px rgba(26, 37, 53, 0.6);
}

.lux-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Brand ── */
.lux-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.lux-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid rgba(107, 140, 174, 0.4);
  padding: 2px;
  transition: border-color 0.3s;
}

.lux-brand:hover .lux-brand-logo {
  border-color: var(--b-accent);
}

.lux-brand-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--b-sand);
  white-space: nowrap;
  transition: color 0.3s;
  display: none;
}

/* ── Desktop Links ── */
.lux-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lux-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--b-soft);
  text-decoration: none;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}

.lux-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--b-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.lux-links a:hover,
.lux-links a.active {
  color: var(--b-sand);
}

.lux-links a:hover::after,
.lux-links a.active::after {
  transform: scaleX(1);
}

/* ── Phone CTA button ── */
.lux-phone-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--b-soft) !important;
  text-decoration: none;
  border: 1px solid rgba(154, 179, 204, 0.3);
  padding: 8px 14px !important;
  border-radius: 2px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.lux-phone-btn::after {
  display: none !important;
}

.lux-phone-btn:hover {
  background: rgba(244, 237, 224, 0.05);
  border-color: var(--b-sand);
  color: var(--b-sand) !important;
}

/* ── Book Now Button ── */
.lux-book-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--b-dark) !important;
  background: var(--b-accent);
  text-decoration: none;
  border: 1px solid var(--b-accent);
  padding: 8px 16px !important;
  border-radius: 4px; /* Softened from 2px for cat cafe theme */
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
  white-space: nowrap;
}

.lux-book-btn::after {
  display: none !important;
}

.lux-book-btn:hover {
  background: var(--b-soft);
  border-color: var(--b-soft);
  color: var(--b-dark) !important;
}

.lux-book-btn:active {
  transform: scale(0.97);
}

/* ── Cart Button ── */
.lux-cart-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--b-sand) !important;
  background: rgba(244, 237, 224, 0.06);
  text-decoration: none;
  border: 1px solid rgba(107, 140, 174, 0.35);
  padding: 8px 10px !important;
  border-radius: 4px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
  white-space: nowrap;
  position: relative;
}

.lux-cart-btn::after {
  display: none !important;
}

.lux-cart-btn:hover {
  background: rgba(107, 140, 174, 0.15);
  border-color: var(--b-accent);
  color: #ffffff !important;
}

.lux-cart-btn:active {
  transform: scale(0.97);
}

.lux-cart-label {
  display: none;
}

.lux-cart-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--b-accent);
  color: var(--b-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

/* ── Mobile Hamburger ── */
.lux-hamburger {
  display: none;
  background: transparent;
  border: 1px solid rgba(107, 140, 174, 0.4);
  color: var(--b-accent);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}

.lux-hamburger:hover {
  background: rgba(107, 140, 174, 0.15);
}

/* ── Overlay ── */
.lux-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(2px);
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lux-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── Mobile Drawer ── */
.lux-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--b-dark);
  border-right: 1px solid rgba(107, 140, 174, 0.15);
  z-index: 1070;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.lux-drawer.open {
  transform: translateX(0);
}

.lux-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--b-accent), transparent 60%);
}

.lux-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(107, 140, 174, 0.12);
}

.lux-drawer-title {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--b-sand);
}

.lux-drawer-close {
  background: transparent;
  border: 1px solid rgba(107, 140, 174, 0.35);
  color: var(--b-accent);
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.lux-drawer-close:hover {
  background: rgba(107, 140, 174, 0.15);
}

/* ── Drawer Links ── */
.lux-drawer-links {
  padding: 20px 0;
}

.lux-drawer-links a {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--b-sand);
  text-decoration: none;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(107, 140, 174, 0.1);
  transition: color 0.3s, padding-left 0.3s, background 0.3s;
}

.lux-drawer-links a i {
  color: var(--b-accent);
  width: 24px;
  font-size: 1.3rem;
  text-align: center;
}

.lux-drawer-links a:hover,
.lux-drawer-links a.active {
  color: #ffffff;
  padding-left: 32px;
  background: rgba(107, 140, 174, 0.08);
}

/* ── Drawer Book Now ── */
.lux-drawer-links a.lux-drawer-book {
  background: var(--b-accent);
  color: var(--b-dark);
  font-weight: 600;
  margin: 15px 24px;
  border-radius: 8px;
  justify-content: center;
  border: none;
  padding: 15px 24px;
}

.lux-drawer-links a.lux-drawer-book i {
  color: var(--b-dark);
}

.lux-drawer-links a.lux-drawer-book:hover {
  background: var(--b-soft);
  color: var(--b-dark);
  padding-left: 24px; /* Disables slide effect */
}

.lux-drawer-links a.lux-drawer-book:hover i {
  color: var(--b-dark);
}

/* ── Drawer Footer ── */
.lux-drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(107, 140, 174, 0.1);
  margin-top: 8px;
}

.lux-drawer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.lux-drawer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(107, 140, 174, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--b-accent);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.lux-drawer-social a:hover {
  background: var(--b-accent);
  border-color: var(--b-accent);
  color: var(--b-dark);
}

.lux-drawer-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.lux-drawer-info i {
  color: var(--b-accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

.lux-drawer-info span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--b-sand);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .lux-links {
    display: none;
  }

  .lux-hamburger {
    display: flex;
  }

  .lux-nav-inner {
    padding: 0 20px;
  }
}

@media (max-width: 1280px) {
  .lux-phone-btn {
    display: none;
  }
}