/* Basic nastavenia*/
body {
margin: 0;
font-family: Georgia, sans-serif;
background-color: #f7f7f7;
 olor: #333;
}

/*Menúčko */
.horne_menu {
text-align: center;
background-color: #1f4e79;
color: white;
padding: 20px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.horne_menu h1 {
margin: 0;
font-size: 2em;
}

.horne_menu h3 {
margin-top: 5px;
font-weight: normal;
}


.menu_bar {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 15px;
}

.menu_bar a {
text-decoration: none;
color: white;
font-size: 18px;
font-weight: bold;
padding: 8px 15px;
border-radius: 5px;
transition: background 0.3s, transform 0.2s;
}

.menu_bar a:hover {
background-color: #ffffff;
color: #1f4e79;
transform: scale(1.1);
}

/* Posun obrázkov */
.slider {
overflow: hidden;
max-width: 100%;
height: 350px;
position: relative;
}

.slides {
display: flex;
width: 300%;
animation: slide 12s infinite;
}

.slides img {
width: 100%;
height: 350px;
object-fit: cover;
}

@keyframes slide {
0%   { transform: translateX(0%); }
33%  { transform: translateX(-100%); }
66%  { transform: translateX(-200%); }
100% { transform: translateX(0%); }
}

/* Základný text o firme */
.text-box {
.first-line {
font-size: 25px;
font-weight: bold;
}
max-width: 1300px;
margin: 40px auto;
padding: 30px;
font-family:'Georgia', serif;
font-size: 18px;
line-height: 1.7;
text-align: center;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/*  Produkty */
.products {
text-align: center;
padding: 30px 15px;
}

.products h2 {
font-size: 2em;
margin-bottom: 20px;
}

.product_card {
display: inline-block;
background: white;
padding: 15px;
margin: 10px;
width: 250px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
border-radius: 10px;
vertical-align: top;
transition: transform 0.3s;
}

.product_card:hover {
transform: scale(1.05);
}

.product_card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
}

.product_card h3 {
margin: 10px 0 5px;
}

.product_card p {
margin-bottom: 10px;
font-weight: bold;
}

/* Tlačidlá */
.btn {
display: inline-block;
background-color: #1f4e79;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s;
}

.btn:hover {
background-color: #163957;
}

/* Päta */
footer {
background-color: #1f4e79;
color: white;
text-align: center;
padding: 15px 0;
margin-top: 30px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

