/* ================================================================
   LILA INVESTMENT GROUP — Header & Navigation
   styles/header.css
   ================================================================ */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(242, 191, 193, 0.12);
}

/* ─── LOGO ─── */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  padding-left: 2px;
}

/* ─── DESKTOP NAV ─── */
nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--grad-pink);
  transition: width 0.3s;
}
nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--grad-pink) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: opacity 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--pink-light);
  transition: 0.3s;
}

/* ─── MOBILE FULL-SCREEN MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--carbon);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(120, 76, 88, 0.15) 0%, transparent 70%);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 6px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.close-btn {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
}
.close-btn:hover { color: var(--pink-light); }
