@charset "UTF-8";
body {
  font-family: "Lato", sans-serif;
  background-color: #fafafa;
  color: #222;
  margin: 0;
  line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
  box-shadow: 10px 10px 10px 10px #c6c6c6;
  background: #eae7e7;
  width: 100%;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0.5rem 0;
}

.hero-subtitle {
  color: #b89b33;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

/* ===== SOCIAL MEDIA ===== */
.social-media-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* każde logo w równym kwadracie */
.social-media-row a {
  width: clamp(80px, 12vw, 120px);
  height: clamp(80px, 12vw, 120px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* obrazek dopasowany i wyśrodkowany */
.social-media-row img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-media-row img:hover {
  transform: scale(1.1);
}

/* lepsze ułożenie na bardzo małych ekranach */
@media (max-width: 480px) {
  .social-media-row {
    gap: 1rem;
  }
  .social-media-row a {
    width: 80px;
    height: 80px;
  }
}
/* ===== HERO IMAGES ===== */
.hero-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-images img {
  width: clamp(100px, 25vw, 300px);
  border-radius: 10px;
  filter: grayscale(100%);
  transition: filter 0.6s ease;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.hero-images img:hover {
  filter: grayscale(0%);
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.main-nav a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #b89b33;
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===== MAIN ===== */
.container {
  min-height: 40vw;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.container h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  margin-top: 3rem;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
}

.site-footer a {
  color: #b89b33;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 768px) {
  .hero-images img {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .main-nav {
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-images img {
    width: 80%;
  }
  .social-media-row {
    gap: 1rem;
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem; /* odstep zdj. */
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto; /* wysrodkowanie całej galerii */
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 = 9 / 16 * 100 zd */
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.no-copy {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/*# sourceMappingURL=style.css.map */