@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Globalne style */
body {
  background-color: #121212;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Nagłówek */
header {
  background: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

.logo {
  width: 150px;
}

nav a {
  color: #bbb;
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 600;
  background: linear-gradient(90deg, #8f44fd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: #bbb;
  max-width: 600px;
  margin: 20px auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta,
.shop-link {
  display: inline-flex;
  align-items: center;
  background: #8f44fd;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta:hover,
.shop-link:hover {
  background: #6b32d3;
}

.shop-link .cart-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Sekcja Usług */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.service-item {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
  animation: fadeIn 1s ease-in-out;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  color: #8f44fd;
  font-size: 20px;
}

/* Sekcja Kontaktowa */
.contact-section {
  background: #1e1e1e;
  padding: 50px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left,
.contact-right {
  flex: 1 1 50%;
  padding: 20px;
}

.contact-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-left p,
.contact-detail {
  color: #bbb;
  line-height: 1.5;
  margin-bottom: 15px;
}

.contact-detail strong {
  color: #fff;
}

.contact-right form {
  background: #121212;
  padding: 20px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border-radius: 4px;
  border: none;
  background: #1e1e1e;
  color: #f0f0f0;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.send-btn {
  background: #8f44fd;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.send-btn:hover {
  background: #6b32d3;
}

.privacy-info {
  margin-top: 10px;
  font-size: 14px;
  color: #bbb;
}

.privacy-info a {
  color: #8f44fd;
  text-decoration: none;
}

/* Stopka */
.bottom-footer {
  background: #121212;
  padding: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 14px;
  color: #bbb;
}

.footer-right a {
  color: #8f44fd;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
  .contact-left,
  .contact-right {
    flex: 1 1 100%;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-right a {
    margin-left: 0;
    margin: 0 10px;
  }
}
/* Sekcja Realizacje */
.realizacje {
  text-align: center;
  padding: 80px 20px;
}

.realizacje h1 {
  font-size: 36px;
  background: linear-gradient(90deg, #8f44fd, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.realizacje p {
  font-size: 18px;
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s, filter 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(80%);
}

.back-home {
  margin-top: 40px;
}

.back-home .cta {
  display: inline-block;
  background: #8f44fd;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.back-home .cta:hover {
  background: #6b32d3;
}

/* Responsywność */
@media (max-width: 768px) {
  .realizacje p {
    font-size: 16px;
  }
}
