/*
 Theme Name: Nova Intel GP Child
 Theme URI: https://example.com/
 Description: A GeneratePress child theme with a custom Nova Intel glass-style header and footer.
 Author: OpenAI
 Version: 1.0.0
 Template: generatepress
 Text Domain: nova-intel-gp-child
*/

/* Base variables */
:root {
  --nova-bg: rgba(8, 18, 33, 0.58);
  --nova-bg-strong: rgba(11, 23, 41, 0.72);
  --nova-border: rgba(255, 255, 255, 0.18);
  --nova-text: #f4f8fc;
  --nova-muted: rgba(244, 248, 252, 0.72);
  --nova-accent: #2f7df6;
  --nova-accent-soft: #7dd3fc;
  --nova-radius: 22px;
  --nova-shadow: 0 14px 40px rgba(2, 8, 20, 0.18);
}

.nova-intel-site-header,
.nova-intel-site-footer {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.nova-intel-header-inner,
.nova-intel-footer-inner {
  background: var(--nova-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--nova-border);
  border-radius: var(--nova-radius);
  box-shadow: var(--nova-shadow);
}

.nova-intel-header-inner {
  margin-top: 18px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nova-intel-branding {
  flex: 0 0 auto;
}

.nova-intel-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nova-intel-logo-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
}

.nova-intel-logo-mark svg,
.nova-intel-logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 16px rgba(47, 125, 246, 0.25));
}

.nova-intel-brand-text {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--nova-text);
  text-transform: uppercase;
}

.nova-intel-nav {
  flex: 1 1 auto;
}

.nova-intel-menu,
.nova-intel-menu-fallback {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
}

.nova-intel-menu a,
.nova-intel-menu-fallback a,
.nova-intel-footer-links a,
.nova-intel-footer-card a {
  color: var(--nova-text);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nova-intel-menu a,
.nova-intel-menu-fallback a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.nova-intel-menu a:hover,
.nova-intel-menu-fallback a:hover,
.nova-intel-footer-links a:hover,
.nova-intel-footer-card a:hover {
  color: var(--nova-accent-soft);
  opacity: 1;
}

.nova-intel-menu a:hover,
.nova-intel-menu-fallback a:hover {
  border-color: var(--nova-border);
  background: rgba(255,255,255,0.05);
}

.nova-intel-header-cta {
  flex: 0 0 auto;
}

.nova-intel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.nova-intel-btn:hover {
  color: #fff;
  opacity: 0.92;
}

.nova-intel-footer-inner {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 26px 22px;
}

.nova-intel-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}

.nova-intel-footer-card {
  min-height: 100%;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--nova-border);
  border-radius: 22px;
  color: var(--nova-muted);
}

.nova-intel-footer-title {
  margin-bottom: 12px;
  color: var(--nova-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.95rem;
}

.nova-intel-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nova-intel-footer-links li + li {
  margin-top: 10px;
}

.nova-intel-footer-card p {
  margin: 0 0 12px;
}

.nova-intel-footer-meta {
  opacity: 0.7;
  font-size: 0.92rem;
}

.separate-containers .inside-article,
.one-container .site-content,
#page {
  position: relative;
}

@media (max-width: 1024px) {
  .nova-intel-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nova-intel-nav {
    order: 3;
    width: 100%;
  }

  .nova-intel-menu,
  .nova-intel-menu-fallback {
    justify-content: center;
  }

  .nova-intel-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nova-intel-site-header,
  .nova-intel-site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nova-intel-header-inner,
  .nova-intel-footer-inner {
    border-radius: 18px;
  }

  .nova-intel-header-inner {
    padding: 16px;
    gap: 16px;
  }

  .nova-intel-brand-text {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .nova-intel-menu,
  .nova-intel-menu-fallback {
    gap: 8px;
  }

  .nova-intel-menu a,
  .nova-intel-menu-fallback a {
    padding: 9px 12px;
    min-height: 40px;
    font-size: 0.82rem;
  }

  .nova-intel-footer-grid {
    grid-template-columns: 1fr;
  }

  .nova-intel-footer-card {
    padding: 18px;
    border-radius: 18px;
  }
}
