/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background: #1f1f1f;
  padding: 15px 0;
  color: #fff;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Slider */
.slider {
  width: 100%;
  margin-top: 10px;

}

/* Section titles */
.section-title {
  font-size: 1.8rem;
  margin: 40px 0 15px 0;
  text-align: center;
}

/* "Witamy" */
.welcome {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Usługi */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
  gap: 20px;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.service-box img {
  width: 120px;
  margin-bottom: 10px;
}

/* Galeria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 4px;
}

/* Contact */
.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Mobile */
@media (max-width: 768px) {
  nav ul {
    gap: 12px;
  }
}
