/*
Theme Name: Hilton Family Office Clean
Theme URI: https://www.hiltonwealth.com
Author: Hilton Web Team
Description: Minimal dark-navy theme with video hero, top-right dropdown menu, and contact map.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hfo-clean
*/

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; min-height: 100%; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #020617 100%);
  color: #e5e7eb;
  line-height: 1.6;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  z-index: 100;
}

.site-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
}

.site-branding { display: none; }
.brand-link { text-decoration: none; color: #e5e7eb; }

/* Hamburger toggle */
.menu-toggle { display: none; }
.menu-toggle-label { display: flex; flex-direction: column; justify-content: center; gap: 4px; width: 24px; height: 24px; cursor: pointer; }
.menu-toggle-label span { display: block; height: 2px; width: 100%; background: #e5e7eb; border-radius: 2px; }

.site-nav { position: relative; }
.site-nav .primary-menu {
  list-style: none; display: flex; gap: 24px; margin: 0; padding: 0;
  flex-direction: column; align-items: flex-start;
  padding: 10px 14px;
  background: rgba(15,23,42,0.98);
  border-radius: 10px; border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 18px 35px rgba(0,0,0,0.65);
  min-width: 180px;
}
.site-nav .primary-menu li a {
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.06em; color: #e5e7eb; padding: 6px 0;
}
.menu-toggle:not(:checked) ~ .site-nav { display: none; }
.menu-toggle:checked ~ .site-nav { display: block; }
@media (min-width: 769px) {
  .site-nav { position: absolute; top: 100%; right: 24px; margin-top: 10px; }
}
@media (max-width: 768px) {
  .site-header-inner { flex-direction: row; align-items: center; }
  .site-nav { position: absolute; top: 100%; right: 16px; margin-top: 10px; }
}

/* Main */
.site-main { padding-top: 80px; min-height: calc(100vh - 80px - 64px); }

/* Hero with video */
.hfo-front-page .hero { min-height: calc(100vh - 80px - 64px); display: flex; align-items: center; justify-content: center; padding: 0 24px 56px; }
.hero-video { position: relative; overflow: hidden; }
.hero-video-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-video-bg .hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-overlay { position: absolute; inset: 0; background: radial-gradient(circle at top, rgba(15,23,42,0.2), rgba(2,6,23,0.95)); mix-blend-mode: multiply; }
.hero-content { position: relative; z-index: 1; }

.hero-content-minimal {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: calc(100vh - 80px - 64px); flex-direction: column;
}

.hero-title-main {
  font-size: clamp(2.8rem, 6vw, 4rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f9fafb;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: #d1d5db;
  margin-top: 12px;
  letter-spacing: 0.06em;
  font-weight: 400;
  opacity: 0;
  animation: taglineFade 900ms ease-out 200ms forwards;
}

@keyframes taglineFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Default pages */
.default-page .container { max-width: 900px; margin: 0 auto; padding: 40px 24px 64px; }
.page-title { font-size: 1.8rem; margin-bottom: 16px; color: #f9fafb; }
.page-content { font-size: 0.95rem; color: #e5e7eb; }
.page-content p { margin-bottom: 14px; }

/* Contact page side-by-side */
.contact-page { max-width: 1200px; margin: 0 auto; padding: 40px 24px 64px; }
.contact-hero { text-align: center; margin-bottom: 32px; }
.contact-hero h1 { font-size: 2rem; margin-bottom: 6px; color: #f9fafb; }
.contact-hero h2 { font-size: 1rem; margin-bottom: 10px; color: #cbd5f5; }
.contact-hero p { font-size: 0.95rem; color: #9ca3c9; }

.contact-layout-side {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.contact-layout-side .contact-info {
  background: rgba(15, 23, 42, 0.92); border-radius: 18px; padding: 28px 26px; border: 1px solid rgba(148, 163, 184, 0.4);
}
.contact-layout-side .contact-map-wrapper { border-radius: 18px; overflow: hidden; border: 1px solid rgba(148, 163, 184, 0.4); }
.contact-layout-side .contact-map { display: block; width: 100%; height: 400px; }

@media (max-width: 900px) {
  .contact-layout-side { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout-side .contact-map { height: 300px; }
}

/* Footer */
.site-footer { border-top: 1px solid rgba(148, 163, 184, 0.35); background: #020617; padding: 18px 16px 22px; }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-inner p { margin: 0; font-size: 0.8rem; color: #9ca3af; }
