@import url(./styles/nav.css);
@import url(./styles/home-page.css);
@import url(./styles/services-page.css);
@import url(./styles/about.css);
@import url(./styles/contact.css);

:root {
    --primary-color: #2C565C;
    --primary-color_eighty-opacity: #2C565CCC;
    --primary-color_fifty-opacity: #2C565C80;
    --primary-color_thirty-opacity: #2C565C4D;
    --primary-color_ten-opacity: #2C565C1A;
    --secondary-color: #9EC9D0;
    --aux-color: #F9A825;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Roboto", sans-serif;
}



/* remove styles */
a {
    text-decoration: none;
    color: none;
}

/* utility styles */
.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.active-link {
    text-decoration: underline;
}

button {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 20px;
    margin: 20px 0px;
    color: var(--primary-color);
    border-radius: 12px;
    background-color: var(--aux-color);
}

button:hover {
    background-color: var(--primary-color);
    color: var(--aux-color);
}


button a {
    color: var(--primary-color);
}

/* animations and classes */
/* Slide in from the left */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from the right */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility classes to apply them */
.slide-in-left, .slide-in-right {
  opacity: 0;
  transform: translateX(0);
}

.slide-in-left.in-view {
  animation: slideInLeft 2s ease forwards;
}

.slide-in-right.in-view {
  animation: slideInRight 0.8s ease forwards;
}
