
/* Styl dla całej strony */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Menu nawigacyjne - nachodzące na slider */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
}

.logo {
  font-weight: bold;
  color: #b33;
  text-align: center;
  flex-grow: 1;
  font-size: 2rem;
}

.nav-links {
  list-style-type: none;
  display: flex;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Przycisk kontaktowy w menu */
.contact-button a {
  background-color: #228B22;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}

/* Styl nagłówka */
header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.header-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.header-content a {
  padding: 10px 20px;
  background-color: #b33;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Sekcja Oferta */
.oferta-section {
  padding: 60px 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.oferta-general {
  max-width: 800px;
  margin: 0 auto 40px;
}

.oferta-general h2 {
  font-size: 2.5rem;
  color: #b33;
  margin-bottom: 20px;
}

.oferta-general p {
  font-size: 1.5rem; /* Zwiększenie wielkości czcionki oferty ogólnej */
  color: #333;
  line-height: 1.6;
}

/* Usługi dodatkowe */
.oferta-services {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service-item {
  flex: 1;
  background-color: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #b33;
}

.service-item img {
  width: 100%;
  height: 325px; /* Zwiększenie wysokości zdjęć w usługach dodatkowych o 30% */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.5rem;
  color: #b33;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Stylizacja końcowej części "oferta-closing" */
.oferta-closing {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
}

.oferta-closing .highlight {
  color: #b33;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.oferta-closing p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Stylizacja sekcji galerii */
.gallery-section {
  padding: 60px 30px;
  text-align: center;
  position: relative;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 10px 0;
  max-width: 90%;
}

.gallery-container img {
  width: 325px; /* Zwiększenie rozmiaru zdjęć w galerii */
  height: 325px; /* Ustawienie wysokości podobnej do zdjęć w usługach dodatkowych */
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* Strzałki do przewijania galerii */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  z-index: 10;
}

.gallery-nav.left {
  left: 0;
}

.gallery-nav.right {
  right: 0;
}

/* Stylizacja lightboxa */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

/* Stylizacja sekcji kontaktowej */
.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  align-items: center;
  background: #f4f4f4;
}

.contact-info {
  max-width: 400px;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-map {
  width: 50%;
}
