body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #0a0f1c, #1a1f2e);
  color: #e0e0e0;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background-color: #10151f;
}

.logo {
  margin-right: auto;
  }

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #00bfff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffffff;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  color: #00bfff;
}

.hero p {
  font-size: 1.2em;
  margin-top: 10px;
}
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f1624;
  padding: 20px;
}

.banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px #00bfff;
}

.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #00bfff;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px #00bfff;
  transition: transform 0.3s;
  transform: rotate(0deg);
  max-width: 300px;
}

.photo:hover {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 0 30px #00e0ff;
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.caption {
  margin-top: 10px;
  font-size: 0.95em;
  color: #e0e0e0;
  font-style: italic;
}

.caption {
  margin-top: 10px;
  font-size: 0.95em;
  color: #e0e0e0;
  font-style: italic;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.photo:hover .caption {
  transform: scale(1.1);
  color: #00e0ff;
}

.radio-container {
  position: relative;
  display: inline-block;
}

.radio-img {
  width: 300px;
  border-radius: 12px;
}

.notes {
  position: absolute;
  top: 20px;
  left: 30px;
  animation: floatNotes 3s infinite ease-in-out;
}

.note {
  display: block;
  font-size: 24px;
  color: #00e0ff;
  animation: pulseNote 1.5s infinite alternate;
}

@keyframes floatNotes {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes pulseNote {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.2); }
}

.radio-img {
  width: 300px;
  transition: transform 0.4s ease;
}

.radio-link:hover .radio-img {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 0 10px #00e0ff);
}

.mapa-kontener {
    overflow: hidden;
    padding-bottom: 56.25%; /* Proporcje 16:9 */
    position: relative;
    height: 0;
}

.mapa-kontener iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}