* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #2b2623;
  background-color: #faf8f5;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sekcja powitalna (Hero) */
.hero {
  background-color: #1f1a17;
  color: #f5efe6;
  text-align: center;
  padding: 100px 20px 80px;
}

.logo {
  font-size: 2.8rem;
  letter-spacing: 6px;
  font-weight: 800;
  color: #ffffff;
}

.tagline {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c49a6c;
  margin-top: 5px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero .desc {
  max-width: 620px;
  margin: 0 auto 35px;
  color: #c9c1b9;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  background-color: #c49a6c;
  color: #1f1a17;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #b08759;
}

/* Główne sekcje */
.section {
  padding: 80px 0;
  text-align: center;
}

.section h2 {
  font-size: 1.8rem;
  color: #1f1a17;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Kafelki z atutami */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  text-align: left;
}

.feature-card {
  background: #ffffff;
  padding: 30px 25px;
  border: 1px solid #e8e2d9;
  border-radius: 4px;
}

.feature-card h3 {
  color: #8c582f;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: #55504c;
  font-size: 0.95rem;
}

/* Galeria */
.bg-light {
  background-color: #f2ece4;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  background-color: #e0d7cd;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Kontakt */
.contact-section p {
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
  color: #443f3b;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #c49a6c;
  color: #8c582f;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.contact-btn:hover {
  background-color: #c49a6c;
  color: #ffffff;
}

/* Stopka */
footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
  color: #8c857e;
  border-top: 1px solid #e8e2d9;
}