:root {
  --primary: #5c3cd3;
  --primary-hover: #4a2ec2;
  --primary-subtle: #f5f3ff;
  --text-dark: #1e1b4b;
  --text-muted: #52525b;
  --border-color: #f1f0f5;
  --bg-page: #f1f0fa;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --radius-pill: 9999px;
  --radius-card: 24px;
  --shadow-nav: 0 14px 40px -10px rgba(92, 60, 211, 0.08), 0 4px 18px rgba(0, 0, 0, 0.04);
}
.main-header-full {
  background: #ffffff;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  box-sizing: border-box;
}
.mobile-auth-link { display: none; }
.nav-wrapper { width: 100%; max-width: 1420px; margin: 0 auto; padding: 0 16px; box-sizing: border-box; }
.navbar-content { padding: 12px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-symbol { height: 38px; color: var(--primary); display: flex; align-items: center; justify-content: center; }
.brand-symbol svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; }
.brand-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.01em; line-height: 1.1; }
.brand-subtitle { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-link-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); position: relative; padding: 4px 6px 8px; transition: color 0.2s; }
.nav-link-item i { width: 18px; height: 18px; stroke-width: 2.1px; }
.nav-link-item:hover { color: var(--primary); }
.nav-link-item.active { color: var(--primary); }
.nav-link-item.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px; background: var(--primary); border-radius: 2px; }
.nav-search { flex: 1; max-width: 270px; background: #f7f6fd; border-radius: var(--radius-pill); display: flex; align-items: center; padding: 8px 14px; gap: 8px; border: 1px solid transparent; transition: all 0.2s; }
.nav-search:focus-within { background: #ffffff; border-color: #c7d2fe; box-shadow: 0 0 0 3px rgba(92, 60, 211, 0.08); }
.nav-search i { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.nav-search input { border: none; background: transparent; font-size: 0.76rem; color: var(--text-dark); font-family: inherit; width: 100%; outline: none; }
.nav-search input::placeholder { color: #a1a1aa; }
.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.divider-v { width: 1px; height: 28px; background-color: var(--border-color); }
.currency-selector { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); background: none; border: none; cursor: pointer; padding: 4px 6px; border-radius: 6px; }
.currency-selector i { width: 17px; height: 17px; color: var(--text-muted); }
.user-auth-btn { display: flex; align-items: center; gap: 10px; text-decoration: none; background: none; border: none; cursor: pointer; text-align: left; }
.user-avatar-circle { width: 32px; height: 32px; border-radius: 50%; background: var(--primary-subtle); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.user-avatar-circle i { width: 17px; height: 17px; }
.user-auth-labels { display: flex; flex-direction: column; }
.user-auth-labels .label-primary { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); line-height: 1.1; }
.user-auth-labels .label-secondary { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }
.btn-book-now { background: linear-gradient(135deg, #6742e8 0%, #4b26c7 100%); color: #ffffff; padding: 11px 22px; border-radius: var(--radius-pill); font-size: 0.84rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border: none; cursor: pointer; box-shadow: 0 4px 14px rgba(92, 60, 211, 0.3); transition: transform 0.15s ease, box-shadow 0.15s ease; white-space: nowrap; }
.btn-book-now:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(92, 60, 211, 0.4); }
.mobile-menu-toggle { display: none; background: none; border: none; color: var(--text-dark); cursor: pointer; padding: 6px; }
@media (max-width: 1180px) {
  .nav-menu { gap: 12px; }
  .nav-search { max-width: 200px; }
  .user-auth-labels { display: none; }
}
@media (max-width: 992px) {
  .navbar-content { padding: 14px 0; min-height: 60px; justify-content: flex-end; }
  .nav-search, .currency-selector, .divider-v { display: none; }
  .mobile-menu-toggle { display: block; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
  .nav-brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); margin: 0; }
  .nav-actions { margin-left: auto; align-items: center; }
  .user-auth-labels { display: flex; }
  .user-auth-labels .label-secondary { display: none; }
  .nav-menu { display: none; position: absolute; top: calc(100% + 12px); left: 0; right: 0; background: #ffffff; border-radius: 20px; box-shadow: 0 16px 36px rgba(0,0,0,0.08); padding: 20px 10px; border: 1px solid var(--border-color); }
  .nav-menu.is-open { display: grid; grid-template-columns: repeat(4, 1fr); row-gap: 20px; column-gap: 8px; justify-items: center; align-items: start; }
  .mobile-auth-link { display: none; } /* hide this again since we show profile in header */
}
@media (max-width: 600px) {
  .brand-text { display: none; }
  .btn-book-now { display: none; } /* Hide book button to keep just profile on right */
}
