body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f7f7f7;
  color: #333;
}

/* Header */
header {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}


header p {
  margin: 0.5rem 0 0;
}

/* Main */
main {
  padding: 2rem 1rem;
}

.fs{
  text-align: center;
  margin-bottom: 2rem;
}

/* Produkty */
.products h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product {
  background-color: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.product:hover {
  transform: scale(1.02);
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 5px;
}

/* Carousel */
.carousel {
  padding: 2rem 1rem;
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-item img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
}

.carousel-item h3 {
  margin-top: 0.8rem;
  font-size: 1.1rem;
}

.carousel-item p {
  color: #c40000;
  font-weight: bold;
}

/* Šípky */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003366;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #0055aa;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-item {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.carousel-item:hover {
  transform: scale(1.02);
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.hours {
  text-align: center;
  padding: 2rem 1rem;
}

.hours-table {
  margin: auto;
  border-collapse: collapse;
  font-size: 1rem;
  width: 100%;
  max-width: 400px;
}

.hours-table td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.hours-table tr.today {
  background-color: #e0f0ff;
  font-weight: bold;
  color: #003366;
}
.status-text {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.status-text.open {
  color: #008000; /* zelená */
}

.status-text.closed {
  color: #cc0000; /* červená */
}

.external-links {
  padding: 3rem 1rem 2rem;
  text-align: center;
  background-color: #f7f7f7;
}

.external-links h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.external-links p {
  color: #555;
  margin-bottom: 2rem;
}

.link-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.link-card .icon {
  font-size: 1.4rem;
  margin-right: 1rem;
}

.link-card .text {
  flex: 1;
  text-align: left;
}

.link-card .text strong {
  display: block;
  font-size: 1rem;
}

.link-card .text span {
  font-size: 0.9rem;
  color: #666;
}

.link-card .link-icon {
  font-size: 1.2rem;
  opacity: 0.6;
}
.site-header {
  position: relative;
  background: #0a3c6b;
  padding: 16px 24px;
}
.header-text {
  max-width:2000px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.brand-mark {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
}

/* Responsívne pre mobily */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
  }
  .brand-mark {
    height: 30px;
    left: 12px;
  }
  .header-text h1 {
    font-size: 1.4rem;
  }
  .header-text p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .brand-mark {
    height: 26px;
    left: 8px;
  }
  .header-text h1 {
    font-size: 1.2rem;
  }
  .header-text p {
    font-size: 0.8rem;
  }
}
/* Responzívnosť */
@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 85%;
  }

  .carousel-btn {
    font-size: 1.8rem;
    padding: 0.3rem 0.6rem;
  }
}


@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  .products h2 {
    font-size: 1.2rem;
  }

  footer {
    font-size: 0.8rem;
  }

  main {
    padding: 1rem 0.5rem;
  }

  .product {
    padding: 0.8rem;
  }

  .product img {
    height: 120px;
  }
}

/* --- NAVIGÁCIA --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #003366;
  color: white;
  padding: 0.8rem 1rem;
}

.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 32px;
}

.nav-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #003366;
    margin-top: 0.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  #qr img {
    width: 90% !important;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .product-list {
    gap: 0.4rem !important; /* znížené z 1.5rem */
  }

  .product {
    transform: scale(0.85);
    transform-origin: top center;
    margin: 0; /* odstráni prípadné extra medzery */
  }
}

@media (max-width: 768px) {
  .hours {
    font-size: 0.67em;
  }
}

@media (max-width: 768px) {
  .product-list {
    gap: 0.75rem; 
  }
}

footer {
  background: #003366;
  color: white;
  padding: 2rem 1rem;
}

/* Flexbox kontajner */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;                     /* väčšia medzera medzi mapou a kontaktmi */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;              /* na mobiloch zalomenie */
}

/* 🗺️ Mapa vľavo */
.footer-map {
  flex: 1 1 55%;
  display: flex;
  justify-content: center;
}

.footer-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 📇 Kontakty vpravo */
.footer-contact {
  flex: 1 1 35%;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-contact h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #ffcc00;
}

.footer-contact p {
  margin: 0.5rem 0;
}

.footer-contact a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* 📱 Mobilné zariadenia – mapa nad kontaktmi */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-map, .footer-contact {
    flex: 1 1 100%;
  }

  .footer-map iframe {
    width: 90%;
    height: 250px;
  }

  .footer-contact {
    text-align: center;
    font-size: 1rem;
  }

  .footer-contact h3 {
    font-size: 1.2rem;
  }
}

.brand-buttons {
  text-align: center;
  margin: 50px 0 40px 0;
}

.brand-btn {
  display: inline-block;
  padding: 16px 34px;      /* ešte väčšie */
  margin: 12px 30px;       /* väčší rozostup na desktope */
  background-color: #170186;
  color: white;
  font-weight: 600;
  font-size: 1.15rem;      /* väčší text */
  text-decoration: none;
  border-radius: 10px;     /* krajšie zaoblenie */
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}

.brand-btn:hover {
  background-color: #330ddc;
}


@media (max-width: 600px) {
  .brand-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .brand-btn {
    width: 75%;             
    margin: 0;              
    padding: 16px 0;       
  }
}
#qr{
 background: #e5ecff;
  padding: 2.5rem;
  border-radius: 12px;
  width: 90%;              
  max-width: 1400px;        
  margin: 2.5rem auto;      
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

}

.site-header {
  background: #0a3c6b;
  padding: 20px 40px;
  color: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;   /* vycentruje celú dvojicu */
  gap: 24px;                 /* medzera medzi logom a textom */
}

.header-logo {
  width: 120px;              /* zväčši logo – uprav podľa chuti */
  height: auto;
}

.header-text h1 {
  margin: 0;
  font-size: 2.2rem;
}

.header-text p {
  margin-top: 6px;
  font-size: 1.1rem;
}

/* Mobilné zobrazenie: logo sa dá nad text */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .header-logo {
    width: 100px;
  }
}
