:root {
  --primary-color: #12664f;
  --secondary-color: #307473;
  --accent-color: #95bf8f;
  --link-hover-color: #d8f3dc;

  --light-color: #d8f3dc;
  --dark-color: #081c15;

  --menu-bg-color: #12664f;
  --menu-txt-color: #95d5b2;

  --foot-bg-color: #12664f;
  --foot-txt-color: #95d5b2;
}

body {
  font-family: "Lato", "Open Sans", Verdana, Tahoma, sans-serif;
  line-height: 1.6;
  background-color: var(--foot-bg-color);
  color: var(--light-color);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}


body#nlp .container {
    max-width: 960px !important;
}

/* body,
html {
    height: 100%;
    background-color: var(--foot-bg-color);
    color: var(--foot-txt-color);
} */

/* #kw-val {
    line-height: 1.4;
    width: 100%;
    text-transform: capitalize;
} */

.navbar {
  background-color: var(--menu-bg-color);
}

.nav-link {
  color: var(--menu-txt-color) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--link-hover-color) !important;
}

.navbar-brand {
  color: var(--menu-txt-color) !important;
  transition: color 0.3s ease;
}

nav.navbar a.navbar-brand h3 {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding-right: 4px;
  line-height: 1;
  transition: color 0.3s ease;
  color: var(--light-color);
  text-transform: capitalize;
  font-family: "Iceland", "Segoe UI", Verdana, Tahoma, sans-serif;
  font-weight: 400;
  font-size: 64px;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
  letter-spacing: -2px;
}

nav.navbar a.navbar-brand:hover h3 {
  color: var(--accent-color) !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Footer */

footer {
  background-color: var(--foot-bg-color);
  color: var(--foot-txt-color);
}

footer a {
  color: var(--foot-txt-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a.foot-link,
.footer a.nav-link {
  color: var(--foot-txt-color) !important;
  transition: color 0.3s ease;
}

.footer a.foot-link:hover,
.footer a.nav-link:hover {
  color: var(--link-hover-color) !important;
}

/* BUTTONS */

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-download {
  background-color: white;
  color: var(--secondary-color);
  font-weight: bold;
  padding: 15px 30px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* HERO */

.hero {
  background-color: var(--primary-color);
  color: var(--light-color);
  background: linear-gradient(0deg, var(--secondary-color), var(--primary-color));
}

/* Features */

.features {
  color: var(--primary-color);
  background: white;
}

.features h3 {
  font-size: 28px;
  font-weight: 700;
  position: relative;
}

.features h3:after {
  content: "";
  background: var(--primary-color);
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
}

.features .icon-box i {
  color: var(--primary-color);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.features .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
}

.features .icon-box p {
  line-height: 22px;
  font-size: 18px;
  margin-bottom: 0;
}

/* Features Cards */

.feature-card {
  background-color: white;
  color: var(--dark-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Download Section */

.download-section {
  background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
  color: white;
}

/* OVERLAY */

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

#arrow {
  display: none;
  position: fixed;
  top: -267px;
  right: 1%;
  width: 200px;
  height: 267px;
  z-index: 9999;
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
}

/* OTHER PAGES */

.contact-section {
  background-color: #f2f4f3;
  color: var(--dark-color);
}

.uninstall-section {
  background-color: #f2f4f3;
  color: var(--dark-color);
}

.thanks-section {
  background-color: #f2f4f3;
  color: var(--dark-color);
}

.privacy-section {
  background-color: #f2f4f3;
  color: var(--dark-color);
}

.terms-section {
  background-color: #f2f4f3;
  color: var(--dark-color);
}

/* EXTRAS */

section.hero,
section#features {
  position: relative;
}
section.hero {
  z-index: 4;
}
section#features {
  z-index: 3;
  box-shadow: inset 0 0 15rem rgba(0, 0, 0, 0.3), inset 0 .5rem 1rem rgba(0, 0, 0, 0.3), inset 0 -.5rem 1rem rgba(0, 0, 0, 0.3) !important;
}
