/*
Theme Name: GuardianOne Theme
Author: Sujith
Version: 1.0
*/
/*
Theme Name: GuardianOne Theme
*/

:root {
  --color-background-primary: #ffffff;
  --color-background-secondary: #f5f7fa;
  --color-text-primary: #0e1117;
  --color-text-secondary: #3a3f4a;
  --color-text-tertiary: #6b7280;
  --color-border-secondary: rgba(0,0,0,.08);
}

/* HEADER */
.navbar {
  background: white;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.logo { display:flex; align-items:center; gap:8px; }

.shield {
  width:28px; height:28px;
  background:#185FA5;
  border-radius:6px;
  display:flex; align-items:center; justify-content:center;
}

.brand { font-weight:700; }
.brand span { color:#185FA5; }

.nav-items {
  display:flex;
  margin-left:20px;
}

.nav-btn {
  padding:0 12px;
  height:56px;
  background:none;
  border:none;
  cursor:pointer;
}

.nav-right {
  margin-left:auto;
  display:flex;
  gap:8px;
}

.btn-p {
  background:#185FA5;
  color:white;
  border:none;
  padding:6px 14px;
}

.dropdown {
  display:none;
  position:absolute;
  background:white;
  border:1px solid #ddd;
}

.dropdown.open { display:block; }