/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');






body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    padding: 0;
   
  }
  
  .navbar {
    background: white;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
  }

  .navbar ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
  }
  
  .navbar li {
    margin: 0 20px;
  }
  
  .navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    transition: color 0.3s;
  }
  
  .navbar a i {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .navbar a:hover {
    color: #000D5C;
  }
  
  .slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }

  
  .slider img.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
   
  }
  
  .slider img.active {
    opacity: 1;
    z-index: 2;
  }
  
  .slider .logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;

  }

  .logo {
    background-color: rgba(0, 0, 0, 0.64);
    border-radius: 8px;
  }
  
  
  .slider .slider-text {
  position: absolute;
  bottom: 0;
  right: 0;
  background:#403223;
  padding: 30px;
  color: white;
  text-align: center; /* ← změněno z left */
  z-index: 3;
  max-width: 400px;
}

  
  .slider .slider-text h2 {
    margin: 0 0 10px;
    font-size: 26px;
    color: white;
  }
  
  .slider .slider-text p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.4;
  }
  
  .slider .btn {
    background: white;
    color:black;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .slider .btn:hover {
    background: #f3f3f3;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 3;
    font-size: 18px;
    border-radius: 50%;
  }
  
  .arrow.left {
    left: 20px;
  }
  
  .arrow.right {
    right: 20px;
  }
  
  .dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }
  
  .dots span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .dots span.active {
    background:#000D5C;
  }


    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #fefefe;
      color: #333;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 30px;
    }

    .logo {
      text-align: center;
      margin-bottom: 20px;
    }

    .logo img {
      max-width: 200px;
    }

    h1, h2 {
      text-align: center;
      color: #000D5C;
    }

    .section {
      margin-bottom: 30px;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    li {
      margin-bottom: 10px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 6px;
    }

    .footer {
      text-align: center;
      font-size: 0.9em;
      color: #777;
    }


    .denni img {
      width: 100%;
    }

    .doba img {
      width: 40%;
      margin-left: 32%;
    }

    
    .nadpis h2 {
      text-align: center;
      padding-top: 50px;

    }
    
      #map {
    width: 100%;
    height: 400px;
  }


    .footer {
      background-color: #3b3b3b;
      color: white;
      padding: 40px 20px 20px;
      font-size: 14px;
    }
    
    .footer a {
      color:#c8102e;
      text-decoration: none;
    }
    
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-column {
      flex: 1 1 250px;
      min-width: 250px;
    }

    
    .footer h3 {
      margin-bottom: 10px;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    main {
      font-family: 'Outfit', sans-serif;
    }
    
    .footer-map {
      max-width: 100%;
      border-radius: 5px;
      margin-top: 10px;
    }
    
    .footer-bottom {
      border-top: 1px solid #555;
      margin-top: 20px;
      padding-top: 10px; 

      text-align: center;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    
    .footer-social i {
      margin: 0 8px;
      font-size: 18px;
      color:#000D5C;
    } 


  .footer-column p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    margin-bottom: 5px;
  }

  .footer-column p:last-child {
    border-bottom: none; /* poslední bez čáry */
  }







/* Na mobilu (max šířka 768px): skrýt obrázek, zobrazit text jídel */
/* === ZÁKLADNÍ STYL PRO DESKTOP (nad 768px) === */

.menu-text {
  display: none;
}

.menu-img {
  display: block;
}

/* === RESPONSIVITA: TABLET (max-width: 1024px) === */
@media screen and (max-width: 1024px) {
  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .navbar li {
    margin: 5px 10px;
  }

  .logo img {
    max-width: 160px;
  }

  .slider-text h2 {
    font-size: 28px;
  }

  .slider-text p {
    font-size: 16px;
  }

  .slider .arrow {
    font-size: 22px;
  }
 .menu-img {
  display: block;
  width: 100%;
  height: auto;
}
}


/* === RESPONSIVITA: MOBIL (max-width: 768px) === */
@media screen and (max-width: 768px) {
  
.menu-img {
  display: none;
  width: 100%;
  height: auto;
}
  .menu-text {
    display: block;
    margin-left: 20px;
  }

  .menu-text h2,
  .menu-text h3 {
    color: #000D5C;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .menu-text p {
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.5em;
  }

  .menu-text ol {
    padding-left: 0;
    list-style-position: inside;
    margin: 10px 0 20px 0;
    text-align: left;
  }

  .menu-text li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4em;
  }

  .menu-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    color: #333;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .navbar li {
    margin: 5px 0;
  }

  .navbar a {
    font-size: 14px;
    padding: 8px 12px;
  }

  .logo img {
    width: 120px;
  }

  .slider {
    position: relative;
    overflow: hidden;
  }

  .slide {
    width: 100%;
    height: auto;
  }

  .slider-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 10px 15px;
    background-color: rgba(0, 13, 92, 1);
    border-radius: 10px;
    color: white;
    width: 90%;
  }

  .slider-text h2 {
    font-size: 22px;
  }

  .slider-text p {
    font-size: 14px;
    margin: 10px 0;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .arrow {
    font-size: 18px;
    padding: 10px;
  }

  .dots {
    bottom: 5px;
  }

  .denni h1 {
    font-size: 20px;
    text-align: center;
  }

  .denni img,
  .doba img {
    width: 90%;
    max-width: 100%;
    display: block;
    margin: 10px auto;
  }
}


/* === MAPA + FOOTER STYLY === */

#map {
  height: 250px;
  margin: 20px;
  width: 90vw;
  border-radius: 5px;
}

.footer-column h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px;
  font-size: large;
}

.footer-column {
  margin-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-column:first-child {
  margin-top: 0;
}

.footer-column:last-child {
  border-bottom: none;
}

.dots span {
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}


/* Mobil */



.footer-social i {
  margin: 0 8px;
  font-size: 18px;
  color:#c8102e;
}



.info-section {
  background-color: #f8f5f0;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #403223; /* dřevová barva */
}

.info-section h3 {
  color: red;
  font-size: 27px;
}

.info-section img {
   max-width: 600px;
  width: 100%;
  height: auto;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.info-box {
  background-color: #ffffff;
  border: 2px solid #403223;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box h3 {
  color: #403223;
  margin-bottom: 10px;
}

.info-box p {
  color: #333;
  font-size: 15px;
  line-height: 1.4;
}


.menu-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.menu-wrapper {
  padding: 0 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .menu-img {
    display: none;
  }
}

/* --- Footer vylepšení + odkazy --- */
.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  margin: 0;
  color: #bbb;
  justify-self: start;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #c8102e;           /* drží paletu webu */
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-weight: 600;
}
.footer-links a:hover { border-bottom-color: currentColor; }

.footer-social {
  justify-self: end;
}

.footer-disclaimer {
  max-width: 1100px;
  margin: 14px auto 0;
  text-align: center;
  color: #ddd;
  font-size: 0.95rem;
  opacity: .9;
}

/* Responzivní úprava footeru */
@media (max-width: 800px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-copy,
  .footer-social { justify-self: center; }
  .footer-links { justify-content: center; }
}
