/*
Theme Name: Relax and Stay Custom Theme
Author: JTF Web Design & Development
Version: 1.0
Description: Custom theme for Relax and Stay
*/

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

/* Animations */

.icons-container i {
  opacity: 0.4;
  transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
}

.icons-container i.active {
  opacity: 1;
}

@keyframes highlightGlow {
  0% {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 0 25px rgba(170, 130, 34, 0.7);
  }
  100% {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}

.highlighted {
  animation: highlightGlow 1.5s ease-in-out;
}

@keyframes draw {
  0% {
    stroke-dasharray: 0, 24;
  }
  100% {
    stroke-dasharray: 24, 0;
  }
}

.animate-draw {
  stroke-dasharray: 24, 0;
  animation: draw 0.6s ease-out forwards;
}
