/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* host-grotesk-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Host Grotesk';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/host-grotesk-v5-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-300italic - latin */
@font-face {
  font-family: 'Host Grotesk';
  font-style: italic;
  font-weight: 300;
  src: url('fonts/host-grotesk-v5-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-regular - latin */
@font-face {
  font-family: 'Host Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/host-grotesk-v5-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-italic - latin */
@font-face {
  font-family: 'Host Grotesk';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/host-grotesk-v5-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-700 - latin */
@font-face {
  font-family: 'Host Grotesk';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/host-grotesk-v5-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-800 - latin */
@font-face {
  font-family: 'Host Grotesk';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/host-grotesk-v5-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Verbergen buiten openingstijden */
#tijdElement.is-hidden {
  display: none;
}

/* Layout */
#tijdElement {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}

#tijdElement a, #tijdElement span{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

#tijdElement .beam{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  transform: translateZ(0); /* voorkomt soms schokkerige animatie */
  animation: nosLivePulse 3s ease-out infinite;
}

@keyframes nosLivePulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(34,197,94,.55);
    opacity: 1;
  }
  60% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(34,197,94,0);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
    opacity: 1;
  }
}

/** FOOTER STYLES **/

.wp-classic-menu-block ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

