/* styles.css */

/* Global styles */

:root {
  --bs-primary: #d65b4a;
  --bs-secondary: #ffcf5a;
  --bs-success: #8bea98;
  --bs-primary-rgb: 214, 91, 74;
  --bs-secondary-rgb: 255, 207, 90;
  --bs-success-rgb: 139,234, 152;
  --bs-nav-pills-link-active-color: #f0f0f0;
  --bs-primary-btn-hover: #963b2a;
  --bs-primary-link-hover: #662b2a;

  --bs-primary-dark: #f0a0a0;
  --bs-primary-link-hover-dark: #f66b5a;
}


.container {
  padding-left: 0;
  padding-right: auto;
}

a {
  cursor: pointer;
}

.card-link {
  text-decoration: none; /* Removes underline from links */
  color: inherit; /* Inherits text color from parent */
}

.card-link:hover .card {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3); /* Example shadow effect on hover */
  transform: scale(1.01); /* Slightly scale up the card */
  transition: all 0.1s ease-in-out; /* Smooth transition for the shadow effect */
}

.service-icon {
  background-color: #fff;
  color: #1D809F;
  height: 5.0rem;
  width: 5.0rem;
  display: block;
  line-height: 5.5rem;
  font-size: 1.6rem;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.row-hover:hover {
  .service-icon {
    background-color: var(--bs-secondary);
    transition: all 0.3s ease-in-out; 
  }
  color: #505050;
  transition: all 0.3s ease-in-out; 
}


/* Button styles */

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

.btn-primary:hover {
  background-color: var(--bs-primary-btn-hover);
}


/* Nav styles */

.nav-pills .nav-link.active {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-primary);
}

.nav-link {
  color: var(--bs-primary);
}

.nav-link:hover {
  color: var(--bs-primary-link-hover);
}

.navbar {
  --bs-bg-opacity: 0.8;
}

.bg-dark {
  .nav-pills .nav-link.active {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-primary);
  }
  
  .nav-link {
    color: var(--bs-primary-dark);
  }
  
  .nav-link:hover {
    color: var(--bs-primary-link-hover-dark);
  }
  
}


nav ul {
  list-style: none;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 10px;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
  }
}

@media (max-width: 830px) {
  .footer-article nav ul {
    flex-direction: column;
  }
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

