/*
Theme Name: focusnet
Author: focusnet
Theme URI: https://www.focusnet.com.au/
Author URI: https://www.focusnet.com.au/
Description: A Wordpress block theme.
Requires at least: 5.9
Tested up to: 6.1
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

*/


@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  position: relative;
  z-index: 10;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideInDown 0.6s ease-in-out forwards;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
background: #fff;
}
