@import url("https://fonts.googleapis.com/css2?family=Pattaya&family=Tangerine:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");

body {
  margin: 0;
  background-color: #494949;
  background-image: url(../images/bakround-3.webp);
  background-size: cover;
  width: 100%;
  height: 100dvh;
  padding: 0;
}

h1 {
  font-family: "Pattaya", sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: white;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  text-shadow: #241509 3px 3px;
}

h2 {
  font-family: "Pattaya", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  margin: 0;
  font-size: 20px;
  margin-left: 10px;
  margin-top: 3px;
  text-shadow: #241509 3px 3px;
}

a {
  text-decoration: none;
}

header img {
  width: 100%;
}

.container {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
}

.blok {
  z-index: 100;
  padding: 15px 15px;
}

header {
  color: white;
  font-size: 50px;
  align-items: center;
}

header img {
  width: 100%;
}

.content {
  margin-bottom: 130px;
}

.container .content .title-1 .title{
  font-family: "Pattaya", sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: white;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  text-shadow: #241509 3px 3px;
}

.title-1 h2 {
  color: white;
  font-weight: bold;
  font-size: 35px;
}

.mancare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 15px;
  width: 100%;
  margin-top: 20px;
}

.supe img,
.fel-principal img,
.calde img,
.salate img {
  width: 100%;
  height: 130px;
  border-radius: 20px;
  box-shadow: #2b2a2a 0px 0px 6px 6px;
  border: #333333 1px solid;
}

.desert img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  margin-top: 10px;
  box-shadow: #2b2a2a 0px 0px 4px 4px;
  border: #333333 1px solid;
}

.bottom-bar {
  position: fixed;
  bottom: 30px;
  display: flex;
  flex: 1 1 0;
  background-color: rgb(43, 42, 42, 0.1);
  backdrop-filter: blur(15px);
  box-shadow: rgb(172, 172, 172, 0.3) 0px 3px 8px 4px;
  border: 2px rgb(255, 255, 255, 0.3) solid;
  width: 380px;
  height: 80px;
  border-radius: 50px;
  justify-content: space-around;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.despre-noi {
  grid-area: a;
  flex-direction: column;
  display: flex;
  text-align: center;
  align-items: center;
  width: 70px;
  margin-left: 15px;
  padding-top: 10px;
}

.despre-noi i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
}

.despre-noi p {
  color: white;
  margin-top: 0px;
  margin-bottom: 0;
  font-family: "Teko", sans-serif;
  font-size: 20px;
}

.centr-logo {
  grid-area: b;
  background-color: rgb(43, 42, 42, 1);
  backdrop-filter: blur(15px);
  box-shadow: rgb(172, 172, 172, 0.3) 0px 3px 8px 4px;
  border: 2px rgb(255, 255, 255, 0.3) solid;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centr-logo img {
  width: 60px;
}

.cos {
  flex-direction: column;
  display: flex;
  text-align: center;
  align-items: center;
  width: 70px;
  padding-top: 10px;
}

.link-cos {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  position: relative;
}

.cos {
  position: relative;
  display: inline-flex;
  text-align: center;
  align-items: center;
  width: 70px;
}

.cos i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
}

.scor {
  position: absolute;
  color: #241509;
  background-color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  font-family: "Teko", sans-serif;
  padding-top: 0px;
  padding-bottom: 2px;
  padding-left: 1px;
  border: #241509 1px solid;
  top: 5px;
  right: -8px;
}

.cos p {
  color:white;
  margin-top: 0px;
  margin-bottom: 0;
  font-family: "Teko", sans-serif;
  font-size: 20px;
}


a.activePage i{
  color: white !important;
  animation: salt 0.7s ease-in-out;
}

@keyframes salt {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  30%{
    transform: translateY(-10px) rotate(-10deg);
  }
  60%{
    transform: translateY(-10px) rotate(10deg);
  }
  100%{
    transform: translateY(0) rotate(0deg);
  }
}