/* Base Styles for NetViper */

/* Ensure full height layout */
html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #000000;
  /* Solid black background */
  color: #ffffff;
  /* Ensures text remains visible */
  overflow-x: hidden;
  overflow-y: auto;
  /* Allows scrolling */
}

/* Typography Improvements */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.container {
  max-width: 960px;
}

/* Header Section (Hero) */
.pricing-header {
  max-width: 700px;
  text-align: center;
  margin: auto;
  padding: 40px 0;
}

/* Main Content */
main {
  flex: 1;
  /* Pushes footer down */
}

/* Navbar Styles */
.navbar {
  background-color: #111;
  /* Dark navbar */
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #ffffff;
}

.navbar-nav .nav-link:hover {
  color: #14e531;
  /* Green highlight on hover */
}

/* Footer Styles */
.footer {
  width: 100%;
  background-color: #222;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  position: relative;
}

.footer a {
  color: #14e531;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn-success {
  background-color: #14e531;
  border-color: #14e531;
}

.btn-success:hover {
  background-color: #11c426;
  border-color: #11c426;
}

/* Hide Honeypot Field */
.honeypot-field {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.text_white {
  color: #ffffff;
}

.text-muted {
  color: #cccccc !important;
}