
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.hero {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  background: linear-gradient(45deg, #4a148c, #7b1fa2, #d500f9, #ff4081);
  background-size: 400% 400%;
  animation: galaxyMove 15s infinite linear alternate;
  color: white;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: filter 0.3s ease-out;
  z-index: 0;
}

@keyframes galaxyMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.quilted-pattern {
  position: absolute;
  top: -530px;
  left: -240px;
  width: max(150vw, 2000px);
  height: max(150vh, 2000px);
  background-color: rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.3),
      rgba(0, 0, 0, 0.1)
    ),
    linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1));
  background-size: 120px 120px;
  transform: rotate(45deg);
  opacity: 0.15;
  z-index: 0;
}

.quilted-pattern::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 60px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      transparent 49%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent 51%
    ),
    linear-gradient(
      to right,
      transparent 49%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent 51%
    );
  background-size: 120px 120px;
  opacity: 1;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeIn 1s ease-out forwards;
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: normal;
  color: white;
  text-align: center;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  font-family: "Poiret One", sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.2s ease-out 0.5s forwards;
}

.btn {
  margin-top: 100px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.2s ease-out 1s forwards;
}

.btn:hover {
  background: white;
  color: #7b1fa2;
}

.hero-logo,
.hero-tagline,
.btn {
  position: relative;
}

.logo-img {
  max-width: 260px;
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.8));
  animation: soft-glow 2s infinite alternate;
}

@keyframes soft-glow {
  0% {
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.6));
  }
  100% {
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 1));
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

.menu-bar.visible {
  background: white;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.menubar-logo {
  width: 120px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-bar.visible .menubar-logo {
  opacity: 1;
  transform: translateY(0);
}

.menu-button {
  width: 35px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-button span {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.6);
}

.menu-bar.visible .menu-button span {
  background: black;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.6);
}

.menu-button:hover {
  transform: scale(1.1);
}

.menu-button.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-button.open span:nth-child(2) {
  opacity: 0;
}

.menu-button.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.snap-container {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100vh;
  min-height: 100vh;
}

.snap-container > section {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  min-height: 100vh;
  width: auto;
  margin-left: 10px;
  margin-right: 10px;
}

.hero-bg {
  background: transparent;
  min-height: 100vh;
}    

.modern-about {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.modern-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: -1;
}

.about-logo {
text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 500px;
}

.about-title,
.services-title {
  font-family: "Poiret One", serif;
  font-size: 31px;
  color: #4a148c;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-intro,
.about-desc,
.services-intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-subtitle {
  font-family: "Poiret One", serif;
  font-size: 28px;
  color: #7b1fa2;
  margin: 30px 0 10px;
}

.about-footer {
background: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  font-size: 1.1rem;
  color: #555;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
transition: transform 0.3s ease, box-shadow 0.3s ease;
line-height: 1.6;
}

.about-footer:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fadeInUp.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.5s;
}
.delay-3 {
  animation-delay: 0.7s;
}
.delay-4 {
  animation-delay: 0.9s;
}
.delay-5 {
  animation-delay: 1.1s;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: left;
  }
  .about-text {
    text-align: left;
  }
  .about-title,
  .about-subtitle {
    text-align: left;
  }
}

.services {
  background: white;
  padding: 80px 20px;
  text-align: left;
}

/* Siatka usług */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Karty usług */
.service-card {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
width:100%
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 50px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
font-family: 'Poiret One';
  font-size: 1.4rem;
  color: #4a148c;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
text-align: justify;
}

.pricing {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.price-item {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
}

.location {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.contact {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

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

.contact input,
.contact textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact button {
  background: #7b1fa2;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.contact button:hover {
  background: #d500f9;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #7b1fa2;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  z-index: 10;
}

.floating-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-btn:hover {
  background: #d500f9;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

hr {
  margin: 20px 0px;
  border-right: 0px;
  border-bottom: 0px;
  border-left: 0px;
  border-image: initial;
  border-top: 1px solid #d9d9d9;
  box-sizing: content-box;
  height: 0px;
}
