@charset "UTF-8";
:root {
  --black: #000000;
  --red: #fa1300;
  --fire: linear-gradient(
  	90deg,
  	#8b1010 0%,
  	#b31217 40%,
  	#fa1300 80%,
  	#fa1300 100%
  );
  --white: #fff;
  --yellow: #febf05;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Libre Franklin";
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.1px;
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  flex-direction: column;
  background: var(--fire);
  text-align: center;
  position: sticky;
  width: 100%;
  z-index: 100;
  top: 0;
  max-height: 80px;
}
header .topBar {
  display: flex;
  justify-content: space-between;
}
header .topBar .logo {
  position: relative;
  width: 280px;
  border-radius: 0 0 10px;
  z-index: 1;
}
header .topBar .lang-switch {
  display: flex;
  justify-content: flex-end;
  margin: 20px 20px 0 0;
}
header .topBar .lang-switch button {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--red);
  margin-left: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  max-width: 50px;
  max-height: 50px;
}
header .topBar .lang-switch button.active, header .topBar .lang-switch button:hover {
  background: linear-gradient(90deg, #8b1010 0%, #b31217 100%);
  color: var(--white);
  box-shadow: 0 0 6px 2px rgba(139, 16, 16, 0.8), 0 0 16px 4px rgba(179, 18, 23, 0.4666666667), 0 0 20px 8px rgba(58, 6, 6, 0.3333333333);
  border-width: 3px;
  border-color: #b31217;
}

header.scrolled {
  box-shadow: 0 0 6px 2px rgba(139, 16, 16, 0.8), 0 0 16px 4px rgba(179, 18, 23, 0.4666666667), 0 0 20px 8px rgba(58, 6, 6, 0.3333333333);
  transition: box-shadow 0.3s;
  padding-bottom: 10px;
}

.hero-content {
  color: var(--black);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6666666667);
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--fire);
}
.hero-content h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
  font-family: "Yesteryear";
  margin: 1rem;
  color: var(--yellow);
}
.hero-content .hero-img {
  width: 100%;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 5px solid var(--red);
}

h3,
.reservations {
  font-weight: bold;
  margin-bottom: 0;
}

.about-us {
  background: var(--fire);
  text-align: center;
  align-items: center;
  color: var(--yellow);
}
.about-us h2,
.about-us p {
  color: var(--yellow);
}
.about-us p {
  font-size: 1.5rem;
  margin-top: 5px;
}
.about-us h3 {
  font-size: 1.5rem;
  margin-top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  padding: 10px 30px;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

h2 {
  font-family: "Yesteryear", cursive;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: none;
  font-size: 3rem;
  color: var(--red);
  text-align: center;
  margin-bottom: 5px;
  margin-top: 10px;
  font-family: "Yesteryear";
  padding: 0 100px;
  line-height: 3.5rem;
}

.menu-section {
  margin-bottom: 20px;
}
.menu-section .menu-images {
  display: grid;
  align-items: start;
  justify-items: center;
  justify-self: center;
}
.menu-section .menu-images .menu-card {
  border: 2px solid var(--red);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(215, 38, 49, 0.1254901961);
  transition: transform 0.2s;
  max-width: 500px;
}
.menu-section .menu-images .menu-card img {
  width: 100%;
  display: block;
}
.menu-section .menu-images .menu-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(250, 84, 28, 0.3764705882);
}
.menu-section .menu-images.one {
  display: grid;
  grid-template-columns: 1fr; /* jedno zdjęcie */
  max-width: 600px; /* żeby nie rozciągało na całą stronę – opcjonalnie */
  margin: 0 auto;
}
.menu-section .menu-images.multi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.menu-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 32px #000;
  transition: transform 0.3s;
}
.menu-modal.show {
  display: flex;
  animation: fadeIn 0.3s;
}

.gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
  justify-items: center;
}
.gallery-list .gallery-item {
  flex: 1 1 calc(50% - 12px);
  width: 320px;
  box-sizing: border-box;
  background: rgba(30, 0, 0, 0.9);
  border: 2px solid var(--red);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}
.gallery-list .gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(250, 84, 28, 0.3764705882);
}
.gallery-list .gallery-item .gallery-img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-list .gallery-item .gallery-desc {
  padding: 16px 12px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

.location {
  text-align: center;
}

.map-container {
  margin: 0 auto;
  height: 0;
  padding-bottom: 56.25%; /* proporcje 16:9 */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.opening-hours {
  margin-top: 20px;
  text-align: center;
  color: #fff;
}
.opening-hours h3 {
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.opening-hours p {
  font-size: 1rem;
  margin: 2px 0;
}

footer {
  text-align: center;
  padding: 10px 0 15px 0;
  color: var(--yellow);
  background: var(--fire);
  font-size: 1rem;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
}
footer .footer {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
footer .footer .social-links i {
  font-size: 26px;
  color: #fff;
  margin: 0 10px;
  transition: color 0.2s, transform 0.2s;
  padding-bottom: 3px;
}
footer .footer .social-links a:hover i {
  color: #d72631;
  transform: scale(1.2);
}
footer .reservations {
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 500px) {
  section {
    padding: 10px 15px;
  }
  h2 {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 20px 0 20px;
  }
  .about-us h3,
  .about-us p {
    font-size: 1.2rem;
  }
  .about-us h3 {
    margin-top: 0;
  }
  header .topBar .logo {
    width: 160px;
  }
  .container {
    width: 100%;
  }
  .container .gallery-section .gallery-list .gallery-item {
    flex: auto;
  }
  .container .gallery-section .gallery-img {
    height: 380px;
  }
  footer {
    padding: 5px;
  }
  footer .footer {
    font-size: 16px;
  }
  footer .footer .social-links i {
    font-size: 22px;
    margin: 2px;
  }
  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    padding: 0 30px 0 30px;
  }
  .menu-section .menu-images.multi {
    grid-template-columns: 1fr; /* jedna kolumna */
  }
  .menu-section .menu-images.multi .menu-card {
    margin: 10px;
  }
  .menu-section .menu-images .menu-card:first-child {
    grid-row: auto; /* przestaje być duża */
  }
}/*# sourceMappingURL=style.css.map */