* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

/* ======== HEADERY (BANNERY) ======== */
.header, .header1, .header3, .header4, .header5 {
  height: 600px;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.header {
  background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url(Photogenica-PHX241371922.jpg);
}
.header1 {
  background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url(Photogenica-PHX16039923.jpg);
}
.header3 {
  background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url(Photogenica-PHX232404712.jpg);
}
.header4 {
  background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url(Photogenica-PHX12517962.jpg);
}
.header5 {
  background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url(Photogenica-PHX10732123.jpg);
}

/* ======== NAWIGACJA ======== */
nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 150px;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: rgb(254, 127, 0);
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}
.nav-links ul li a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
.nav-links ul li a:hover {
  color: black;
  transform: scale(1.1);
}

/* ======== DROPDOWN ======== */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(255,255,255,0.85);
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 10;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}
.dropdown-content a:hover {
  background-color: rgba(255,165,0,0.2);
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* ======== BURGER ICON ======== */
nav .fa {
  display: none;
  color: gray;
  font-size: 22px;
  cursor: pointer;
}

/* ======== TEKST W NAGŁÓWKU ======== */
.text-box, .text-box1 {
  width: 90%;
  color: rgb(59, 55, 55);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.text-box h1, .text-box1 h1 {
  font-size: 62px;
}
.text-box p, .text-box1 p {
  margin: 10px 0 40px;
  font-size: 25px;
}

/* ======== PRZYCISKI ======== */
.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 25px;
  background: transparent;
  cursor: pointer;
  transition: 0.5s;
}
.btn:hover {
  border: 1px solid orange;
  background: orange;
}

/* ======== KONTAINER STANDARDOWY ======== */
.container {
  width: 90%;
  max-width: 1000px;
  padding: 25px;
  text-align: center;
  margin: 40px auto;
}
.container h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.container p {
  font-size: 18px;
  margin-bottom: 10px;
}
.container a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: orange;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}
.container a:hover {
  background: darkorange;
}

/* ======== SEKCJA KONTAKT ======== */
.container-3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.contact-info {
  flex: 1 1 45%;
  min-width: 300px;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.contact-info p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}

.contact-info i {
  color: orange;
  margin-right: 8px;
}

.map {
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* ======== USŁUGI ======== */
.container-2 {
  text-align: center;
  padding: 40px 20px;
}
.container-2 h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.container-2 hr {
  width: 60px;
  height: 3px;
  background-color: #f7a963;
  border: none;
  margin: 0 auto 40px auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-tile {
  background-color: orange;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}
.service-tile img {
  max-width: 60px;
  margin-bottom: 15px;
}
.service-tile h3 {
  font-size: 20px;
}
.service-tile p {
  font-size: 15px;
  margin-bottom: 20px;
}

/* ======== OPINIE ======== */
.review-container {
  width: 80%;
  margin: auto;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}
.review-container h2 {
  margin-bottom: 10px;
  font-size: 32px;
  color: #333;
}
.review-container hr {
  margin-bottom: 30px;
  background: orange;
}

/* ======== STOPKA ======== */
footer {
  background-color: orange;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 16px;
}

/* ======== RESPONSYWNOŚĆ ======== */
@media (max-width: 700px) {
  .text-box h1, .text-box1 h1 {
    font-size: 28px;
  }

  .nav-links ul li {
    display: block;
  }

  .nav-links {
    position: absolute;
    background: orange;
    height: 100vh;
    width: 250px;
    top: 0;
    right: -250px;
    text-align: left;
    z-index: 2;
    transition: 0.8s;
  }

  nav .fa {
    display: block;
    margin: 10px;
  }

  .nav-links ul {
    padding: 30px;
  }

  .dropdown-content {
    position: static;
    background-color: rgba(255,255,255,0.9);
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown-content a {
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .container-3 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-info, .map {
    width: 100%;
    box-shadow: none;
    padding: 15px;
  }

  .map iframe {
    height: 250px;
  }

  footer {
    margin-top: auto;
    width: 100%;
    background-color: orange;
    color: white;
    text-align: center;
    padding: 15px 10px;
    box-sizing: border-box;
  }
  .services-grid {
    grid-template-columns: 1fr; /* 1 w rzędzie */
  }
}