/* In css/local-fonts.css */

/* Tinos Regular (400 weight) */
@font-face {
  font-family: 'Tinos';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/Tinos-Regular.ttf') format('truetype');
}

/* Tinos Bold (700 weight) */
@font-face {
  font-family: 'Tinos';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/Tinos-Bold.ttf') format('truetype');
}

body {
    font-family: 'Tinos', serif;
    background-color: #f0f0e6;
    color: #3a3a3a;
}

.bg-custom-green {
    background-color: #069246;
}

[x-cloak] {
    display: none !important;
}



.navbar-fixed-top {
    position: sticky; top: 0; z-index: 99; 
}