@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

body {
  background: #fff;
  color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.head-img {
  display: block;
  width: 120px;
  height: 120px;
  background: url("/assets/img/logo.png") no-repeat center/contain;
}

.navigation {
  display: flex;
}

.navigation-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navigation-list li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .navigation.active {
    transform: translateX(0);
  }

  .navigation-list {
    flex-direction: column;
    gap: 30px;
    font-size: 1.5rem;
  }

  .burger {
    display: flex;
  }
}

.main-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  background: url("/assets/img/bg.jpg") no-repeat center/cover;
}

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

.main-section h1,
.main-section p,
.main-section a {
  position: relative;
  z-index: 2;
}

.main-section h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.main-section p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 1000px;
}

.main-section a {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.main-section a:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .main-section h1 {
    font-size: 1.5rem;
  }

  .main-section p {
    font-size: 1rem;
  }
}
.why-we {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-we h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.why-we-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
}

.why-we-list li {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.why-we-list img {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.why-we-list h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-we-list p {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why-we-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-we-list {
    grid-template-columns: 1fr;
  }

  .why-we h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}

.about {
  position: relative;
  padding: 80px 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: url("/assets/img/about.jpg") no-repeat center/cover;
}

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

.about h2,
.about p {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about {
    padding: 60px 15px;
  }

  .about h2 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 1rem;
  }
}

.gallery {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  .gallery-container img {
    height: 220px;
  }
}

.offer {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.offer h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.offer p {
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.offer-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
}

.offer-list li {
  background: #fff;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: left;
}

.offer-list img {
    max-width: 80px;
  max-height: 50px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.offer-list h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.offer-list p {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .offer-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .offer {
    padding: 60px 15px;
  }

  .offer h2 {
    font-size: 1.6rem;
  }

  .offer p {
    font-size: 1rem;
  }
}

.uwaga {
  background: #fff;
  color: #000;
  padding: 50px 20px;
  background-color: #7e1515;
  margin: 60px auto;
  border-left: 5px solid #000;
  text-align: left;
}

.uwaga h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

.uwaga p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 1000px;
  color: white;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .uwaga {
    padding: 40px 15px;
  }

  .uwaga h2 {
    font-size: 1.5rem;
  }

  .uwaga p {
    font-size: 0.95rem;
  }
}

footer {
  background: #fff;
  color: #000;
  padding: 60px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-block-first p {
  margin: 5px 0;
  font-size: 1rem;
}

.footer-block-third,
.footer-block-first,
.footer-block-second {
  max-width: max-content;
}

.footer-block-second h3,
.footer-block-third h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-block-second-list,
.footer-block-third-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block-second-list li,
.footer-block-third-list li {
  margin-bottom: 10px;
}

.footer-block-second-list li a,
.footer-block-third-list li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.footer-block-second-list li a:hover,
.footer-block-third-list li a:hover {
  color: #555;
}

@media (max-width: 992px) {
}

@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }

  .footer-block-second,
  .footer-block-third {
    margin-top: 30px;
  }
}

.terms {
  background: #fff;
  color: #000;
  max-width: 900px;
  margin: 60px auto;
  padding: 60px 20px;
  line-height: 1.7;
}

.terms h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}

.terms h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

.terms p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.terms ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.terms ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.terms a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms a:hover {
  color: #555;
}

@media (max-width: 768px) {
  .terms {
    padding: 40px 15px;
  }

  .terms h1 {
    font-size: 1.6rem;
  }

  .terms h2 {
    font-size: 1.2rem;
  }

  .terms p,
  .terms ul li {
    font-size: 0.95rem;
  }
}

.form {
  background: #fff;
  padding: 60px 20px;
  max-width: 500px;
  margin: 60px auto;
  border-radius: 12px;
  text-align: left;
  box-sizing: border-box;
}

.form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form input[type="email"],
.form input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form input[type="checkbox"] {
  margin-right: 8px;
}

.form button {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #000;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-top: 30px;
  display: flex;
}

.form button:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

#message {
  font-size: 1rem;
  margin-top: 15px;
  color: green;
}

@media (max-width: 600px) {
  .form {
    padding: 40px 15px;
  }

  .form button {
    width: 100%;
  }
}

.form-flex {
  display: flex;
  align-items: center;
}