/* Import niestandardowej czcionki */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-image: url(tło1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  background-color: #f8f8f8;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}
div{
    background-color: rgba(0, 0, 0, 0.6); /* czarne tło z przezroczystością */
    color: #ffffff; /* biały tekst dla kontrastu */
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  }
  .artysta{
    float: left;
    width: 180px;
    height: auto;
    margin: 0 20px 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  }

.blok::after{
  display: block;
  clear: both;
  content: "";
}

body.index{
  color: burlywood;
}

body.historia{
background-image: url(skład.jpg);
background-size: cover;
background-position: center;
background-attachment: fixed; 
}
body.artysci{
  background-image: url(bigband.jpg);
  background-size: cover;
background-position: center;
background-attachment: fixed; 
}
body.muzycy{
  background-image: url(bandzik.jpg);
  background-size: cover;
background-position: center;
background-attachment: fixed; 
}


header {
  background-color: #111;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
}

.logo {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.menu li {
  margin: 0.5rem;
}

.menu a {
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.menu a:hover {
  background-color: #922;
  transform: scale(1.05);
}

.menu a:active {
  background-color: #700;
}

.menu a:visited {
  color: #eee;
}

.menu a.active {
  background-color: #555;
}

main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  flex: 1;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: peru;
}


article {
  margin-bottom: 2rem;
}

footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* RWD: zmiany na mniejszych ekranach */
@media screen and (max-width: 600px) {
  .menu {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}
.formularz-sekcja {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.formularz {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formularz input[type="text"],
.formularz input[type="email"],
.formularz select,
.formularz textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.formularz button {
  padding: 0.7rem;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.formularz button:hover {
  background-color: #555;
}

fieldset {
  border: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* Przygotowanie do druku */
@media print {
  nav,
  video,
  audio {
    display: none;
  }

  header, footer, main {
    color: black;
    background: white;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}
