/* Base styles */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 30px 60px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}

/* DARK THEME (default) */
main {
  background-color: #1c1c1ca4;
  color: #f0f0f0;
}

.description {
  color: #ccc;
}

.prices {
  color: #ccc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}


.prices p{
    font-size: 15px;
}
.prices h2 {
  color: #d1ab30;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-align: center;
}

.prices ul {
  list-style: none;
  padding: 0;
}

.prices ul li {
  padding: 14px 0;
  border-bottom: 1px solid #444;
  font-size: 20px;
}

.prices ul li:last-child {
  border-bottom: none;
}

.before-after h3 {
  color: #d1ab30;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* LIGHT THEME OVERRIDES */
.light-mode main {
  background-color: #f9f9f9a8;
  color: #222;
}

.light-mode .description {
  color: #1a1a1a;
}

.light-mode .prices {
  color: #131313;
}

.light-mode .prices h2 {
  color: #b37400;
}

.light-mode .prices ul li {
  color: #131313;
  border-bottom: 1px solid #e1d3a7;
}

.light-mode .prices ul li:last-child {
  border-bottom: none;
}

.light-mode .before-after h3 {
  color: #b37400;
}

/* Shared styles (not dependent on theme) */
h1 {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 2.6rem;
  margin-bottom: 15px;
  text-align: center;
  color: #d1ab30;
}

.service-photo {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  filter: saturate(1.2) brightness(0.9);
}

.before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.before-after div {
  flex: 1 1 300px;
  text-align: center;
}

.before-after img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  margin-bottom: 20px;
}

.btn-kontakt {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  padding: 14px 30px;
  background-color: #d1ab30;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.btn-kontakt:hover {
  background-color: #b27a00;
}

.pakiet-list {
  margin: 0.5em 0 0.5em 1.2em;
  padding-left: 1.1em;
  list-style: disc;
  color: #fff;
  font-size: 1em;
}
.pakiet-list li {
  margin-bottom: 0.3em;
}