@font-face {
  font-family: "Roboto Slab";
  font-weight: 400;
  font-display: swap;
  src: url(https://sarka.wp.gavr.cz/wp-content/uploads/2024/09/RobotoSlab-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Roboto Slab";
  font-weight: 500;
  font-display: swap;
  src: url("./RobotoSlab-Medium.woff2") format("woff2");
}
/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

:root {
  --main-color: #7a1522;
  --bg: #f9f7f0;
  --tablet: 768px;
  --desktop: 1024px;
  --desktop-lg: 1440px;
}

body {
  background: var(--bg);
}

header {
  max-width: 100%;
  width: 100%;
  height: 125px;
  background: var(--main-color);
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  header {
    height: 145px;
  }
}
header .logo {
  margin-top: 1rem;
  width: 50%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  header .logo {
    width: 193px;
    height: 193px;
  }
}

.signpost {
  min-height: calc(100vh - 145px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem;
}
.signpost nav {
  max-width: 1258px;
  width: 100%;
}
.signpost nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .signpost nav ul {
    flex-direction: row;
  }
}
.signpost nav ul li {
  display: block;
  width: 100%;
}
.signpost nav ul li a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7a1522;
  border-radius: 1.875rem;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .signpost nav ul li a {
    font-size: 2.5rem;
    min-height: 360px;
  }
}
.signpost nav ul li a span {
  z-index: 1;
  font-family: "Roboto Slab", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  position: relative;
  color: white;
}
.signpost nav ul li a.restaurant {
  background-image: url("https://sarka.wp.gavr.cz/wp-content/uploads/2024/10/eb39b449487c8b3ad2212f335202da30.jpeg");
}
.signpost nav ul li a.brewery {
  background-image: url("https://sarka.wp.gavr.cz/wp-content/uploads/2024/10/00c167ae42279077295cfbc19138cbfe.jpeg");
}
.signpost nav ul li a:not(.disabled)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.signpost nav ul li a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.signpost nav ul li a::after {
  content: "";
  z-index: 0;
  display: block;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
  border-radius: 1.875rem;
  background-color: #7a1522;
  transform: translateY(100%);
  transition: all 0.3s;
}
.signpost nav ul li a:hover:not(.disabled)::after {
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */