﻿.footer {
  position: relative;
  background-color: #d6c2a3;         /* mocniejszy beż */
  border-top:8px solid rgb(161, 144, 108);
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 0.95rem;
  padding-bottom: 20px;
  
  overflow: hidden;
  min-width:360px;
}

/* Lamele dekoracyjne */
.footer-lamele {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.15) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0; /* zamiast 0, by były nad mapą */
  pointer-events: none;
}

/* Mapa */
.footer-map {
  position: relative;
  width: 100%;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 4px solid #000;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.footer-map .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(76, 64, 48, 0.25); /* ciepły ciemny grafit */
  z-index: 1;
  pointer-events: none;
}



/* Bloki danych */
.footer-inner {
  max-width: 1200px;
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 1;
  padding-left: 80px;
     padding-right:80px;
}

/* Logo + tekst */
.footer-brand {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 140px;
  height: auto;
}
.footer-brand .brand-text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.footer-brand .brand-text p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Kontakt */
.footer-contact {
  flex: 1 1 220px;
}
.footer-contact h3,
.footer-company h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #000;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 6px;
}
.footer-contact a {
  color: #000;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}

/* Dane firmy */
.footer-company {
  flex: 1 1 220px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #000;
}

/* Copyright */
.footer-bottom {
  margin-top: 32px;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #000;
  padding-top: 16px;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1020px) {
.footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
}
  .footer-brand,
  .footer-contact,
  .footer-company {
    flex: 1 1 100%;
    align-items: center;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand .brand-text h3,
  .footer-brand .brand-text p {
    text-align: center;
  }
}
/* Responsywność */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
     padding-left: 40px;
     padding-right:40px;
  }

  .footer-brand,
  .footer-contact,
  .footer-company {
    flex: 1 1 100%;
    align-items: center;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand .brand-text h3,
  .footer-brand .brand-text p {
    text-align: center;
  }
  .footer-bottom{
  padding-left: 40px;
  padding-right: 40px;
  }

  .footer-map iframe {
    height: 220px;
  }
    .footer-lamele {
    width: 40px;
    background-image: repeating-linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.15) 3px,
      transparent 3px,
      transparent 6px
    );
}
}

  
