/* ============================================
   THE PRINCE SALON — Header & Footer Styles
   ============================================ */

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

/* Hide default theme header/footer */
.site-header, header.site-header, #masthead,
.site-footer, footer.site-footer, #colophon {
  display: none !important;
}

/* ===== PRINCE HEADER ===== */
#ps-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  font-family: 'DM Sans', sans-serif;
  width: 100%;
}
.ps-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  gap: 2rem;
}
.ps-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  line-height: 1;
}
.ps-logo-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1;
}
.ps-logo-mark span { color: #D4AF37; }
.ps-logo-tag {
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
  font-family: 'DM Sans', sans-serif;
}
#ps-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}
#ps-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
#ps-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: #D4AF37;
  transition: width 0.3s ease;
}
#ps-nav a:hover, #ps-nav a.ps-active { color: #FFFFFF; }
#ps-nav a:hover::after, #ps-nav a.ps-active::after { width: 100%; }
.ps-header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.ps-btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  background: #D4AF37;
  color: #111111 !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 2px;
  transition: background 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.ps-btn-book:hover { background: #b8941e; color: #111111 !important; }
.ps-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.ps-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.ps-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ps-hamburger.open span:nth-child(2) { opacity: 0; }
.ps-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#ps-mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  z-index: 9998;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}
#ps-mobile-menu.open { display: block; }
#ps-mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
#ps-mobile-menu a:last-of-type { border-bottom: none; }
#ps-mobile-menu a:hover { color: #D4AF37; }
#ps-mobile-menu .ps-btn-book {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
}

/* ===== PRINCE FOOTER ===== */
#ps-footer {
  background: #0a0a0a;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  margin-top: 0;
}
.ps-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ps-footer-brand .ps-logo-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  text-decoration: none;
}
.ps-footer-brand .ps-logo-mark span { color: #D4AF37; }
.ps-footer-brand .ps-logo-tag {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}
.ps-footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.ps-footer-social { display: flex; gap: 0.5rem; }
.ps-footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
}
.ps-footer-social a:hover { border-color: #D4AF37; color: #D4AF37; }
.ps-footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}
.ps-footer-col a,
.ps-footer-col p {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.65rem;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}
.ps-footer-col a:hover { color: #FFFFFF; }
.ps-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ps-footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}
@media (max-width: 1024px) {
  .ps-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  #ps-nav, #ps-header .ps-btn-book { display: none !important; }
  .ps-hamburger { display: flex !important; }
  .ps-footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .ps-footer-bottom { flex-direction: column; text-align: center; padding: 1.25rem 1.5rem; }
}