/* Ogólne */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d;
  color: #f1f1f1;
  line-height: 1.6;
  text-align: center;
}

/* Logo */
.logo {
  max-width: 280px;
  margin-bottom: 20px;
}

/* Nagłówek */
header {
  background: linear-gradient(135deg, #111, #1a1a1a);
  padding: 30px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.header-content {
  display: flex;
  justify-content: center; /* całość wyśrodkowana */
  align-items: center;
  gap: 40px; /* odstęp między logo a playerem */
  flex-wrap: wrap;
}

.logo {
  max-width: 220px;
}

.player-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.listen-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f5d7a1;
}

.player-btn {
  background: #e63946;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.player-btn:hover {
  background: #ff4757;
  transform: scale(1.05);
}

/* Sekcje */
section {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #e63946;
}
section p, section li {
  font-size: 1.1rem;
  color: #ccc;
}
ul {
  list-style: none;
  margin-top: 20px;
}
li {
  margin: 10px 0;
}

/* Sekcja O nas */
.about-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.about-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #13343b, #3a0d1a);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  flex-shrink: 0;
  margin-top: 8px;
}

.about-text {
  flex: 1;
  max-width: 700px;
}


/* Sekcja wyróżniona */
.highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #13343b, #3a0d1a);
  border-radius: 15px;
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 900px;
  color: #f8f8f8;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}
.highlight h2 {
  color: #f5d7a1;
  margin-bottom: 15px;
}
.highlight p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}


/* Linki */
a { color: #e63946; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Stopka */
footer {
  background: #1a1a1a;
  text-align: center;
  padding: 25px;
  color: #777;
  font-size: 0.9rem;
}

#audioPlayer {
  display: none;
}

