/* ── List My Stays — Header CSS ── */

/*.lms-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease;
}

.lms-header.lms-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}*/

.lms-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}

.lms-header.lms-scrolled {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.lms-hero{
   padding-top: 60px;
}
/* ── Nav bar ── */
.lms-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 24px;
  position: relative;
}

/* ── Logo ── */
.lms-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.lms-logo img { height: 44px; width: auto; }
.lms-logo-mark svg { width: 44px; height: 44px; }
.lms-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.lms-brand { font-size: 1.15rem; font-weight: 700; color: #1a1a2e; letter-spacing: -0.3px; }
.lms-tag   { font-size: 0.72rem; font-weight: 500; color: #ff6b1a; letter-spacing: 0.3px; }

/* ── Nav links ── */
.lms-nav-links {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lms-nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.93rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.lms-nav-links li a:hover,
.lms-nav-links li.current-menu-item > a {
  color: #ff6b1a;
  background: rgba(255,107,26,0.07);
}

/* ── CTA Button ── */
.lms-btn-primary {
  
    background: linear-gradient(90deg, #ff7a1a 0%, #ff5e1a 100%);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 107, 26, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.lms-btn-primary:hover { background: #e65500; transform: translateY(-1px); }

/* ── Hamburger ── */
.lms-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.lms-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.lms-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lms-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lms-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.lms-mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.lms-mobile-menu.lms-open { display: block; }

.lms-mobile-links {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.lms-mobile-links li a {
  display: block;
  padding: 11px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
}
.lms-mobile-links li a:hover { background: rgba(255,107,26,0.07); color: #ff6b1a; }
.lms-btn-mobile { display: block; text-align: center; width: 100%; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .lms-hamburger { display: flex; }
  .lms-nav-links,
  .lms-nav > .lms-btn-primary { display: none; }
}
