.bg-green-primary{
    background: #505945;
}

.bg-green-secondary{
    background: #7f8d6e;
}

.bg-button-primary{
    background: #974522;
}

.bg-button-primary:hover{
  background: #8f5e47;
}

.bg-button-secondary{
    background: #5A0201;
}

.bg-button-secondary:hover{
  background: #5c1a19;
}


.roboto-100 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}


.roboto-200 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}


.roboto-300 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}


.roboto-400 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}


.roboto-500 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

.roboto-600 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

.roboto-700 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

.roboto-800 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

.roboto-900 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

@font-face {
  font-family: 'Blosvet';
  src: url('../blosvet/Blosvet.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}

h1{
  font-family: 'Blosvet';
}

button{
  font-family: 'Blosvet' !important;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: #4CAF50;
}

/* Hide menu button when menu is open */
.menu-open .fa-bars {
    display: none;
}

/* Show close button when menu is open */
.menu-open .fa-xmark {
    display: block;
}

/* Hide close button when menu is closed */
.fa-xmark {
    display: none;
}