/* --- Globalne ustawienia i reset / baza --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif; /* nowoczesna, czytelna czcionka */
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9; /* jasne tło, nie za ciemno */
}

body.modal-open {
  overflow: hidden;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Stylowanie nagłówka (logo + menu) --- */
.site-header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* komentarz: .site-header to nagłówek strony stylowany tutaj w CSS */
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

/* --- Stylowanie burger menu i mobilnego rozwijanego menu --- */
/* styluje .main-nav jako burger menu dla małych ekranów */



.burger {
  display: none;
  font-size: 26px;
  cursor: pointer; /* ← to pomaga na dotykowych ekranach */
  z-index: 1000; /* ← upewnia się, że nic nie zasłania burgera */
  position: relative;
}


/* Ukryj menu na małych ekranach */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .burger {
    display: block;
    color: #333;
  }



  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none; /* Ukryte domyślnie */
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .nav-links.nav-active {
    display: flex; /* Pokazuje menu po kliknięciu burgera */
  }

  .main-nav ul li a {
    font-size: 18px;
  }
}

.main-nav ul {
  list-style: none;
  display: flex;
}

.main-nav ul li {
  margin-left: 20px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: background-color 0.3s, color 0.3s;
}

.main-nav ul li a.active {
  color: #007bff;
}

/* efekt podświetlenia linku w menu */
.main-nav ul li a:hover {
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
}

/* --- Sekcja hero (powitalna) --- */
/*///////////////////////////////////////////////////////////////////////////////////*/

.hero {
  width: 100%;
  min-height: 100vh;

  background-color: #000000;
  background-image: url('../images/poznan-elewacja-mako-1024-754.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* ← TO JEST KLUCZOWE */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}


.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
}

.hero-content h1 {
  font-size: 45px;
  margin-bottom: 120px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 22px; /* lub 18px */
}


/* --- Podstrona oferta --- */
body.subpage {
  background: radial-gradient(circle at top, #0b1230, #050614 60%, #020203 100%);
  color: #f1f5ff;
}

.subpage-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 100px;
}

.offer-hero {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 80px 40px;
  margin-bottom: 80px;
  background-image: url('../images/elewacja-mako-naramowice-3.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 520px;
}

.offer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(1, 4, 23, 0.9), rgba(3, 15, 58, 0.6));
}

.offer-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-hero__content h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.offer-hero__content .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-hero {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 70px 50px;
  margin-bottom: 60px;
  background: linear-gradient(120deg, rgba(5, 9, 30, 0.9), rgba(15, 27, 70, 0.7));
}

.gallery-grid-section {
  margin-bottom: 80px;
}

.realizacje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gallery-item a {
  position: relative;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item figcaption {
  padding: 18px 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.gallery-cta {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  background: linear-gradient(120deg, rgba(7, 12, 32, 0.95), rgba(15, 26, 66, 0.8));
  text-align: center;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 40px;
  background: linear-gradient(120deg, rgba(6, 9, 26, 0.9), rgba(12, 20, 48, 0.6));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info-block h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #ffd500;
}

.contact-info-block > p {
  color: rgba(255, 255, 255, 0.85);
}

.info-grid {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-row span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.info-row a,
.info-row p {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 6px;
}

.info-row a {
  text-decoration: none;
  color: #ffd500;
}

.contact-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  margin-top: 36px;
}

.map-circle {
  width: 480px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.map-circle iframe {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
}

.map-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
}

.contact-gallery-strip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px 24px 10px;
  background: rgba(0, 0, 0, 0.25);
}

.strip-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.strip-label h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.strip-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.strip-images img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.strip-images img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-hero .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gallery-hero .hero-actions,
.gallery-cta .hero-actions {
  justify-content: center;
}

.offer-hero__list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.offer-hero__list li::before {
  content: "•";
  color: #ffd500;
  margin-right: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-divider {
  align-self: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-subnote {
  width: 100%;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.offer-steps,
.offer-services,
.offer-scope {
  margin-bottom: 80px;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.offer-steps p,
.offer-services p,
.offer-scope p {
  color: rgba(241, 245, 255, 0.9);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.step-number {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #ffd500;
}

.step-card h3 {
  font-size: 1.3rem;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(241, 245, 255, 0.85);
}

.service-card ul li::before {
  content: "▹";
  color: #2f8bff;
  margin-right: 8px;
}

.offer-scope .scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.scope-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(241, 245, 255, 0.85);
}

.scope-list li::before {
  content: "✔";
  color: #ffd500;
  margin-right: 8px;
}

.materials-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 30px;
}

.materials-note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.offer-cta {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  background: linear-gradient(120deg, rgba(7, 12, 32, 0.95), rgba(15, 26, 66, 0.8));
  text-align: center;
}

.offer-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.offer-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.offer-cta .hero-actions {
  justify-content: center;
  margin: 24px 0;
}

.cta-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-field input,
.form-field textarea {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(5, 8, 20, 0.7);
  color: #fff;
  padding: 12px 14px;
  font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2f8bff;
  box-shadow: 0 0 0 2px rgba(47, 139, 255, 0.2);
}

.contact-form .full-width {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.modal.is-visible {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.modal-dialog {
  position: relative;
  background: rgba(6, 10, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  max-width: 640px;
  width: 100%;
  max-height: 99vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 16px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #fff;
}


/* --- Sekcja doświadczenia na tle --- */
.experience-highlight {
  width: 100%;
  min-height: 70vh;
  background-color: #000;
  background-image: url('../images/elewacja-mako-naramowice-3.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.experience-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35));
}

.experience-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-content .eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.experience-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.experience-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.btn.realizacje-btn.light {
  background: linear-gradient(120deg, #ffd500, #ffb800);
  color: #000;
  align-self: center;
  width: auto;
  max-width: max-content;
  margin-top: 0;
  box-shadow: 0 10px 24px rgba(255, 213, 0, 0.35);
}

/* --- Sekcja kontakt --- */
.contact-section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 20px;
  background: linear-gradient(180deg, #03030d, #05051a);
  color: #fff;
  align-items: center;
}

.contact-details,
.contact-slider {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.contact-details::after,
.contact-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 213, 0, 0.15), transparent 60%);
  opacity: 0.8;
}

.contact-details > *,
.contact-slider > * {
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details h2,
.contact-slider h3 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.contact-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 6px;
}

.contact-item span {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.contact-item a {
  font-size: 1.6rem;
  color: #ffd500;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-note,
.slider-caption {
  margin-top: 30px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.contact-btn.call {
  background-color: rgba(255, 213, 0, 0.95);
  color: #000;
  box-shadow: 0 8px 20px rgba(255, 213, 0, 0.3);
}

.contact-btn.form {
  background-color: #0b63ff;
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 99, 255, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.contact-slider .slideshow-container {
  margin-top: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.4);
}

.contact-slider h3 {
  margin-bottom: 0;
}

/*///////////////////////////////////////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////////////////////////////////////*/
/*Sekcja O nas*/

/*///////////////////////////////////////////////////////////////////////////////////*/

.us {
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(180deg, #03030d, #06031f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.us-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.us-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(255, 213, 0, 0.18), transparent 45%);
}

.us-content > * {
  position: relative;
  z-index: 1;
}

.us-content h1 {
  color: #ffd500;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
  font-size: 46px;
  line-height: 1.2;
}

/* Flex row z h2 po lewej i tekstem po prawej */

.us-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}

/* Lewa kolumna z h2 */

.left-col {
  flex: 0 0 150px; /* sztywna szerokość kolumny z nagłówkiem */
}

.left-col h2 {
  color: #2f8bff;
  font-weight: 700;
  font-size: 2.2rem;
  margin: 0;
}

/* Prawa kolumna z akapitami */

.right-col {
  flex: 1;
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Kontener na przycisk pod tekstem */

.btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn.call-btn,
.btn.realizacje-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn.call-btn {
  background: linear-gradient(120deg, #ffd500, #ffb800);
  color: #000;
  box-shadow: 0 10px 24px rgba(255, 213, 0, 0.35);
  margin-top: 40px;
}

.btn.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 213, 0, 0.4);
}

.btn.realizacje-btn {
  background: linear-gradient(120deg, #0b63ff, #2f8bff);
  color: #fff;
  margin-top: 60px;
}

.btn.realizacje-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 99, 255, 0.35);
}


/* RESPONSYWNOŚĆ */

@media (max-width: 768px) {
  .us-row {
    flex-direction: column;
    text-align: center;
  }
  .left-col {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .right-col {
    flex: none;
    width: 100%;
  }
  .right-col p {
    font-size: 1.1rem;
  }

  .offer-hero {
    padding: 60px 24px;
  }

  .offer-hero__content h1 {
    font-size: 2.2rem;
  }

  .subpage-main {
    padding: 120px 16px 80px;
}

  .service-card,
  .materials-card {
    padding: 24px;
  }

  .offer-cta {
    padding: 40px 24px;
  }

  .modal-dialog {
    padding: 32px 20px;
  }

  .gallery-hero {
    padding: 50px 24px;
}

  .gallery-item img {
    height: 200px;
  }

  .contact-card {
    padding: 40px 24px;
  }

  .map-circle {
    width: min(94vw, 390px);
  }

  .map-circle iframe {
    height: 350px;
  }

  .red-circle {
    width: 140px;
    height: 140px;
    margin-left: -70px;
    margin-top: -70px;
    border-width: 5px;
  }

  .contact-map {
    margin-top: 0;
  }

  .contact-gallery-strip {
    display: none !important;
  }
}


/* --- Sekcja info-sections (cztery bloki) --- */
.info-sections {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 0 20px;
}

/* Później @media dla większych ekranów, by dać dwie kolumny itp. */

.info-block {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  border: 3px solid orange; /* ✅ teraz pomarańczowy border zadziała */
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}


.info-block h2 {
  margin-bottom: 15px;
  color: #007bff;
}

/* Galeria w sekcji doświadczenie */
.experience-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.experience-gallery img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  height: 150px;
}

/* Galeria w sekcji ostatnie realizacje */
.recent-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.recent-gallery img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  height: 150px;
}

/* Styluje sekcję z karuzelą realizacji */
.slideshow-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  border-radius: 8px;
  border: 3px solid orange;
  background-color: #000000;
  background-image: url('../images/elewacje-mako-logo.png');
  background-position: center;
  background-repeat: no-repeat;
}
.slideshow-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: opacity 0.6s ease-in-out; /* Fade efekt */
  opacity: 1; /* Domyślnie widoczny */
}

.contact-map {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.map-circle {
  position: relative;
}

.map-circle iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Czerwony okrąg */
.red-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  margin-left: -90px;
  margin-top: -90px;
  border-radius: 50%;
  border: 6px solid red;
  background: rgba(255, 0, 0, 0.13);
  pointer-events: none;
}




/* --- Styl bloku kontakt w info-sections --- */
/* .contact-block jest stylowane powyżej w .info-block + specyficzne właściwości można dodać, np.: */
.contact-block p {
  margin-bottom: 10px;
}

/* --- Stopka --- */
.site-footer {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: #666;
}

/* --- Media Queries — responsywność --- */
@media (min-width: 768px) {
  .info-sections {
    grid-template-columns: 1fr 1fr;
  }

}

@media (min-width: 1024px) {
  .info-sections {
    grid-template-columns: repeat(2, 1fr);
  }
  .recent-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .main-nav ul {
    display: none; /* na bardzo małych ekranach można robić burger menu później */
  }
  /* ewentualnie styl burger menu etc. */
}
