/*
...........................................
...........................................
... GLOBAL STANDARD STYLES
...........................................
...........................................
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: "Twemoji Country Flags", Arial, sans-serif;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 8px;
  }
}

body {
  background-color: #f5f5f5;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 300;
}

h1,
h2 {
  font-family: "Caudex", serif;
  line-height: 1.3;
}

a {
  color: black;
}

ul {
  list-style-type: none;
  padding: 0;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 10px;
}

.container-small {
  max-width: 800px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 10px;
}

.row {
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.row .col {
  width: auto;
}

@media screen and (max-width: 1200px) {
  .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
  }
  .row .col {
    width: 100%;
  }
}

.btn {
  all: unset;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  border: 1px solid #ddd;
  padding: 6px 12px;
}

.btn--light {
  color: black;
  background: white;
}

.btn--light:hover {
  background: #f2f2f2;
}

.show-on-mobile {
  display: none;
}

@media screen and (max-width: 600px) {
  .show-on-mobile {
    display: block;
  }
  .hide-on-mobile {
    display: none;
  }
}

.pt-1 {
  padding-top: 1rem;
}

/*
...........................................
...........................................
... GLOBAL CUSTOM STYLES
...........................................
...........................................
*/

.tile-box {
  border-radius: 8px;
  padding: 20px;
  margin: 20px auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
}

.kaszubskie-wzory {
  width: 100%;
  text-align: center;
  padding: 20px;
  min-height: 120px;
}

.kaszubskie-wzory img {
  width: 100%;
  max-width: 700px;
  mix-blend-mode: darken;
}

/*
...........................................
...........................................
... NAVBAR
...........................................
...........................................
*/

nav {
  background: #fff;
  text-align: center;
  padding: 4px 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #ddd;
  min-height: 94px;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo img {
  width: auto;
  height: 90px;
  margin: -6px;
}

nav .pdf-center-button {
  margin-left: auto;
  margin-right: 8px;
}

nav .pdf-center-button a {
  text-decoration: none;
}

nav .nav-buttons-wrapper {
  display: flex;
}

nav .nav-buttons-wrapper a {
  text-decoration: none;
  margin: 4px;
}

nav .menu-btn {
  display: none;
}

@media screen and (max-width: 900px) {
  .menu-page {
    padding-top: 93px;
  }

  nav {
    position: fixed;
    width: 100%;
    top: 0px;
    background: white;
    z-index: 999;
  }

  nav .menu-btn {
    all: unset;
    display: initial;
    width: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.03);
    cursor: pointer;
  }

  nav .menu-btn .open-mobile-menu {
    display: block;
  }
  nav .menu-btn .close-mobile-menu {
    display: none;
  }

  nav .menu-btn.is-active .open-mobile-menu {
    display: none;
  }
  nav .menu-btn.is-active .close-mobile-menu {
    display: block;
  }

  nav .menu-btn img {
    width: 100%;
    height: auto;
  }

  nav .nav-buttons-wrapper {
    right: -100%;
    width: 100%;
    top: 93px;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 90px);
    z-index: 999;
    position: fixed;
    transition-duration: 0.1s;
  }
  nav .nav-buttons-wrapper.is-active {
    right: 0%;
  }
}

/*
...........................................
...........................................
... INDEX PAGE
...........................................
...........................................
*/

.index-page {
  min-height: 100vh;
  display: flex;
}

.index-page .container-small {
  display: flex;
  flex-direction: column;
}

.index-page main {
  margin: auto 0px;
  padding-bottom: 10%;
}

.index-page .language-menu-box {
  max-width: 240px;
  width: 240px;
  width: 100%;
  border-top: 5px solid black;
  border-bottom: 5px solid black;
}

.index-page .language-option {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: background-color 0.3s;
  font-size: 1.8rem;
  margin: 10px 0;
  color: #fff;
  background-color: #4caf50;
}

.index-page .language-option:hover {
  background-color: #388e3c;
}

/*
...........................................
...........................................
... MENU PAGE
...........................................
...........................................
*/

.menu-page .dish {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.menu-page .dish img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  object-fit: cover;
  border-radius: 4px;
}

.menu-page .dish-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-page .dish-content .price {
  padding: 10px 40px;
  white-space: nowrap;
}

.menu-page .cuisine-title {
  background-color: #4caf50; /* Zielony kolor */
  color: #fff;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 300;
  border-radius: 5px 5px 0px 0px;
}

.menu-page .cuisine-title-grey {
  background-color: #333; /* szary kolor - jak w sidebar */
  color: #fff;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 300;
  border-radius: 5px 5px 5px 5px;
}
.menu-page .pdf-button {
  display: block;
  background-color: blue;
  color: white;
  text-align: center;
  padding: 10px 15px;
  margin: 20px auto;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* ponieważ to link, usuwamy podkreślenie */
}

.menu-page main {
  display: flex;
  position: relative;
  align-items: flex-start;
  padding-bottom: 30px;
}

.menu-page .sidebar {
  position: sticky;
  top: 0px;
  width: 100%;
  max-width: 400px;
  padding: 0px 10px;
}
@media screen and (max-width: 1600px) {
  .menu-page .sidebar {
    max-width: 320px;
  }
}

@media screen and (max-width: 1400px) {
  .menu-page .sidebar {
    max-width: 280px;
  }
}

@media screen and (max-width: 1200px) {
  .menu-page .sidebar {
    display: none;
  }
}

.menu-page .sidebar .sidebar-title {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 1px;
  border-radius: 5px 5px 0px 0px;
}

.menu-page .sidebar h4 {
  font-size: 1.8rem;
  padding: 4px 0px;
}

.menu-page .sidebar img {
  width: 100%;
  border-radius: 0px 0px 5px 5px;
}

.menu-page .maincontainer-center {
  max-width: 800px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 10px;
}

@media screen and (max-width: 600px) {
  .menu-page .dish {
    flex-direction: column;
    text-align: center;
  }

  .menu-page .dish img {
    margin-bottom: 10px;
  }

  .menu-page .dish-content {
    flex-direction: column;
  }
}

.menu-page header {
  text-align: center;
  margin: 10px auto 40px auto;
}

.menu-page header h1 {
  font-size: 6rem;
  font-weight: 700;
  padding-bottom: 10px;
}

.menu-page header h2 {
  margin-top: 10px;
  font-size: 1.8rem;
}

.menu-page header a {
  text-decoration: none;
  font-family: "Twemoji Country Flags", Arial, sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  .menu-page header a {
    font-size: 1.8rem;
  }
}

/*
...........................................
...........................................
... FOOTER
...........................................
...........................................
*/

footer {
  padding: 100px 20px;
  /* min-height: 440px; */
}
@media screen and (max-width: 1600px) {
  footer {
    min-height: 380px;
    padding: 80px 20px;
  }
}

footer h2 {
  margin: 20px 0px 10px 0px;
}

footer .social-media-icon-link {
  display: flex;
  text-decoration: none;
}

footer .social-media-icon-link img {
  width: 16px;
}
