/* 
  STARTER CSS
  Podmień placeholdery w klasach .slide-1, .slide-2 itd.
  Przykład:
  background-image: url("../img/twoje-zdjecie.jpg");
*/

:root {
  --dark: #101014;
  --light: #f7f7f4;
  --muted: #6c757d;
  --accent: #c8a15a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--dark);
}

/* NAVBAR */
.navbar {
  transition: background-color 0.3s ease, padding 0.3s ease;
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.70)
}

.navbar.navbar-scrolled {
  background: rgba(16, 16, 20, 0.9);
  padding: 12px 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  letter-spacing: 0.03em;
}

.navbar li {
  padding: 0 !important;
  margin: 0 !important;
}

a.nav-link {
  font-size: 1.05rem;
  border-left: 1px solid #333;
  padding: 5px 25px !important;
}

/* HERO */
.hero-slider {
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.slide-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Placeholdery zamiast zdjęć */
.slide-1 {
  background-image:
    linear-gradient(135deg, rgba(16, 16, 20, 0.45), rgba(16, 16, 20, 0.15)),
    url("../img/photo0.jpg");
}

.slide-2 {
  background-image:
    linear-gradient(135deg, rgba(16, 16, 20, 0.45), rgba(16, 16, 20, 0.15)),
    url("../img/photo1.jpg");
}

.slide-3 {
  background-image:
    linear-gradient(135deg, rgba(16, 16, 20, 0.45), rgba(16, 16, 20, 0.15)),
    url("../img/photo2.jpg");
}

.slide-4 {
  background-image:
    linear-gradient(135deg, rgba(16, 16, 20, 0.45), rgba(16, 16, 20, 0.15)),
    url("../img/photo3.jpg");
}

.slide-5 {
  background-image:
    linear-gradient(135deg, rgba(16, 16, 20, 0.45), rgba(16, 16, 20, 0.15)),
    url("../img/photo4.jpg");
}

.slide-6 {
  background-image:
    linear-gradient(135deg, rgba(16, 16, 20, 0.45), rgba(16, 16, 20, 0.15)),
    url("../img/photo5.jpg");
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(200, 161, 90, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
  padding-top: 80px;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-content h1,
.hero-content h2 {
  font-size: 5rem;
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 620px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
}

.carousel-item {
  position: relative;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* SECTIONS */
.section-padding {
  padding: 110px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
}

.section-intro {
  max-width: 980px;
  color: var(--muted);
}

.feature-card {
  min-height: 380px;
  padding: 44px;
  border-radius: 28px;
  background: url("../img/photo7.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-weight: 800;
}

/* GALLERY */
.gallery-item {
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 16, 20, 0.25), rgba(16, 16, 20, 0.55)),
    url("https://placehold.co/800x600/6b7280/ffffff?text=Galerie");
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  filter: saturate(1.1);
}

/* GALLERY MASONRY + LIGHTBOX */
.galerie-section {
  background: #fff;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 24px;
}

.gallery-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  border-radius: 26px;
  overflow: hidden;
  break-inside: avoid;
  background: #101014;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(16, 16, 20, 0.02),
    rgba(16, 16, 20, 0.55)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card::after {
  content: "\F62C";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #101014;
  background: #fff;
  font-size: 1.45rem;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.16);
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Responsive masonry */
@media (max-width: 991px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .gallery-masonry {
    column-count: 1;
  }

  .gallery-card {
    border-radius: 20px;
  }
}


/* CONTACT */
.contact-section {
  background:
    linear-gradient(135deg, rgba(16, 16, 20, 0.96), rgba(16, 16, 20, 0.86)),
     url("../img/photo6.jpg");
  background-position: center center;
  background-size: cover;
  
}

.contact-data p {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-data i {
  color: var(--accent);
}

.contact-form {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.contact-form .form-control {
  min-height: 54px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form textarea.form-control {
  min-height: 160px;
}

.footer {
  background: #0b0b0d;
  color: rgba(255, 255, 255, 0.65);
}

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

/* SCROLL REVEAL EFFECT */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* CATALOGS */
.kataloge-section {
  position: relative;
}

.catalog-card {
  padding: 36px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.13);
}

.catalog-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #101014;
  color: #fff;
  font-size: 2.1rem;
}

.catalog-card h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
  font-weight: 800;
}

.catalog-card p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* MOBILE */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(16, 16, 20, 0.95);
  }

  .hero-slider {
    min-height: 680px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .contact-form {
    padding: 24px;
  }

  .navbar-brand img {
    width: 280px;
  }

  .navbar-toggler {
    margin-right: 15px;
  }
}

@media (max-width: 575px) {
  .hero-content {
    padding-top: 120px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2.65rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
