@import url('fonts.css');
@import url('color.css');
@import url('navigation.css');
@import url('hero.css');
@import url('about.css');
@import url('objective.css');
@import url('contact.css');
@import url('footer.css');

html {
    min-height: 100%;
    position: relative;
}

body {
    font-family: 'BAAC17', sans-serif;
    font-size: 16px;
    color: #000000;
    background-image: url('../images/img-bg.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

background-blur {
    backdrop-filter: blur(50px);
}

em {
    font-style: inherit;
}

#stickyWidget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  background: rgba(207, 207, 207, 0.4);
  backdrop-filter: blur(50px);
  font-family: sans-serif;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#stickyWidget.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}