@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,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;
}

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

body {
    font-family: "Raleway", 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;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #121212;
  color: #fff;
  position: relative;
  z-index: 100;
}

header a {
  color: #fff;
  text-decoration: none;
}

header a:hover {
  color: #f0a500;
}

header > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.4rem;
}

header > a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header-nav ul {
  display: flex;
  gap: 2rem;
}

.header-nav li {
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 25px;
  height: 18px;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .header-nav ul {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #121212;
    height: calc(100vh - 65px);
    width: 250px;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.5);
  }

  .header-nav ul.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }
}


.contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 1rem;
    color: #222;
}

.contact-text {
    margin-bottom: 2rem;
}

.contact-text p {
    margin: 0.3rem 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.hidden {
    display: none;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.popup-content button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .contact {
        padding: 1rem;
    }
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 800px;
  z-index: 1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 700px;
  z-index: 1;
}

.hero a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e6005c;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 1;
}

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

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

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

  .hero {
    padding: 80px 15px;
  }
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}



.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.about img {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }
}

.advertising {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #0c0c0c, #1e1e1e);
  color: #fff;
  text-align: center;
}

.advertising h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffcb05;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.advertising p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ddd;
}

@media (min-width: 768px) {
  .advertising h2 {
    font-size: 2.5rem;
  }

  .advertising p {
    font-size: 1.2rem;
  }
}

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

.offers h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}

.offers p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.offers ul {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.offers li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.offers li:hover {
  transform: scale(1.02);
}

.offers img {
  display: block;
  width: 100%;
  height: 292px;
}

@media (min-width: 600px) {
  .offers ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .offers ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .offers h2 {
    font-size: 2.5rem;
  }

  .offers p {
    font-size: 1.2rem;
  }
}

.uwaga {
  background-color: #ffe4e1;
  padding: 40px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.uwaga h2 {
  color: #d60000;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

  .uwaga p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

.why-hero {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.why-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffcc00;
  font-weight: 700;
}

.why-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #dddddd;
}

@media (max-width: 768px) {
  .why-hero h2 {
    font-size: 2rem;
  }

  .why-hero p {
    font-size: 1rem;
    padding: 0 10px;
  }
}


.why-we {
  background-color: #111;
  padding: 80px 20px;
  color: #fff;
}

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

.why-list li {
  background-color: #1b1b1b;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.05);
}

.why-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.15);
}

.why-list img {
  max-width: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.why-list h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffcc00;
  font-weight: 600;
}

.why-list p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.start {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(255, 153, 0, 0.3);
}

.start h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.start a {
  display: inline-block;
  background-color: #1a1a1a;
  color: #ffcc00;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.start a:hover,
.start a:focus {
  background-color: #ffcc00;
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.7);
}

@media (max-width: 768px) {
  .start h2 {
    font-size: 1.5rem;
  }

  .start a {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.privacy {
  max-width: 900px;
  margin: 50px auto 80px;
  padding: 0 20px;
  color: #222;
  line-height: 1.7;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.privacy h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: #111;
  text-align: center;
  font-weight: 700;
}

.privacy h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.privacy p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #444;
}

.privacy ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

.privacy ul li {
  margin-bottom: 10px;
  list-style: disc inside;
  font-size: 1rem;
}

.privacy a {
  color: #0077cc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy a:hover,
.privacy a:focus {
  color: #005999;
}

@media (max-width: 768px) {
  .privacy {
    margin: 30px 15px 50px;
  }

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

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

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


.gallery {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background-color: #121212;
  color: #f0f0f0;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.gallery p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery ul li {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.7);
  background: #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery ul li:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(240, 165, 0, 0.7);
}

.gallery ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: filter 0.3s ease;
}

.gallery ul li:hover img {
  filter: brightness(1.1);
}

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

@media (max-width: 480px) {
  .gallery ul {
    grid-template-columns: 1fr;
  }
  
  .gallery h2 {
    font-size: 2rem;
  }
  
  .gallery p {
    font-size: 1rem;
  }
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #000000;
}

.contact-text {
  background: #1e1e1e;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(240,165,0,0.4);
  max-width: 500px;
  margin: 0 auto 3rem auto;
}

.contact-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #f0a500;
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: #ddd;
}

@media (max-width: 600px) {
  .contact {
    padding: 3rem 1rem;
  }
  
  .contact h2 {
    font-size: 2rem;
  }
  
  .contact p {
    font-size: 1rem;
  }
  
  .contact-text {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  
  .contact-text h3 {
    font-size: 1.5rem;
  }
  
  .contact-text p {
    font-size: 1rem;
  }
}
.footer {
  background-color: #121212;
  color: #eee;
  padding: 3rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-top: 4px solid #f0a500;
}

.footer > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #f0a500;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.footer > a:hover {
  color: #fff;
}

.footer > a img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px #f0a500);
}

.footer-nav-first,
.footer-nav-second {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-nav-first h3,
.footer-nav-second h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #f0a500;
  border-bottom: 2px solid #f0a500;
  padding-bottom: 0.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav-first ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-first ul li,
.footer-nav-second li {
  margin-bottom: 0.8rem;
}

.footer-nav-first ul li a,
.footer-nav-second li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-nav-first ul li a:hover,
.footer-nav-second li a:hover {
  color: #f0a500;
  text-decoration: underline;
}

.footer p {
  flex-basis: 100%;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 0.5px;
  user-select: none;
}

.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: linear-gradient(90deg, #f0a500 0%, #ffcc33 50%, #f0a500 100%);
  margin-top: 2rem;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .footer > a {
    margin-bottom: 1.5rem;
  }

  .footer-nav-first,
  .footer-nav-second {
    flex-basis: 100%;
    max-width: 400px;
  }

  .footer p {
    margin-top: 1rem;
  }
}
