I have built a binomial regression model using the equation:
logit_1 <- glm(past_adl_binary~., family = binomial(link = "cloglog"),
data = newdata)
The outcome of the model is as follows: 
Can anyone help me interpret the outcome of this model? I understand that all of the coefficients are significant apart from sunangle.
Can I use this equation (100*exp(parameter estimate)-1) to calculate the increase/ decrease in percent probability of my y-variable (1 or 0) changing based on my predictor variables? For example, for habitat_categoryONDEEP: 100*(exp(-0.173)-1) = -15.886. Would this suggest that a habitat category of ONDEEP decreases the probability of my y-variable being 1 by 15.9%, compared to the reference category?