@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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;
}

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

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}
  
html {
    height: 100%;
    scroll-behavior: smooth;
}


header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;
        background-color: #000000;
        color: #fff;
        position: relative;
        z-index: 1001;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        font-size: 1.25rem;
    }

    .logo img {
        height: 60px;
    }

    @media (max-width: 600px) {
        .logo img {
            height: 40px;
        }

        header span {
            font-size: 16px;
        }

        header {
            padding: 0.5rem 1rem;
        }
    }

    nav ul {
        display: flex;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }

    nav ul li a:hover {
        color: #ffbf00;
    }

    .menu-toggle {
        display: none;
        font-size: 2.5rem;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        user-select: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.35s ease-in-out;
        z-index: 1100;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 3rem;
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .nav-menu ul li a {
        font-size: 2.5rem;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        user-select: none;
    }

    .nav-menu ul li a:hover {
        color: #ffbf00;
    }

    .menu-close {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        font-size: 3.5rem;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        user-select: none;
    }

    @media (max-width: 768px) {
        nav {
            display: none;
        }

        .menu-toggle {
            display: block;
        }
    }

.hero {
  position: relative;
  background-image: url('/assets/img/bg.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero a {
  display: inline-block;
  padding: 15px 30px;
  background-color: #e63946;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  max-width: 240px;
  margin: 0 auto;
}

.hero a:hover {
  background-color: #d62839;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }

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

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 40px;
  background-color: #f9f9f9;
}

.about_text {
  flex: 1 1 400px;
  max-width: 600px;
}

.about_text h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 10px;
}

.about_text h3 {
  font-size: 1.4rem;
  color: #e63946;
  margin-bottom: 20px;
}

.about_text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.about img {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about_text h2 {
    font-size: 1.8rem;
  }

  .about_text h3 {
    font-size: 1.2rem;
  }

    .about_text {
    flex: 0;
  }
}

.offers {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.offers h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 50px;
}

.offers ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1600px;
}

.offers li {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offers li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.offers img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: #ddd;
}

.offers h3 {
  font-size: 1.3rem;
  color: #e63946;
  margin-bottom: 15px;
}

.offers p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .offers h2 {
    font-size: 2rem;
  }

  .offers li {
    padding: 20px 15px;
  }

  .offers img {
    height: 150px;
  }
}


.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('/assets/img/cta.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta h2 {
  font-size: 2rem;
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.cta a {
  display: inline-block;
  background-color: #e63946;
  color: white;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background-color: #d62839;
}

@media (max-width: 600px) {
  .cta h2 {
    font-size: 1.6rem;
  }

  .cta a {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

.galery {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
}

.galery h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 15px;
}

.galery p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.galery ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 1200px;
}

.galery li {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.galery li:hover {
  transform: scale(1.03);
}

.galery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.galery li:hover img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .galery h2 {
    font-size: 2rem;
  }

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


.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 20px;
  background-color: #f7f7f7;
  justify-content: center;
  align-items: center;
}

.contact_info {
  flex: 1 1 300px;
  max-width: 400px;
}

.contact_info h3 {
  font-size: 1.8rem;
  color: #e63946;
  margin-bottom: 15px;
}

.contact_info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

form {
  flex: 1 1 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: none;
}

form button {
  background-color: #e63946;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #d62839;
}

#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #000;
  padding: 25px 30px;
  border: 2px solid #e63946;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  text-align: center;
}

#popup button {
  margin-top: 15px;
  background-color: #e63946;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.uwaga {
  background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 300px;
}

.uwaga h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.uwaga p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .uwaga h2 {
    font-size: 1.6rem;
  }

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

footer {
  background-color: #111;
  color: #eee;
  padding: 60px 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

footer a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e63946;
}

footer > a {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: bold;
}

footer > a img {
  width: 40px;
  height: auto;
}

.footer-social,
.footer-privacy {
  flex: 1 1 200px;
}

.footer-social h3,
.footer-privacy h3 {
  font-size: 1.1rem;
  color: #e63946;
  margin-bottom: 15px;
}

.footer-social li,
.footer-privacy li {
  margin-bottom: 10px;
  list-style: none;
}

footer p {
  flex-basis: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer > a {
    justify-content: center;
    font-size: 1.2rem;
  }

  .footer-social,
  .footer-privacy {
    text-align: center;
  }
}


.why_we {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.why_we ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.why_we li {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why_we li:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.why_we img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 auto;
  margin-bottom: 20px;
}

.why_we h3 {
  font-size: 1.2rem;
  color: #e63946;
  margin-bottom: 10px;
}

.why_we p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .why_we h3 {
    font-size: 1.1rem;
  }

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

  .why_we img {
    width: 60px;
    height: 60px;
  }
}

.privacy {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy h2 {
  font-size: 2.2rem;
  color: #e63946;
  margin-bottom: 30px;
  text-align: center;
}

.privacy h3 {
  font-size: 1.3rem;
  color: #111;
  margin-top: 40px;
  margin-bottom: 15px;
}

.privacy p {
  margin-bottom: 20px;
}

.privacy ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

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

.privacy a {
  color: #e63946;
  text-decoration: underline;
}

.privacy a:hover {
  color: #d62839;
}

@media (max-width: 600px) {
  .privacy {
    font-size: 0.95rem;
    padding: 60px 15px;
  }

  .privacy h2 {
    font-size: 1.8rem;
  }

  .privacy h3 {
    font-size: 1.2rem;
  }
}


.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-popup-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
}

.cookie-popup p {
  margin: 0;
  flex: 1 1 auto;
  line-height: 1.4;
  min-width: 0;
}

.cookie-popup a {
  color: #4db6ac;
  text-decoration: underline;
}

.cookie-popup button {
  background-color: #4db6ac;
  border: none;
  color: white;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.cookie-popup button:hover {
  background-color: #3a8d85;
}

@media (max-width: 480px) {
  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px 15px;
    font-size: 13px;
    max-width: 100%;
  }

  .cookie-popup-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-popup button {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
  }
}
