/* Tmavý styl */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111111;
  color: #f0f0f0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hlavička */
.header {
  text-align: center;
  margin-bottom: 2rem;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.header .tagline {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 1rem;
}

.header .intro {
  font-size: 1rem;
  color: #aaaaaa;
}

/* Seznam služeb */
.services {
  margin-bottom: 2.5rem;
}

.services h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.services ul {
  list-style-type: none;
  padding-left: 0;
}

.services li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.services li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #8888ff;
}

/* Galerie Před - Po */
.gallery {
  margin-bottom: 2.5rem;
}

.gallery h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #e0e0e0;
}

.gallery .before-image {
  margin-bottom: 1.5rem;
}

.gallery .before-image p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #bbbbbb;
}

.gallery img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  background-color: #222222;
}

/* Po obrázky vedle sebe (na desktopu) */
.after-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.after-images .after-image {
  flex: 1 1 280px;
  text-align: center;
}

.after-images .after-image p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #bbbbbb;
}

/* Video */
.video {
  margin-bottom: 2rem;
  text-align: center;
}

.video h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.video video {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Email kontakt pod videem */
.contact {
  text-align: center;
  margin-top: 1rem;
}

.contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #bbbbbb;
}

.contact .email {
  text-decoration: none;
  color: #8888ff;
  font-weight: bold;
  font-size: 1.1rem;
}

.contact .email:hover {
  color: #aaaaff;
  text-decoration: underline;
}
