/* -------------------- OGÓLNE -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: black;
  color: white;
}

/* -------------------- HEADER -------------------- */
.header {
  width: 100%;
  background: black;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* -------------------- NAV -------------------- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6%;
  height: 80px;
}

nav img {
  width: 150px;
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul {
  list-style: none;
}

.nav-links ul li {
  display: inline-block;
  padding: 8px 12px;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover {
  color: white;
}

.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: white;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

/* -------------------- HAMBURGER -------------------- */
nav .fa {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* -------------------- MEDIA QUERIES (NAV) -------------------- */
@media (max-width: 900px) {
  nav img {
    width: 120px;
  }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    transition: 0.5s;
    padding-top: 60px;
  }

  .nav-links ul {
    display: block;
  }

  .nav-links ul li {
    display: block;
    margin: 20px 0;
  }

  nav .fa {
    display: block;
    color: white;
  }
}

/* -------------------- KONTAKT-------------------- */
.contact-section {
  padding: 80px 6%;
  text-align: center;
}

.contact-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-col {
  flex-basis: 45%;
  min-width: 300px;
  text-align: left;
  padding: 20px;
}

/* Mapa */
.map-col {
  flex-basis: 45%;
  min-width: 600px;
  height: 400px; /* Stała wysokość mapy */
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

.contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info div .fa,
.contact-info div .fab,
.contact-info div .fas {
  font-size: 28px;
  color: white;
  margin-right: 20px;

  padding-right: 10px;
  text-align: center;
}

.contact-info div p {
  margin: 0;
  font-size: 18px;
}

.contact-info div h5 {
  font-size: 18px;
  font-weight: 400;
  color: #ccc;
}

.contact-info div span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

@media (max-width: 900px) {
  .contact-row {
    justify-content: center;
    gap: 30px;
  }
  .contact-col,
  .map-col {
    flex-basis: 100%;
    max-width: 600px;
  }
  .map-col {
    height: 350px;
  }
}
