:root {
  --text-color: #004269;
  --highlight-color: #00A796;
}

body {
  color: var(--text-color);
}

main.container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}


.navbar-nav .nav-link {
  font-variant: small-caps;
  font-weight: bold;
  color: var(--text-color) !important;
  font-size: 1.25rem;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--highlight-color) !important;
}

footer {
  background-color: #f8f9fa;
  color: var(--text-color) !important;
  border-top: 1px solid rgba(0, 66, 105, 0.1);
}

footer .footer-logo {
  max-height: 300px;
  width: auto;
}

footer .h6 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

footer a {
  color: var(--text-color);
  text-decoration: none;
}

footer a:hover {
  color: var(--highlight-color);
}

.dropdown-item {
  font-variant: small-caps;
  font-weight: bold;
  color: var(--text-color);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
  color: var(--highlight-color);
  background-color: transparent;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}


.btn-primary {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: white;
  border-color: var(--highlight-color);
  color: var(--highlight-color);
}

.btn-outline-primary {
  color: var(--highlight-color);
  border-color: var(--highlight-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
  color: #fff;
}


.max-width-1100 {
  max-width: 1100px;
}

.highlights-box {
  background-color: var(--text-color);
  color: #fff;
  font-weight: 500;
}

.highlights-box h2,
.highlights-box h3 {
  color: #fff;
}

.highlights-box a:not(.btn) {
  color: #fff;
  text-decoration: underline;
}

.highlights-box a:not(.btn):hover {
  font-weight: 700;
  color: #fff;
}

.social-icon-link {
  width: 60px;
  height: 60px;
  background-color: var(--highlight-color);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin-left: 0.5rem;
  transition: background-color 0.3s ease;
}

.social-icon-link:hover,
.social-icon-link:focus {
  background-color: var(--text-color) !important;
}

.social-icon-link i {
  font-size: 2rem;
  color: #fff !important;
}


@media (max-width: 991.98px) {
  .nav-item.dropdown .dropdown-menu {
    display: block;
    position: static;
    float: none;
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background-color: transparent;
  }

  .nav-item.dropdown .dropdown-toggle::after {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .social-icon-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.service-icon {
  font-size: 5.2rem;
  line-height: 1;
  color: var(--highlight-color);
  display: inline-block;
  vertical-align: middle;
}

.icon-stack-heart {
  position: relative;
  display: inline-block;
  font-size: 18rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .icon-stack-heart {
    font-size: 10rem;
  }
}

.icon-stack-heart .fa-heart {
  color: #dc3545; /* Bootstrap danger red */
}

.icon-stack-heart .fa-pen-nib {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.45em;
}

.parallax {
  height: 200px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.parallax-direct {
  background-image: url('/assets/img/copywriting_direct.png');
}

.parallax-email {
  background-image: url('/assets/img/copywriting_email.png');
}

.parallax-online {
  background-image: url('/assets/img/copywriting_online.png');
}

.tilted-photo {
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.tilted-left {
  transform: rotate(-3deg);
}

.tilted-right {
  transform: rotate(3deg);
}

.tilted-photo:hover {
  transform: rotate(0deg) scale(1.02);
}

.nav-btn-cta {
  font-size: 1.25rem;
  padding: 10px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  background-color: var(--highlight-color);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 167, 150, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 1050;
  text-decoration: none !important;
}

.nav-btn-cta:hover {
  background-color: white;
  color: var(--highlight-color);
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 167, 150, 0.4);
  border: 2px solid var(--highlight-color);
  text-decoration: none !important;
}

@media (min-width: 992px) {
  .nav-btn-cta {
    right: calc((100vw - 960px) / 2 + 15px);
  }
}

@media (min-width: 1200px) {
  .nav-btn-cta {
    right: calc((100vw - 1140px) / 2 + 15px);
  }
}

@media (min-width: 1400px) {
  .nav-btn-cta {
    right: calc((100vw - 1320px) / 2 + 15px);
  }
}

@media (max-width: 991.98px) {
  .nav-btn-cta {
    display: none !important;
  }
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--highlight-color);
  color: white !important;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.floating-cta:hover {
  background-color: white;
  color: var(--highlight-color) !important;
  transform: scale(1.05);
  border-color: var(--highlight-color);
}
