
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Font & body */
body {
  font-family: 'Poppins', sans-serif;
  background: #f3e7dc url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat;
  color: #3b2f2f;
  min-height: 100vh;
}

/* Header - tło drewniane bez ciemnej nakładki */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  color: #5a3e1b;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  max-width: 400px;
  margin: 0 auto;
}

/* Container dla sekcji */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Sekcje */
.section {
  background: #fff9f1cc; /* lekko kremowe, półprzezroczyste */
  border-radius: 12px;
  padding: 30px 25px;
  margin-bottom: 40px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.07);
  text-align: center;
}

.section h2 {
  color: #7a4c27;
  font-size: 26px;
  margin-bottom: 20px;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3c2a;
}

/* Siatka usług */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
  margin-top: 25px;
}

.service-card {
  background: #f1e6d6;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
  color: #6b4f2d;
  cursor: default;
}

.service-card:hover {
  background: #ddcba4;
  transform: translateY(-5px);
}

.service-card i {
  font-size: 28px;
  margin-bottom: 12px;
}

/* Kontakt */
.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.info-item {
  background: #f6efe2cc;
  border-radius: 10px;
  padding: 14px 24px;
  color: #5c3f1a;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.08);
}

.info-item i {
  color: #a07a42;
  font-size: 20px;
}

/* Stopka */
.footer {
  background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat #5a3e1b;
  color: #f2e9df;
  text-align: center;
  padding: 22px 15px;
  font-size: 14px;
  margin-top: 50px;
}

/* Responsywność */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    max-width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .info-item {
    font-size: 14px;
    padding: 12px 18px;
  }
}
