
/* style.css */

  body {
  background-color: #f4f0fa; /* delikatny lawendowy */
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

header {
    background-color: #ffe3ec;
    padding: 1em;
    text-align: center;
    border-bottom: 2px solid #ffc9da;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: #a75d67;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 2em;
    max-width: 800px;
    margin: auto;
}

section#hero {
    background-color: #fff0f5;
    text-align: center;
    padding: 4em 2em;
}

section#kontakt a {
    color: #a75d67;
}

.button {
    display: inline-block;
    background-color: #f4c2c2; /* pastelowy róż */
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
.button:hover {
    background-color: #f9d5d5;
}
form input,
form textarea {
    display: block;
    width: 100%;
    margin: 0.5em 0;
    padding: 0.8em;
    border: 1px solid #ffc9da;
    border-radius: 5px;
    background-color: #fffafc;
}

form button {
    background-color: #ffaec9;
    color: white;
    border: none;
    padding: 0.8em 2em;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

form button:hover {
    background-color: #ff8fb3;
}

footer {
    background-color: #ffe3ec;
    text-align: center;
    padding: 1em;
    margin-top: 2em;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.logo-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.logo-container img {
    max-width: 350px;
    height: auto;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
/* 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.8);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
#aktualnosci {
    background-color: #fff7f9;
    padding: 2em;
    margin: 2em 0;
    border-radius: 10px;
    box-shadow: 0 0 10px #f3cfe1;
}

#aktualnosci h2 {
    color: #c86b9b;
    margin-bottom: 1em;
}

.aktualnosci-lista {
    list-style: none;
    padding-left: 0;
}

.aktualnosci-lista li {
    margin-bottom: 1em;
    font-size: 1.1em;
}
#kalendarz {
    padding: 40px 20px;
    background-color: #fff6fb;
}

#kalendarz h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #c55ea1;
}

#kalendarz p {
    margin-bottom: 20px;
}

#kalendarz form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#kalendarz input,
#kalendarz textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

#kalendarz button {
    padding: 10px;
    background-color: #c55ea1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.welcome-banner {
    background: linear-gradient(to right, #ffd4ec, #fbe8f3);
    color: #7c2264;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Georgia', cursive;
    animation: fadeSlide 2s ease-in-out;
    border-bottom: 1px solid #e7a9cc;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#cennik {
    padding: 40px;
    background-color: #fef9f9;
}

#cennik h3 {
    margin-top: 30px;
    color: #d18ba4;
}

.pakiety {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.pakiet {
    flex: 1;
    min-width: 200px;
    background-color: #fff0f5;
    border: 1px solid #e0c4d4;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
}

.dropdown-content li a {
  color: #444;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content li a:hover {
  background-color: #f7eaf4;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.cennik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.cennik-box {
  background-color: #fff6fb;
  border: 1px solid #f3d7e6;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.cennik-box:hover {
  transform: scale(1.02);
}

.cennik-box h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #d04a89;
}

.cennik-box a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background-color: #d04a89;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.cennik-box a:hover {
  background-color: #b03a74;
}
#opinie {
    background-color: #fff6fb;
    padding: 40px 20px;
    text-align: center;
}

.opinie-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.opinia-box {
    background-color: #ffffff;
    border: 1px solid #f2d3e2;
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: left;
}

.opinia-box blockquote {
    font-style: italic;
    margin: 15px 0;
    color: #5a2e4f;
}

.opinia-autor {
    font-weight: bold;
    text-align: right;
    color: #c55ea1;
    margin-top: 10px;
}

.opinia-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
#dlaczego-warto {
  background-color: #fff0f7;
  padding: 50px 20px;
  text-align: center;
}

.wartosci-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.wartosc {
  background-color: #ffffff;
  border: 1px solid #f3cde8;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.wartosc:hover {
  transform: translateY(-4px);
}

.wartosc .ikona {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
  color: #c55ea1;
}
#formularz-opinii {
  background-color: #fff0f7;
  padding: 40px 20px;
  text-align: center;
}

#formularz-opinii h2 {
  color: #c55ea1;
  margin-bottom: 10px;
}

#formularz-opinii p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

#formularz-opinii form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#formularz-opinii input,
#formularz-opinii textarea {
  padding: 12px;
  border: 1px solid #ffcce0;
  border-radius: 6px;
  font-family: inherit;
  background-color: #fffafc;
}

#formularz-opinii button {
  background-color: #e38abf;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

#formularz-opinii button:hover {
  background-color: #cc6ea9;
}
#newsletter {
  background-color: #fff3f9;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px dashed #f3cde8;
}

#newsletter h2 {
  color: #c55ea1;
  margin-bottom: 10px;
}

#newsletter p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

#newsletter form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

#newsletter input {
  padding: 12px;
  border: 1px solid #ffcce0;
  border-radius: 6px;
  background-color: #fffafc;
  font-family: inherit;
}

#newsletter button {
  background-color: #e38abf;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

#newsletter button:hover {
  background-color: #cc6ea9;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
}

.dropdown-content li a {
  color: #444
#dlaczego-warto {
  padding: 40px 20px;
  background-color: #fff0f7;
}

#dlaczego-warto h2 {
  text-align: center;
  color: #b34385;
  margin-bottom: 30px;
}

.warto-boxy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.warto-box {
  background-color: #fff;
  border-left: 5px solid #d18ba4;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.warto-box:hover {
  transform: translateY(-5px);
}

.warto-box h3 {
  margin-top: 0;
  color: #a94a7c;
  font-size: 1.1em;
}

.warto-box p {
  margin-top: 10px;
  color: #444;
}
#kalendarz {
  padding: 40px 20px;
  background-color: #fff6fb;
  border-top: 1px solid #f3d7e6;
  margin-top: 40px;
}

#kalendarz h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #c55ea1;
  text-align: center;
}

#kalendarz p {
  text-align: center;
  margin-bottom: 20px;
}

#kalendarz form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#kalendarz input,
#kalendarz textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

#kalendarz button {
  padding: 12px;
  background-color: #d04a89;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#kalendarz button:hover {
  background-color: #b03a74;
}
#kontakt {
  padding: 40px 20px;
  background-color: #fff0f5;
  text-align: center;
}

#kontakt h2 {
  color: #c55ea1;
  margin-bottom: 20px;
}

#kontakt p {
  margin: 5px 0;
}

#kontakt a {
  color: #a75d67;
  text-decoration: none;
  font-weight: bold;
}

#kontakt form {
  max-width: 600px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#kontakt input,
#kontakt textarea {
  padding: 10px;
  border: 1px solid #ffc9da;
  border-radius: 5px;
  font-family: inherit;
  background-color: #fffafc;
}

#kontakt button {
  background-color: #d04a89;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#kontakt button:hover {
  background-color: #b03a74;
}
footer {
  background-color: #ffe3ec;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 14px;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

footer .footer-links li a {
  color: #a94a7c;
  text-decoration: none;
  font-weight: bold;
}

footer .footer-links li a:hover {
  text-decoration: underline;
}
#dodaj-opinie {
  padding: 40px 20px;
  background-color: #fff6fb;
  border-top: 1px solid #f3d7e6;
  text-align: center;
}

#dodaj-opinie h2 {
  color: #c55ea1;
  margin-bottom: 10px;
}

#dodaj-opinie p {
  margin-bottom: 20px;
  font-size: 16px;
}

#dodaj-opinie form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#dodaj-opinie input,
#dodaj-opinie textarea {
  padding: 10px;
  border: 1px solid #ffc9da;
  border-radius: 5px;
  font-family: inherit;
  background-color: #fffafc;
}

#dodaj-opinie button {
  background-color: #d04a89;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#dodaj-opinie button:hover {
  background-color: #b03a74;
}
.link-opinia {
  margin-top: 20px;
  font-style: italic;
  font-size: 15px;
  color: #a75d67;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery img {
  width: 250px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}
body {
  background-color: #f4f0fa;
  color: #4b3d45;
  font-size: 17px;
  line-height: 1.6;
}

h2 {
  font-size: 28px;
  color: #7c2f58;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 20px;
  color: #a5426e;
  font-weight: 600;
}

nav ul li a {
  color: #7c2f58;
  font-weight: bold;
  font-size: 16px;
}

.oferta-box p,
.cennik-box p {
  color: #4b3d45;
  font-size: 16px;
  font-weight: 500;
}

a {
  color: #a5426e;
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  color: #c94f85;
}
#statystyki {
  background-color: #fff6fb;
  padding: 60px 20px;
  text-align: center;
}

.statystyki-boxy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.statystyka h3 {
  font-size: 36px;
  color: #d04a89;
  margin: 0;
}

.statystyka p {
  margin-top: 10px;
  font-size: 16px;
  color: #4b3d45;
}
