/* =========================================================
   1. USTAWIENIA OGÓLNE STRONY
   ========================================================= */

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #3f403d;
  background: #ede4da;
}


/* =========================================================
   2. NAWIGACJA / GÓRNE MENU
   ========================================================= */

.top-menu {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(245, 239, 232, 0.96);
  border-bottom: 1px solid rgba(120, 110, 95, 0.18);
  backdrop-filter: blur(6px);
}

.top-menu__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-menu__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.top-menu__logo img {
  display: block;
  height: 54px;
  width: auto;
  object-fit: contain;
}

.top-menu__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex-wrap: wrap;
}

.top-menu__nav a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1f1f1f;
  transition: color 0.2s ease;
}

.top-menu__nav a:hover,
.top-menu__nav a.active {
  color: #ff7a00;
}/* =========================================================
   2. NAWIGACJA / GÓRNE MENU
   ========================================================= */

.top-menu {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(245, 239, 232, 0.96);
  border-bottom: 1px solid rgba(120, 110, 95, 0.18);
  backdrop-filter: blur(6px);
}

.top-menu__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-menu__logo {
  text-decoration: none;
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #171717;
  line-height: 1;
  flex-shrink: 0;
}

.top-menu__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex-wrap: wrap;
}

.top-menu__nav a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1f1f1f;
  transition: color 0.2s ease;
}

.top-menu__nav a:hover,
.top-menu__nav a.active {
  color: #ff7a00;
}


/* =========================================================
   3. GŁÓWNA SEKCJA STRONY / TŁO
   ========================================================= */

.home-watercolor {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0.18)),
    url("images/zdjecie_index_podklad.jpg") center top / cover no-repeat;
  min-height: 100vh;
  padding: 60px 20px 70px;
}

.home-watercolor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,248,237,0.68) 0%, rgba(255,248,237,0.32) 28%, rgba(255,248,237,0.08) 60%, rgba(255,248,237,0) 78%);
  pointer-events: none;
}


/* =========================================================
   4. GŁÓWNA SEKCJA STRONY / UKŁAD
   ========================================================= */

.hero-watercolor,
.kafelki,
.wizualizacje,
.gallery {
  position: relative;
  z-index: 2;
}


/* =========================================================
   5. GÓRNA CZĘŚĆ STRONY / HERO
   ========================================================= */

.hero-watercolor {
  max-width: 1100px;
  margin: 0 auto 42px;
  padding: 10px 20px 0;
  text-align: left;
}

.hero-watercolor__inner {
  max-width: 980px;
  margin: 0 auto;
}


/* =========================================================
   6. LOGO
   ========================================================= */

.hero-watercolor__logo {
  margin-bottom: 22px;
}

.hero-watercolor__logo img {
  max-width: 260px;
  width: 100%;
  height: auto;
}


/* =========================================================
   7. NAGŁÓWEK GŁÓWNY
   ========================================================= */

.hero-watercolor h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 600;
  color: #6b4c1e;
  letter-spacing: 0.01em;
  text-align: left;
}


/* =========================================================
   8. TEKST GŁÓWNY POD NAGŁÓWKIEM
   ========================================================= */

.hero-watercolor__text {
  margin: 0 auto;
  max-width: 1100px;
  font-size: 17px;
  line-height: 1.75;
  color: #000000;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
  text-align: left;
}

.hero-watercolor__text p {
  margin: 0 0 18px;
}

.hero-watercolor__text h3,
.hero-watercolor__text h4 {
  margin: 12px 0 14px;
  color: #2f2f2f;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.hero-watercolor__text h3 {
  font-size: 20px;
}

.hero-watercolor__text h4 {
  font-size: 17px;
}

.hero-watercolor__text ul {
  margin: 0 0 18px 22px;
  padding: 0;
}

.hero-watercolor__text li {
  margin-bottom: 4px;
}


/* =========================================================
   9. KAFELKI / WSPÓLNY UKŁAD
   ========================================================= */

.kafelki,
.wizualizacje,
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  justify-content: center;
}

.kafelek,
.wizualizacja,
.gallery-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 251, 245, 0.90);
  border: 1px solid rgba(150, 133, 109, 0.18);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 18px rgba(80, 64, 42, 0.08);
  backdrop-filter: blur(2px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  min-width: 0;
  margin: 0;
}

.kafelek:hover,
.wizualizacja:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(80, 64, 42, 0.14);
}

.kafelek img,
.wizualizacja img,
.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0;
  background: #e9e1d6;
}

.kafelek h2 {
  margin: 8px 0 6px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: #b5792c;
  letter-spacing: 0.03em;
}

.kafelek p {
  margin: 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  color: #5f5a53;
}


/* =========================================================
   10. SEKCJE GALERII
   ========================================================= */

.wizualizacje {
  margin-top: 20px;
}

.gallery {
  max-width: 1200px;
  margin: 20px auto 0;
}


/* =========================================================
   11. STOPKA
   ========================================================= */

.site-footer {
  text-align: center;
  padding: 24px 16px 30px;
  font-size: 14px;
  color: #8d857c;
  background: #efe8df;
}


/* =========================================================
   12. RESPONSYWNOŚĆ / TABLET
   ========================================================= */

@media (max-width: 1200px) {
  .top-menu__inner {
    padding: 18px 18px;
  }

  .top-menu__nav {
    gap: 22px;
  }

  .kafelki,
  .wizualizacje,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
  }

  .hero-watercolor__text {
    font-size: 15px;
  }
}


/* =========================================================
   13. RESPONSYWNOŚĆ / MNIEJSZE EKRANY
   ========================================================= */

@media (max-width: 900px) {
  .top-menu__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .top-menu__logo {
    font-size: 24px;
  }

  .top-menu__nav {
    justify-content: center;
    gap: 16px;
  }

  .top-menu__nav a {
    font-size: 14px;
  }

  .kafelki,
  .wizualizacje,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
  }

  .hero-watercolor h1 {
    font-size: clamp(22px, 4vw, 34px);
  }

  .hero-watercolor__text {
    font-size: 14px;
    line-height: 1.7;
  }
}


/* =========================================================
   14. RESPONSYWNOŚĆ / TELEFON
   ========================================================= */

@media (max-width: 680px) {
  .home-watercolor {
    padding: 28px 14px 48px;
    background-position: center top;
  }

  .hero-watercolor {
    margin-bottom: 28px;
    padding: 8px 6px 0;
  }

  .hero-watercolor__logo img {
    max-width: 220px;
  }

  .hero-watercolor h1 {
    font-size: clamp(20px, 6vw, 30px);
  }

  .hero-watercolor__text {
    font-size: 13px;
    line-height: 1.65;
  }

  .kafelki,
  .wizualizacje,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 360px;
  }

  .kafelek,
  .wizualizacja,
  .gallery-item {
    padding: 12px;
    border-radius: 16px;
  }

  .kafelek img,
  .wizualizacja img,
  .gallery-item img {
    border-radius: 12px;
  }

  .kafelek h2 {
    font-size: 22px;
  }

  .kafelek p {
    font-size: 14px;
  }

  .top-menu__nav {
    gap: 12px;
  }
}

/* =========================================================
   1. STRONA PRINT – SEKCJA KONTAKTU
   Ten plik dotyczy tylko formularza i bloku kontaktowego
   na podstronie druk.html
   ========================================================= */

.print-contact-section {
  width: 100%;
  padding: 30px 0 90px;
}


/* =========================================================
   2. GŁÓWNY UKŁAD DWÓCH KOLUMN
   ========================================================= */

.print-contact-section__inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}


/* =========================================================
   3. LEWA KARTA KONTAKTOWA
   ========================================================= */

.print-contact-card {
  background: rgba(247, 241, 233, 0.82);
  border: 1px solid rgba(126, 108, 87, 0.14);
  border-radius: 28px;
  padding: 28px 24px 30px;
  box-shadow: 0 14px 34px rgba(73, 61, 50, 0.08);
  backdrop-filter: blur(3px);
}

.print-contact-card__logo-wrap {
  margin-bottom: 22px;
}

.print-contact-card__logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}

.print-contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(120, 104, 84, 0.12);
}

.print-contact-card__item:first-of-type {
  border-top: none;
  padding-top: 6px;
}

.print-contact-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3c38e, #ef8b2c);
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(239, 139, 44, 0.18);
}

.print-contact-card__content {
  min-width: 0;
}

.print-contact-card__label {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #7d6e60;
}

.print-contact-card__item a,
.print-contact-card__item p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.28rem;
  line-height: 1.25;
  color: #e58426;
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
}

.print-contact-card__item a:hover {
  color: #ff9b3b;
}

.print-contact-card__text {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 104, 84, 0.12);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #5d534a;
}

.print-contact-card__brand {
  margin-top: 42px;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  color: #463f38;
  opacity: 0.9;
}


/* =========================================================
   4. PRAWA STRONA – OPAKOWANIE FORMULARZA
   ========================================================= */

.print-contact-form-box {
  background: rgba(247, 242, 235, 0.42);
  border: 1px solid rgba(126, 108, 87, 0.10);
  border-radius: 32px;
  padding: 30px 34px 34px;
  box-shadow: 0 10px 24px rgba(71, 60, 49, 0.05);
}

.print-contact-form-box__heading {
  margin-bottom: 28px;
}

.print-contact-form-box__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f7356;
}

.print-contact-form-box__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  line-height: 0.95;
  font-weight: 600;
  color: #433c35;
}


/* =========================================================
   5. FORMULARZ
   ========================================================= */

.print-contact-form {
  width: 100%;
}

.print-contact-form__row {
  width: 100%;
  margin-bottom: 24px;
}

.print-contact-form__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.print-contact-form__field {
  width: 100%;
}

.print-contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #74675b;
}

.print-contact-form input,
.print-contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(110, 96, 81, 0.45);
  background: transparent;
  padding: 10px 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  color: #433a32;
  outline: none;
  transition: border-color 0.2s ease;
}

.print-contact-form input::placeholder,
.print-contact-form textarea::placeholder {
  color: #8a7d71;
}

.print-contact-form input:focus,
.print-contact-form textarea:focus {
  border-bottom-color: #ef8b2c;
}

.print-contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.print-contact-form__captcha-row {
  margin-top: 8px;
}

.print-contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 28px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9d42, #ef7f1a);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(239, 127, 26, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.print-contact-form__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(239, 127, 26, 0.28);
}

.print-contact-form__button:active {
  transform: translateY(0);
}


/* =========================================================
   6. RESPONSYWNOŚĆ – TABLET
   ========================================================= */

@media (max-width: 980px) {
  .print-contact-section__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .print-contact-card {
    max-width: 440px;
  }
}


/* =========================================================
   7. RESPONSYWNOŚĆ – TELEFON
   ========================================================= */

@media (max-width: 700px) {
  .print-contact-section {
    padding: 18px 0 70px;
  }

  .print-contact-section__inner {
    width: min(100% - 28px, 1200px);
  }

  .print-contact-form-box {
    padding: 24px 20px 24px;
    border-radius: 24px;
  }

  .print-contact-form-box__heading h2 {
    font-size: 2.8rem;
  }

  .print-contact-form__row--two {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .print-contact-card__item a,
  .print-contact-card__item p {
    font-size: 1.08rem;
  }

  .print-contact-card__brand {
    font-size: 1.45rem;
  }

  .g-recaptcha {
    transform: scale(0.92);
    transform-origin: left top;
  }
}

/* =========================================================
   FILM / GALERIA
   ========================================================= */

.film-gallery-section {
  padding: 10px 0 70px;
}

.film-gallery-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.video-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.video-link:hover {
  transform: translateY(-2px);
}

.video-link img {
  display: block;
  max-width: 100%;
  width: 760px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
}

.video-caption {
  margin: 18px 0 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
}

@media (max-width: 768px) {
  .film-gallery-section__inner {
    padding: 0 18px;
  }

  .video-link img {
    width: 100%;
  }
}