/* ─── DIVINE SIGNS LA — SHARED NAV & FOOTER STYLES ─── */

:root {
  --orange: #FF6B00;
  --neon-orange: #FF8C00;
  --cyan: #00F5FF;
  --purple: #BF00FF;
  --hot-pink: #FF0099;
  --green: #00FF88;
  --bg: #060608;
  --card-bg: #0D0D12;
  --border: rgba(255,255,255,0.07);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* ─── DROPDOWN ─── */
.nav-links li { position: relative; }
.nav-dropdown-toggle {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 0; font-family: inherit;
}
.nav-dropdown-toggle::after,
.nav-links li .nav-dropdown-toggle::after {
  content: '▾' !important;
  font-size: 0.85rem !important;
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transition: transform 0.3s;
}
.nav-links li:hover .nav-dropdown-toggle { color: #fff; }
.nav-links li:hover .nav-dropdown-toggle::after { transform: rotate(180deg); -webkit-text-fill-color: #fff; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 0 10px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { color: var(--orange); background: rgba(255,107,0,0.06); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--hot-pink)) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  -webkit-text-fill-color: #fff !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(255,107,0,0.5) !important;
}
.nav-cta::after { display: none !important; }

/* ─── FLOATING CTA ─── */
.float-cta {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 200;
  background: linear-gradient(135deg, var(--orange), var(--hot-pink));
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,107,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  animation: float-bounce 3s ease-in-out infinite;
  font-family: 'Inter', sans-serif;
}
.float-cta:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 48px rgba(255,107,0,0.65);
}
@keyframes float-bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─── FOOTER ─── */
footer {
  position: relative; z-index: 1;
  background: #030305;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 60px 60px 36px;
  font-family: 'Inter', sans-serif;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--orange), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
  isolation: isolate;
}
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.45);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.footer-webdesign {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  text-align: center;
  flex: 1;
}
.footer-webdesign a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-webdesign a:hover { color: var(--hot-pink); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-link:hover {
  background: rgba(255,107,0,0.12);
  border-color: var(--orange);
  color: var(--orange);
}

/* ─── LIGHT SWITCH ─── */
.light-switch-btn {
  position: fixed;
  bottom: 32px; left: 32px;
  z-index: 300;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 1.15rem;
  backdrop-filter: blur(12px);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  display: flex; align-items: center; gap: 7px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.light-switch-btn:hover {
  transform: scale(1.07);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

/* ─── LIGHT MODE ─── */
html.light-mode {
  filter: invert(1);
}
html.light-mode img,
html.light-mode video,
html.light-mode iframe {
  filter: invert(1);
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; z-index: 300; }
  .nav-hamburger { display: flex; z-index: 301; }
  .nav-links {
    display: none;
    position: fixed;
    top: 88px; left: 0; right: 0; bottom: 0;
    background: #060608;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 299;
    overflow-y: auto;
    padding: 32px 24px 80px;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { text-align: center; width: 100%; }
  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: block;
    padding: 10px 0;
    color: rgba(255,255,255,0.85);
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    display: inline-flex !important;
    margin-top: 8px;
    padding: 14px 36px !important;
    font-size: 1rem !important;
  }
  .nav-dropdown { display: none !important; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 24px 28px; }
  .float-cta { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 0.8rem; }
  .light-switch-btn { bottom: 20px; left: 20px; padding: 8px 14px; }
}
