body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  color: #333;
}

.header {
  background-color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.logo {
  width: 150px;
  height: auto;
}

.tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: #d39fa7;
  margin-top: 0.5rem;
}

.navbar {
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 0.5rem 0;
  text-align: center;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  display: inline-block;
  margin: 0 1rem;
}

.nav-list a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #d39fa7;
}

/* Tło sekcji */
.background {
  background-image: url('serduszko.jpg'); /* tu wstaw nazwę pliku tła */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 3rem 0;
}

/* Overlay dla lepszej czytelności tekstu */
.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.6);
  z-index: -1;
}

.content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: rgba(255,255,255,0.8);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#o-mnie h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #d39fa7;
  margin-bottom: 1rem;
  text-align: center;
}

#o-mnie p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}
#galeria h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #d39fa7;
  margin-bottom: 1rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}
/* Lightbox – tło i zdjęcie */
#lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  cursor: default;
}
#kontakt h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #d39fa7;
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.8rem;
  background-color: #d39fa7;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #c0888f;
}
#kontakt a {
  color: #d39fa7;
  text-decoration: none;
  font-weight: 500;
}

#kontakt a:hover {
  text-decoration: underline;
}