/* ====== Globalne ====== */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f4f0fa;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #6a0dad, #8e44ad);
  padding: 30px 20px;
  text-align: center;
  color: white;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

header p {
  margin-top: 8px;
  font-size: 1.1rem;
}

/* ====== Menu ====== */
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #5a0c9e;
  padding: 12px 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
}

/* ====== Main ====== */
main {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: #6a0dad;
  text-align: center;
  margin-bottom: 15px;
}

/* ====== Hero obrazek ====== */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ====== Team ====== */
.team {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.team-member {
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
}

.team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* ====== Opinie ====== */
.comments {
  max-width: 800px;
  margin: auto;
}

.comment {
  background: white;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ====== Formularz ====== */
form {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background: #6a0dad;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 1rem;
}

form button:hover {
  background: #8e44ad;
}

/* ====== Stopka ====== */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
