*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  color: black;
}
body {
  font-family: "Rubik", sans-serif;
  background: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  height: 10vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 100;
}

.logo {
  font-size: 2rem !important;
  color: white;
  font-weight: bold;
  font-family: "hooligan", sans-serif;;
  text-align: center;
  text-decoration: none;
}

.logo:hover,
.logo:focus,
.logo:visited {
  text-decoration: none;
  color: white;
}

.slider {
  height: 80vh;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.slider__container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider__item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
}

.text {
  font-family: "Rubik", sans-serif;
  padding: 5rem;
  color: white;
}


.text h2,
.text h3,
.text h4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.text a,
.text:hover,
.text:focus,
.text:visited {
  color: white;
}

.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.image-container img {
  width: 550px;
  height: auto;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.image-container:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
}

.slider-controls button {
  background: none;
  border: none;
  color: black;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.slider-controls button:hover {
  opacity: 1;
}

.slider-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.slider-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background: black;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}
.slider-dots .active {
  opacity: 1;
  background: black;
}

.kontakt {
  font-size: 1rem;
  color: #ccc;
}

footer {
  font-family: "Rubik", sans-serif;
  height: 6vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: #ccc;
  background: transparent;
}

.footer-container a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.footer-container a:hover {
  color: #ccc;
}

.slide-burger {
  background-color: #c61b15;
}
.slide-coffee {
  background-color: #feed01;
}

.column a {
  text-decoration: none;
  color: #fff;
}

@font-face {
  font-family: "hooligan";
  src: url("/font/HooliganJF_Regular.woff") format("woff");
}

@media (max-width: 768px) {
  .slider__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .column {
    justify-content: center;
    align-items: center;
    padding-top: 10px;
  }
  .image-container img {
  width: 450px;
 }
  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 450px) {
 .image-container img {
  width: 350px;
 }
}