/*
Theme Name: DataFidelis
Theme URI: https://datafidelis.io
Author: DataFidelis
Author URI: https://datafidelis.io
Description: Custom landing page theme for DataFidelis.io — Enterprise BI Reports
Version: 1.1.0
License: Private
Text Domain: datafidelis
*/

/* WordPress admin bar offset only — all other CSS is in index.php */
html { margin-top: 0 !important; }
body.admin-bar nav { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar nav { top: 46px !important; }
}
/* POWER BI SECTION */
.pbi-section-wrap {
  background: linear-gradient(180deg, transparent, rgba(0,40,90,0.18), transparent);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.pbi-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 56px;
}
.pbi-header {
  text-align: center;
  margin-bottom: 52px;
}
.pbi-header .section-tag { justify-content: center; }
.pbi-header .section-h2 { max-width: 640px; margin: 0 auto 16px; text-align: center; }
.pbi-header .section-p { max-width: 520px; margin: 0 auto; text-align: center; }

.pbi-frame-outer {
  position: relative;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(0,200,255,0.35), rgba(56,96,255,0.2), rgba(0,200,255,0.1));
  box-shadow: 0 0 0 1px rgba(0,200,255,0.08), 0 40px 120px rgba(0,0,0,0.6), 0 0 80px rgba(0,180,255,0.12);
}
.pbi-frame-inner {
  border-radius: 18px;
  overflow: hidden;
  background: var(--blue-2);
  position: relative;
  aspect-ratio: 16 / 9;
}
.pbi-frame-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.pbi-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 100px;
  background: radial-gradient(ellipse, rgba(0,180,255,0.22) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}
.pbi-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.pbi-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.pbi-meta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
  animation: blink 2.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 960px) {
  .pbi-section { padding: 60px 20px; }
  .pbi-meta { gap: 16px; }
  .pbi-meta-item { font-size: 12px; }
}
@media (max-width: 480px) {
  .pbi-section { padding: 48px 16px; }
  .pbi-meta { flex-direction: column; gap: 12px; align-items: flex-start; padding-left: 4px; }
  .pbi-frame-outer { border-radius: 14px; padding: 2px; }
  .pbi-frame-inner { border-radius: 12px; }
}