/body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #e6f2ff;
  color: #333;
}

header {
  background-color: #1a3e72;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #2c5282;
  padding: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

nav a:hover, nav a.active {
  background-color: #4a7bc8;
  border-radius: 5px;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.main-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Špeciálne štýly pre jednotlivé stránky */
.menu-section {
  background-color: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-section h3 {
  color: #1a3e72;
  border-bottom: 2px solid #4a7bc8;
  padding-bottom: 0.5rem;
}

.menu-section ul {
  list-style-type: none;
  padding: 0;
}

.menu-section li {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
}

.menu-section li span {
  font-weight: bold;
  color: #1a3e72;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.contact-info {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info i {
  color: #1a3e72;
  margin-right: 0.5rem;
}

.map {
  border-radius: 8px;
  overflow: hidden;
}

/* Päta */
footer {
  background-color: #1a3e72;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.school-links {
  margin-top: 1rem;
}

.school-links a {
  color: #a3c4ff;
  margin: 0 0.5rem;
}

/* Responzívny dizajn */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  
  nav a {
    margin: 0.2rem 0;
    width: 100%;
    text-align: center;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
}* CSS Document */