@font-face {
    font-family: "Fonta";
    font-style: normal;
    font-weight: 400;
    src: url(/assets/font/Fonta.woff) format("woff");
}

:root {
  --c-white: #fff;
  --c-black: #000;
  --c-light: #eee;
  --c-dark: #343a40;
  --c-green: #8fa837;
  --c-gray: #52575d;
  --font: "Fonta";
}

body {
  background-color: var(--c-light);
  color: var(--c-black);
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  transition: 0.3s;
}

a:hover {
  color: var(--c-green);
}

.bg-color {
  background-color: var(--c-white);
}

.text-dark {
  color: var(--c-black);
}

.text-light {
  color: var(--c-white);
}

.text-green {
  color: var(--c-green);
}

.nav-logo {
  margin-left: -120px;
  width: 70px;
}

.hero {
  position: relative;
  background-color: var(--c-black);
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--c-black);
  opacity: 0.6;
  z-index: 1;
}

.mybtn {
  padding: 10px 18px;
  text-decoration: none;
  transition: 0.3s;
}

.mybtn-filled {
  background-color: var(--c-white);
  border: 1px solid var(--c-white);
  color: var(--c-black);
}

.mybtn-filled:hover {
  background-color: var(--c-white);
  border: 1px solid var(--c-white);
  color: var(--c-black);
}

.mybtn-filled-green {
  background-color: var(--c-green);
  border: 1px solid var(--c-green);
  color: var(--c-white);
}

.mybtn-filled-green:hover {
  background-color: var(--c-green);
  border: 1px solid var(--c-green);
  color: var(--c-white);
}

.mybtn-filled-gray {
  background-color: var(--c-gray);
  border: 1px solid var(--c-gray);
  color: var(--c-white);
}

.mybtn-filled-gray:hover {
  background-color: var(--c-gray);
  border: 1px solid var(--c-gray);
  color: var(--c-white);
}

.mybtn-outline {
  border: 1px solid var(--c-white);
  color: var(--c-white);
}

.mybtn-outline:hover {
  border: 1px solid var(--c-white);
  background-color: var(--c-white);
  color: var(--c-black);
}

.nav-link {
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--c-green) !important;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  color: var(--c-white);
  background-color: var(--c-green);
}

.flag {
  width: 20px;
}

.header {
  background-position: center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
}

.section-container {
  max-width: 768px;
}

.animation {
  top: 0px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transition: 0.1s;
}

.animation:hover {
  top: -5px;
}

.animation:active {
  top: 0px;
}

.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.img-food {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.filterDiv {
  display: none; /* Hidden by default */
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

#filterContainer .dropdown-menu {
    max-width: 750px !important;
}

@media only screen and (max-width: 768px) {
  .header {
    height: 200px;
  }
}
