/* --- PODSTAWOWE STYLOWANIE --- */
body { 
  margin: 0; 
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  padding-bottom: 60px; /* żeby treść nie zasłaniała dolnego menu */
  line-height: 1.6; 
  padding: 0;
} 

.center-line { 
  position: relative; 
  text-align: center; 
  margin: 35px 0; 
}
.center-line::before { 
  content: ""; 
  display: block; 
  width: 80px; 
  height: 3px; 
  background: #5C4033; 
  margin: 0 auto 10px auto; 
} 

h1 { color: #5C4033; } 

header img { 
  width: 100%; 
  max-width: 800px; 
  height: auto; 
  display: block; 
  margin: 0 auto; 
} 

header h1, header p { 
  text-align: center; 
  margin: 10px 0; 
} 

/* --- SEKCJE --- */
main { padding: 15px; }
.opis, .kontakt, .telefon, .adres, .czas, .cena, .galeria { margin-bottom: 20px; }

/* --- TABELA --- */
table { width: 100%; border-collapse: collapse; }
td, th { border: 1px solid #ccc; padding: 10px; text-align: left; }

a { text-decoration: none; color: black; } 

button { 
  background-color: #5C4033; 
  color: white; 
  border: none; 
  border-radius: 20px; 
  font-size: 1rem; 
  margin: 5px 0; 
  padding: 10px 15px; 
  font-family: inherit; 
  cursor: pointer; 
  transition: background 0.3s ease; 
} 
button:hover { 
  background-color: #E2D6F5; 
  color: black; 
} 

.cena { 
  max-width: 1200px; 
  margin: 40px auto; 
  padding: 20px; 
} 

.cenaT { 
  width: 100%; 
  border: 1px solid black; 
  border-collapse: collapse; 
  margin-top: 10px; 
} 

.opis1 { 
  background-color: #E0E0E0; 
  max-width: 1200px; 
  margin: 20px auto; 
  padding: 20px; 
} 

.allInfo { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 2rem; 
  justify-content: space-between; 
} 

.allInfo section { 
  flex: 1 1 250px; 
  padding: 15px; 
  border-radius: 12px; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
} 

.allInfo h3 i { 
  margin-right: 8px; 
  color: #5C4033; 
} 

/* --- MAPA --- */
.mapa iframe { 
  width: 100%; 
  height: 300px; 
  border: 0; 
} 

/* --- DOLNA NAWIGACJA --- */
.nav { 
  position: fixed; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  display: flex; 
  justify-content: space-around; 
  align-items: center; 
  background: #fff; 
  border-top: 1px solid #ccc; 
  padding: 10px 0; 
  z-index: 100;
}

.nav-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-decoration: none; 
  color: #5C4033; 
  font-size: 14px; 
} 

.nav-item i { 
  font-size: 20px; 
  margin-bottom: 5px; 
} 

/* --- STOPKA --- */
footer { 
  background-color: #5C4033; 
  color: white; 
  text-align: center; 
  padding: 20px; 
  font-size: 0.9rem; 
  margin-top: 40px; 
  margin-bottom: 40px; 
} 

/* --- GALERIA (POJEDYNCZY UKŁAD PIONOWY) --- */
.galeria {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.galeria-all {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

/* Każdy element galerii — zdjęcie lub wideo */
.galeria-item {
  width: 100%;
}

/* Obrazy */
.galeria img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.galeria img:hover {
  transform: scale(1.02);
}

/* Wideo — responsywne */
.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.galeria video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  max-height: 600px;
}

/* Overlay do odtwarzania */
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
  h1 { font-size: 28px; } 
  h3 { font-size: 20px; } 
  .czas1 td, .cenaT td, .cenaT th { font-size: 14px; padding: 6px; } 
  .nav-item { font-size: 12px; }
  .galeria video { max-height: 400px; }
}

@media (max-width: 480px) { 
  header h1 { font-size: 34px; text-align: center; } 
  p { font-size: 18px; } 
  button { width: 100%; padding: 10px; font-size: 16px; } 
  .galeria video { max-height: 300px; }
}



