* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Gothic';
  src: url('../fonts/Gothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SouthamDemo';
  src: url('../fonts/Brush.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Gothic';
  color: #f8f8f8;
  background: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.background {
  position: fixed;
  inset: 0;
  background: url('../images/background.jpg') center center / cover no-repeat;
  z-index: -4;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: -3;
}
header {
  background: rgba(20, 20, 20, 0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffca28;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  white-space: nowrap;
}
.logo .location {
  font-family: 'SouthamDemo', cursive, 'Gothic', sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: 1.5px;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}
.logo:hover,
.logo:hover .location {
  color: #ffeb3b;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background: #ffca28;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.main-menu {
  display: flex;
  align-items: center;
}
.main-menu a {
  color: #eee;
  text-decoration: none;
  margin-left: 2.4rem;
  font-size: 1.08rem;
  transition: color 0.25s, transform 0.2s;
  cursor: pointer;
}
.main-menu a:hover,
.main-menu a.active {
  color: #ffca28;
  transform: translateY(-2px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(10px);
  padding: 6rem 2rem 2rem;
  transition: right 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu a {
  color: #eee;
  text-decoration: none;
  font-size: 1.4rem;
  margin: 1.2rem 0;
  display: block;
  text-align: center;
  transition: color 0.3s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: #ffca28;
}
main {
  margin-top: 0px;
  flex: 1;
  padding: 0 5% 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
section {
  margin-bottom: 0;
  scroll-margin-top: 110px;
}
section#domu {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -90px;
  padding: 14rem 5% 12rem;
  background: #111;
  overflow: hidden;
  color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
section#domu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.6) 30%,
      rgba(0,0,0,0.9) 65%,
      #111 100%
    ),
    url('../images/domu_background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 5%;
  text-align: center;
}
.hero-content h1 {
  font-size: 6rem !important;
  margin-bottom: 2.5rem;
  text-shadow: 0 8px 30px rgba(0,0,0,0.9);
  font-family: 'SouthamDemo', cursive;
  color: #ffffff;
}
.hero-content .about p {
  font-size: 1.4rem;
  line-height: 1.9;
  margin-bottom: 2.2rem;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}
section#menu {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -130px;
  padding: 10rem 5% 16rem;
  background: transparent;
  overflow: hidden;
}
section#menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #111 0%,
    rgba(17,17,17,0.9) 10%,
    rgba(17,17,17,0.5) 35%,
    transparent 65%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}
section#menu > * {
  position: relative;
  z-index: 1;
}
.menu-days {
  max-width: 900px;
  margin: 3rem auto;
}
.menu-day-card {
  background: rgba(30, 30, 30, 0.85);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.menu-day-header {
  background: rgba(50, 50, 50, 0.9);
  color: #ffca28;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1.2rem 1.5rem;
  border-bottom: 2px solid #ffca28;
}
.menu-time-highlight {
  background: #4fc3f7;
  color: #111;
  font-weight: bold;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  margin: 1rem 1.5rem 0.8rem;
  text-align: center;
  display: block;
}
.menu-polievka {
  padding: 1.2rem 1.5rem;
  color: #ddd;
  font-style: italic;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-polievka::before {
  content: "Polévka: ";
  font-weight: bold;
  color: #ffeb3b;
}
.menu-main-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.menu-main-name {
  flex: 1;
}
.menu-main-price {
  font-weight: bold;
  color: #ffeb3b;
  font-size: 1.15rem;
  min-width: 90px;
  text-align: right;
}
.menu-no-item {
  padding: 1.2rem 1.5rem;
  color: #aaa;
  font-style: italic;
  text-align: center;
}
.contact-box {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: rgba(30, 30, 30, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(255,202,40,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}
.contact-left {
  font-size: 1.25rem;
  line-height: 1.8;
}
.contact-left p {
  margin: 0.8rem 0;
}
.contact-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.facebook-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #f8f8f8;
  transition: color 0.25s, transform 0.2s;
}
.facebook-link:hover {
  color: #ffca28;
  transform: translateY(-3px);
}
.fb-logo {
  width: 80px;
  height: auto;
  transition: transform 0.25s;
}
.facebook-link:hover .fb-logo {
  transform: scale(1.1);
}
.facebook-link span {
  font-size: 1.3rem;
  font-weight: 600;
}
#menu h2,
#kontakt h2 {
  font-size: 4.2rem;
  color: #ffca28;
  text-align: center;
  margin-bottom: 3.5rem;
  text-shadow: 0 6px 20px rgba(0,0,0,0.8);
  letter-spacing: 1px;
}
.map-and-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 auto 3rem;
  max-width: 1000px;
  height: 480px;
}
.contact-photo,
.map-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.prototype-notice {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(30, 30, 30, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(255,202,40,0.2);
}
.normal-link {
  color: inherit;
  text-decoration: none;
}
.normal-link:hover {
  color: #ffca28;
  text-decoration: underline;
}
footer {
  background: rgba(15, 15, 15, 0.92);
  padding: 3rem 5%;
  text-align: center;
  font-size: 0.98rem;
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 880px) {
  .hamburger {
    display: flex;
  }
  .main-menu:not(.mobile-menu) {
    display: none;
  }
  main {
    margin-top: 80px;
    padding: 0 6% 5rem;
  }
  .hero-content h1 {
    font-size: 3.4rem;
  }
  .hero-content .about p {
    font-size: 1.25rem;
  }
  section#domu {
    min-height: 85vh;
    margin-top: -30px;
    padding: 8rem 6% 8rem;
  }
  section#menu {
    padding: 8rem 6% 14rem;
  }
  section#menu::after {
    background: linear-gradient(
      to bottom,
      #111 0%,
      rgba(17,17,17,0.85) 20%,
      transparent 55%,
      transparent 100%
    );
  }
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  #menu h2,
  #kontakt h2 {
    font-size: 3rem;
  }
  .fb-logo {
    width: 70px;
  }
  .map-and-photo {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: auto;
  }
  .contact-photo {
    height: 360px;
  }
  .map-wrapper iframe {
    height: 360px;
  }
  .prototype-notice {
    font-size: 1.2rem;
    padding: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    white-space: normal;
  }
  .logo .location {
    font-size: 1.6rem;
  }
  .logo::before {
    content: "";
    display: block;
    width: 100%;
  }
}
@media (max-width: 500px) {
  #menu h2,
  #kontakt h2 {
    font-size: 2.6rem;
  }
}
