/* ===== ZÁKLADNÉ NASTAVENIA ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #eef2f7;
  color: #333;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ===== HLAVIČKA ===== */
header {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px;
}
.logo img {
  max-width: 120px;
  height: auto;
}
.slogan {
  margin-top: 10px;
  font-size: 1.2em;
}

/* ===== NAVIGÁCIA ===== */
nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 15px;
}
nav a {
  background-color: #0077cc;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
nav a:hover {
  background-color: #005fa3;
}

/* ===== HLAVNÝ OBSAH ===== */
main {
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  animation: fadeIn 0.6s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SEKCIA TECHNIKOV ===== */
.technician-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.image-section {
  flex: 2;
  max-width: 400px;
  min-width: 300px;  
  margin: 0 10px;
  text-align: center;
}

.image-section img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.image-section img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}


.custom-button {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.custom-button:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

/* Mobilná jemnosť */
@media (max-width: 480px) {
  .image-section {
    margin: 0 auto;
    max-width: 90%;
  }
}


/* ===== SEKCIA SLUŽBY A KONTAKTY ===== */
.banner {
  background-color: #e6f0ff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
.banner h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #004080;
}
.service-block {
  margin-bottom: 30px;
}
.service-block h3 {
  color: #004080;
  margin-bottom: 8px;
}
.service-block p i {
  margin-right: 8px;
  color: #0077cc;
}

/* ===== PÄTIČKA ===== */
footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
.footer-links {
  margin-bottom: 15px;
}
.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  justify-content: center;
  padding: 0;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #cce6ff;
}



/* ===== RESPONSÍVNE PRVKY ===== */
@media (max-width: 768px) {
nav ul {
    flex-direction: column;
    align-items: center;
  }
  .technician-images {
    flex-direction: column;
  }
 .footer-links ul {
    grid-template-columns: 1fr;
  }
}

