/* Reset i podstawy */
:root {
  --primary-color: #BEBEBE;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #555;
  --white: #fff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto Mono', monospace;
  background-color: var(--light-gray);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Nawigacja */
.sticky-nav {
  position: sticky;
  top: 0;
  background-color: var(--primary-color);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition);
}

.sticky-nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.sticky-nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.5rem;
  transition: var(--transition);
}

.sticky-nav ul li a:hover {
  color: #E5E5E5;
  transform: translateY(-2px);
}

/* Sekcje ogólne */
.section {
  padding: 4rem 1rem;
  text-align: center;
}

.obraz {
  margin: 3rem 0;
  text-align: center;
}

.obraz img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Sekcja O nas */
.info-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 10px;
  gap: 2rem;
}

.text-box {
  flex: 1 1 45%;
  padding: 1rem;
  min-width: 300px;
}

.text-box h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-align: center;
}

.text-box p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.image-box {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.image-box img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Nagłówki sekcji */
.oferta {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0;
  color: var(--text-color);
}

/* Galeria */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: var(--transition);
  aspect-ratio: 1/1;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

#lightbox-img {
  max-height: 80vh;
  max-width: 90vw;
  border: 3px solid var(--white);
  border-radius: 8px;
}

.close, .arrow {
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  position: absolute;
  z-index: 10;
}

.close {
  top: 30px;
  right: 30px;
  font-size: 40px;
}

.arrow {
  font-size: 40px;
  padding: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.close:hover, .arrow:hover {
  color: #ccc;
  transform: scale(1.1);
}

.opinie {
  background-color: #fdf8f9; /* całe tło sekcji w bladym różu */
  padding: 50px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.opinie h2 {
  font-size: 28px;
  color: #c86e8a;
  margin-bottom: 30px;
}

.opinie-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.opinia p {
  font-size: 18px;
  color: #444;
  margin: 0;
}

.autor {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #999;
  font-style: italic;
}
.opiniagoogle {
  font-size: 28px;
 
  margin-bottom: 30px;
}
.opiniagoogle a {
  color: #c86e8a;
  text-decoration: none;
}
/* Mapa */
.mapa {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mapa iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Stopka */
footer {
  background-color: var(--light-gray);
  color: var(--text-color);
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--dark-gray);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  background-color: var(--medium-gray);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
  font-weight: bold;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-links a.facebook:hover {
  background-color: #3b5998;
  color: var(--white);
}

.social-links a.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}


.copyright {
  border-top: 1px solid #ddd;
  padding: 1.5rem 0;
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Media Queries */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .sticky-nav {
    flex-direction: column;
    padding: 1rem;
  }
  
  .sticky-nav ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .sticky-nav ul li a {
    font-size: 1rem;
  }
  
  .logo img {
    width: 70px;
    height: 70px;
  }
  
  .info-section {
    padding: 2rem;
    flex-direction: column;
  }
  
  .text-box, .image-box {
    min-width: 100%;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .mapa iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .sticky-nav ul li a {
    font-size: 0.9rem;
    padding: 0.3rem;
  }
  
  .logo img {
    width: 60px;
    height: 60px;
  }
  
  .text-box h2 {
    font-size: 2rem;
  }
  
  .text-box p {
    font-size: 1rem;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .mapa iframe {
    height: 300px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .social-links a {
    padding: 0.7rem 1rem;
  }
}