﻿/* SURGICAL AESTHETICS OVERRIDE - ULTIMATE FIX */
:root {
  --background-color: #000000 !important;
  --surface-color: #050505 !important;
  --default-color: #b0b0b0 !important;
  --heading-color: #ffffff !important;
  --accent-color: #00e5ff !important;
  --accent-secondary: #00b8cc !important;
}

/* 1. FORCE GLOBAL BLACK */
body,
html,
.main,
.section,
header,
footer,
article,
aside {
  background-color: #000000 !important;
  background-image: none !important;
  color: #ffffff !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

section,
.section {
  padding: 40px 0 !important;
}

/* 2. NAVBAR REPAIR */
.header {
  background: rgba(10, 10, 10, 0.95) !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.navmenu a {
  font-weight: 500 !important;
  color: #ffffff !important;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--accent-color) !important;
}

/* 3. SCROLL FIX */
html {
  scroll-padding-top: 120px !important;
}

/* 4. BOOTSTRAP KILLER (THE FIX FOR THE BLOG) */
/* Reset all colored backgrounds to Dark Neutral with Cyan Border */
.bg-primary,
.bg-secondary,
.bg-success,
.bg-danger,
.bg-warning,
.bg-info,
.bg-dark,
.bg-light,
.bg-white {
  background-color: rgba(15, 20, 25, 1) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  background-image: none !important;
}

/* Badges = Cyan Accent with BLACK TEXT (Fix Visibility) */
.badge,
.badge.bg-dark,
.badge.bg-secondary,
.badge.bg-primary,
.badge.bg-info {
  background-color: var(--accent-color) !important;
  color: #000000 !important;
  border: none !important;
  text-shadow: none !important;
  font-weight: 700 !important;
}

/* Colored Text (Fix) */
.text-primary,
.text-success,
.text-danger,
.text-warning,
.text-info,
.text-dark {
  color: var(--accent-color) !important;
}

/* FORCE GREY on muted text, including descriptions and meta */
.text-muted,
.text-light,
.text-secondary,
.text-white-50,
.post-meta,
.post-meta span,
.lead {
  color: #cccccc !important;
  opacity: 1 !important;
  background: none !important;
  -webkit-text-fill-color: #cccccc !important;
}

/* FORCE ICONS TO BE CYAN (No more pink icons) */
i,
.bi,
.post-meta i {
  color: var(--accent-color) !important;
  background: none !important;
  -webkit-text-fill-color: var(--accent-color) !important;
}

/* Buttons */
.btn,
[class*="btn-"] {
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px solid var(--accent-color) !important;
  color: var(--accent-color) !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  padding: 10px 25px !important;
  box-shadow: none !important;
}

.btn:hover,
[class*="btn-"]:hover {
  background: var(--accent-color) !important;
  color: #000000 !important;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5) !important;
}

/* 5. TITLES & CARDS */
.card,
.post-box,
.blog-post-single,
.sidebar,
.sidebar-item,
.icon-box,
.service-item,
.pricing-item,
.blog-post-card {
  background-color: rgba(15, 15, 15, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

/* TITLES: NO PINK ALLOWED */
h1,
h2,
h3,
h4,
h5,
h6,
.sitename,
.post-title,
.entry-title,
.sidebar-title,
.entry-title a,
.post-title a {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  /* Overrides gradient text */
  font-weight: 600 !important;
}

.entry-title a:hover,
.post-title:hover,
.post-title a:hover {
  color: var(--accent-color) !important;
  -webkit-text-fill-color: var(--accent-color) !important;
}

/* Inputs */
input,
textarea,
select,
.form-control {
  background: #111 !important;
  border: 1px solid #333 !important;
  color: #fff !important;
  border-radius: 0 !important;
}

/* Links Global */
a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

/* Section Titles */
.section-title h2 {
  border-bottom: 2px solid var(--accent-color) !important;
}

/* 6. REMOVE SHARE BUTTONS */
.post-share {
  display: none !important;
}

/* 7. RECENT POSTS / BLOG LIST FIXES */
.post-category {
  background-color: var(--accent-color) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  border-radius: 0 !important;
}

.post-excerpt {
  color: #bbbbbb !important;
}

.read-more,
.read-more i {
  color: var(--accent-color) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
}

.read-more:hover {
  color: #ffffff !important;
}

/* 8. SIDEBAR WIDGETS (RECENT POSTS, CATEGORIES) EXPLICIT FIX */
.sidebar-widget {
  background-color: rgba(15, 15, 15, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 20px !important;
  margin-bottom: 30px !important;
}

.widget-title {
  color: #ffffff !important;
  border-bottom: 1px solid var(--accent-color) !important;
}

.recent-post-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
}

.recent-post-item h6 {
  color: #ffffff !important;
  font-weight: 600 !important;
}

.recent-post-item:hover h6 {
  color: var(--accent-color) !important;
}

/* TARGETING THE OFFENDING PINK DATE */
.recent-post-item .post-date,
.sidebar-widget .post-date,
.recent-post-link span,
time {
  color: #bbbbbb !important;
  /* Force Grey */
  font-size: 0.85rem !important;
  display: block !important;
  background: none !important;
  -webkit-text-fill-color: #bbbbbb !important;
}

.recent-post-item .post-date i,
.sidebar-widget .post-date i {
  color: var(--accent-color) !important;
}