* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
.logo {
  font-size: 3rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

/* NAVBAR */

.navbar {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  -webkit-box-shadow: 0px 10px 10px -7px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 10px 10px -7px rgba(0, 0, 0, 1);
  box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.5);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  transition: padding 0.3s ease;
  z-index: 1000;
}

header.shrink {
  padding: 10px 40px;
}
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
header nav {
  display: flex;
}
header nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 1.15em;
}

.hamburger-menu {
  display: none;
  flex-flow: column wrap;
  justify-content: space-between;
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
}

.hamburger-menu .bar {
  height: 5px;
  background: #4A70A9;
  border-radius: 5px;
  margin: 3px 0px;
  transform-origin: left;
  transition: all 0.5s;
}

.hamburger-menu-active .top {
  transform: rotate(45deg);
}

.hamburger-menu-active .middle {
  opacity: 0;
}

.hamburger-menu-active .bottom {
  transform: rotate(-45deg);
}

header nav a:hover,
footer a:hover {
  color: #4A70A9;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: url("zdjecia/mainwebp2.webp") center/cover no-repeat;
  overflow: hidden;
  font-size: 1.5em;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(0.5px) brightness(0.3);
  transform: scale(1.05);
  z-index: 0;
}
.hero .overlay {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.hero .scroll-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background: #4A70A9;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: 1px solid white;
}
.hero .scroll-btn:hover {
  background: #CAE0E8;
}

.plajster {
background: #ffffff;
background: linear-gradient(140deg, rgba(255, 255, 255, 1) 7%, rgba(74, 112, 169, 1) 21%, rgba(235, 235, 235, 1) 149%);
}

/* SECTIONS */
.about,
.how-to-start {
  padding: 10px 20px 20px;
  margin: 50px auto;
  text-align: center;
  max-width: 70vw;
}

.about h2,
.how-to-start h2 {
  color: white;
  padding: 15px;
  font-size: 3rem;
  letter-spacing: 0.3mm;
  text-transform: uppercase;
}

div.textabout {
  width: 75%;
  margin: 0 auto;
}

.about p,
.how-to-start p {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 400;
  padding-bottom: 5px;
  color: white;
}

/* THREE CARDS */
.three-cards {
  width: 90%;
  max-width: 1500px;
  margin: 40px auto;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.three-cards .card {
  flex: 1;
  min-width: 250px;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid white;
}
.three-cards .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}
.three-cards .card:hover::before {
  background: rgba(0, 0, 0, 0.7);
}
.three-cards .card a {
  position: relative;
  z-index: 1;
  background: #4A70A9;
  border: 1px solid white;
  border-radius: 4px;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.3rem;
}
.three-cards .card:hover a {
  background: #CAE0E8;
}

.manifest {
  position: relative;
  background: url("zdjecia/skuterysniezne9.webp") center/cover no-repeat;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px;
  overflow: hidden;
}

.manifest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.manifest .content {
  position: relative;
  max-width: 900px;
  z-index: 1;
}

.manifest h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.manifest p {
  font-size: 1.3rem;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background-color: black;
  border-top: 2px solid white;
  color: white;
  padding: 20px 30px;
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
  justify-content: center;
}

.footer-logo img {
  width: 120px;
}

.footer-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 2px;
}

.footer-container {
  width: 100%;
  max-width: 1500px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.cities {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social img {
  max-height: 50px;
}

.footer-social a:hover {
  color: #f0a500;
}

div.cities p,
footer a {
  font-size: 1.3rem;
}

/* MAIN GALLERY */
.maingallery {
  padding: 120px 20px 20px 20px;
  text-align: center;
  background: #ffffff;
  background: linear-gradient(140deg, rgba(255, 255, 255, 1) 7%, rgba(74, 112, 169, 1) 21%, rgba(235, 235, 235, 1) 99%);
}

.maingallery h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: white;
}

.maingallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}

.maingallery-item {
  border-radius: 14px;
  overflow: hidden;
  height: 300px;
  position: relative;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5);
}

.maingallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.maingallery-item:hover img {
  transform: scale(1.1);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.maingallery-item {
  border-radius: 14px;
  overflow: hidden;
  height: 300px;
  position: relative;
  cursor: pointer;
}

.maingallery-item:hover::after {
  opacity: 1;
  transform: scale(1.2);
}


/* HERO */
.heroContact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: url("zdjecia/quadyprzyzlotym.webp") center/cover no-repeat;
  overflow: hidden;
  font-size: 1.5em;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(0.5px) brightness(0.3);
  transform: scale(1.05);
  z-index: 0;
}
.hero .overlay {
  position: relative;
  z-index: 1;
  padding: 20px;
}

/* --- CONTACT --- */
.contact-section {
  padding-top: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-details {
  text-align: left;
}

.contact-overlay {
  padding: 45px;
  border-radius: 16px;
  color: white;
  width: 100%;
  max-width: 1500px;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin: 0 20px;
}

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

.is-flex-column {
  flex-direction: column;
}

.is-flex {
  display: flex;
}

.contact-overlay h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-phone,
.contact-mail {
  font-size: 1.4rem;
  margin: 10px 0;
}

.contact-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.contact-icons img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.contact-icons img:hover {
  transform: scale(1.2);
}

.contact-phone a,
.contact-mail a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.contact-phone a:hover,
.contact-mail a:hover {
  text-decoration: underline;
}


/* --- FAQ --- */
.faq {
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.faq-overlay {
  padding: 40px;
  border-radius: 12px;
  color: white;
  max-width: 1500px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 16px;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.faq-overlay h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.faq-item {
  padding: 10px 15px;
  margin-bottom: 6px;
  border-radius: 8px;
  background: rgba(74, 112, 169,0.7);
  border: 1px solid white;
  text-align: left;
  overflow: hidden;
}

.faq-question {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1.2rem;
  padding-left: 20px;
  color: #fff;
  transition: 1s;
}

.faq-answer.open {
  max-height: 200px;
  transition: 1s;
}

.contactPage {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("zdjecia/skuterysniezne10.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.contact-logo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 100px;
  height: auto;
  z-index: 10;
}

.is-non-targetable {
  user-select: none;
}

/* OFFER PAGE */

.offers-section {
  padding: 120px 0 60px 0; 
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  background: linear-gradient(140deg, rgba(255, 255, 255, 1) 7%, rgba(74, 112, 169, 1) 21%, rgba(235, 235, 235, 1) 99%);
}

.offers-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: white;
}

.offers-container {
  width: 90%;
  max-width: 1500px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.offer-box {
  flex: 1 1 calc(50% - 20px);
  background: rgba(255, 165, 0, 0.85);
  padding: 30px;
  min-height: 35vh;
  border-radius: 8px;
  color: #000;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.offer-box:nth-child(1) {
  background: url(zdjecia/skuterysniezne5.webp) center/cover no-repeat;
}
.offer-box:nth-child(2) {
  background: url(zdjecia/skuterysniezne8.webp) center/cover no-repeat;
}
.offer-box:nth-child(3) {
  background: url(zdjecia/skuterysniezne1.webp) center/cover no-repeat;
}
.offer-box:nth-child(4) {
  background: url(zdjecia/skuterysniezne3.webp) center/cover no-repeat;
}

.offer-box h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-align: center;
}

.offer-box p {
  line-height: 1.5;
  font-size: 1.3rem;
  background-color: rgba(122, 122, 122, 0.4);
}

.offer-box h2,
.offer-box p {
  color: white;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.offer-box-cennik {
  background: rgba(0, 0, 0, 0.55);
  color: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 20px;
}

div.offerCennik {
  width: 100%;
  text-align: center;
}

div.offerCennik h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

div.offerCennik h3 {
  font-size: 1.9rem;
  margin: 10px 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.manifest {
  border-top: 2px solid white;
}

.hero {
  border-bottom: 2px solid white;
}

/* Media Queries */


@media (max-width: 1300px) {
  .offer-box {
    flex: 1 1 100%;
  }
  .offer-box h2 {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0;
  }
  .footer-container {
    flex-direction: column;
  }
  #black1300px {
    color: black;
  }
    .offers-section h2, .maingallery h2 {
    color: black;
  }
}


@media (max-width: 1200px) {
  .maingallery-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
  .maingallery-item {
    height: 220px;
  }
}

@media (max-width: 992px) {
  header {
    padding: 15px 25px;
    background-color: black;
  }
  header.shrink {
    padding: 15px 25px;
  }

  .about,
  .how-to-start {
    width: 95%;
  }

  div.cities {
    text-align: center;
  }

  div.footer-social {
    font-size: 0.9rem;
  }

  .offer-box h2 {
    color: white;
  }
  div.textabout {
    width: 100%;
  }
  .about h2, .how-to-start h2 {
    font-size: 2rem;
  }
  .about, .how-to-start {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .offer-box h2 {
    font-size: 1.1rem;
    padding: 10px;
    letter-spacing: 0;
  }
  .offer-box p {
    font-size: 0.95rem;
  }
  div.offerCennik h1 {
    font-size: 2rem;
  }
  div.offerCennik h3 {
    font-size: 1.2rem;
  }
  .offers-container {
    gap: 20px;
  }
    #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
  }
  #nav-links.show {
    display: flex;
  }
  #nav-links a {
    text-align: center;
    font-size: 1.5rem;
    margin: 0;
    padding: 15px 0;
  }
  #nav-links a:not(:last-child) {
    border-bottom: 1px solid #4A70A9;
  }
  .hamburger-menu {
    display: flex;
  }
  .three-cards {
    flex-direction: column;
    gap: 20px;
  }  
  .manifest h2 {
    font-size: 2rem;
  }
}

  @media (max-width: 550px) {
    .hero {
      min-height: 100vh;
    }
    .hero h1 {
      font-size: 1.8rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .hero .scroll-btn {
      padding: 6px 12px;
      font-size: 0.9rem;
    }

    .about p,
    .how-to-start p {
      font-size: 1.1rem;
    }

    .footer {
      font-size: 0.8rem;
    }
     .contact-overlay {
    padding: 20px;
  }
   h2.is-non-targetable {
    font-size: 1.8rem;
   }
   .contact-mail a {
    font-size: 1.3rem;
   }
   
  .faq-answer {
    font-size: 1.1rem;
    padding-left: 15px;
    color: #fff;
    transition: 1s;
  }

  .faq-answer.open {
    max-height: 300px;
    transition: 1s;
  }
    .offer-box h2 {
    font-size: 1rem;
    padding: 8px;
  }
    .about h2, .how-to-start h2 {
    font-size: 1.8rem;
  }
  .about, .how-to-start {
    max-width: 99%;
    margin: 10px 10px;
    padding: 10px 10px;
    }
  }
  @media (max-width: 400px) {
        .offer-box h2 {
      font-size: 1rem;
      padding: 5px;
    }
  }