body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fdf6f9;
  color: #333;
}

/* Hlavička */
header {
  background: #CB3ABD;
  color: white;
  text-align: center;
  padding: 2em;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin-bottom: 1em;
  flex-wrap: nowrap;
}

.logo-container img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.logo-x {
  font-size: 2.5em;
  font-weight: bold;
  color: white;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hlavní banner */
.hero {
  text-align: center;
  padding: 2em;
  background: #f3d7f5;
}

.cta-button {
  background: #CB3ABD;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #A02E99;
}

/* Sekce */
.about, .school, .values, .gallery, .cta, .program, .candidate, .offers, .team, .debate {
  padding: 2em;
  margin: 1em auto;
  max-width: 1000px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px #f3c1d6;
}

/* Program a hodnoty */
.values ul,
.program ul {
  list-style: none;
  padding: 0;
}

.values li,
.program li {
  margin: 0.5em 0;
  font-size: 1.1em;
}

/* Škola */
.school-img {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  margin-bottom: 1em;
}

/* Kandidát */
.candidate-content {
  display: flex;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}

.candidate-img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.candidate-text {
  max-width: 500px;
  text-align: left;
}

.candidate-text h3 {
  margin-top: 0;
  font-size: 1.8em;
  color: #CB3ABD;
}

.candidate-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 2em;
}

.candidate-gallery img {
  width: 100%;
  max-width: 160px;
  border-radius: 8px;
  box-shadow: 0 0 6px #ccc;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.candidate-gallery img:hover {
  transform: scale(1.05);
}

/* Nabídka */
.offers-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 1em;
}

.offers-gallery img {
  width: 100%;
  max-width: 160px;
  border-radius: 8px;
  box-shadow: 0 0 6px #ccc;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.offers-gallery img:hover {
  transform: scale(1.05);
}

/* Kandidáti */
.team-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 1em;
}

.team-gallery img {
  width: 100%;
  max-width: 160px;
  border-radius: 8px;
  box-shadow: 0 0 6px #ccc;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.team-gallery img:hover {
  transform: scale(1.05);
}

/* Galerie školy */
.gallery-grid {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-grid img {
  width: 45%;
  border-radius: 10px;
}

/* Video sekce */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 2em auto;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Patička */
footer {
  background: #CB3ABD;
  color: white;
  text-align: center;
  padding: 2em;
}

.partners {
  margin-bottom: 1em;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  align-items: center;
}

.partner {
  text-align: center;
  max-width: 150px;
}

.partner-logo {
  width: 80px;
  border-radius: 8px;
  margin-bottom: 0.5em;
}

footer .copyright {
  margin-top: 1em;
  font-size: 0.9em;
}

/* Mobilní verze */
@media (max-width: 600px) {
  .logo-row {
    flex-direction: column;
    gap: 0.5em;
  }

  .logo-x {
    font-size: 2em;
  }

  .gallery-grid {
    flex-direction: column;
    gap: 1em;
  }

  .gallery-grid img {
    width: 100%;
  }

  .cta-button {
    display: inline-block;
    margin-top: 1em;
    font-size: 1em;
  }

  header h1 {
    font-size: 1.8em;
  }

  header p {
    font-size: 1em;
  }

  .candidate-content {
    flex-direction: column;
    text-align: center;
  }

  .candidate-text {
    text-align: center;
  }

  .candidate-gallery img,
  .offers-gallery img,
  .team-gallery img {
    max-width: 45%;
  }
}
