body {
    background-color: #0F0F0F;
}

* {
    font-family: Inter;
}
/* menu */ 
.site-header {
  padding: 15px 20px;

}
.menu-toggle {
    display: none;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  color: #facc15;
  margin: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
  margin-right: 15px;
}

.nav-list a:hover {
  color: #facc15;
}

/* Responsywność */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
    padding: 20px;
  }

  .nav-list.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    background: none;
    color: #facc15;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
}
h1 {
    color: #D29F36;
}
button {
    border: none;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: bold;
}
.hero {
    padding-top: 100px;
    display: flex;
}
.hero h1 {
    font-size: 56px;
}
.hero p {
   color: #8C8C8C;
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.btn-hero {
    margin-top: 30px;
background-color: #C73D24;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  width: 250px;
}
.hero-left {
    width: 50%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center
}
.hero-right {
    width: 50%;
}
.hero img {
    width: 500px;
}
.wrap {
    max-width: 1240px;
    margin: 0 auto;
}
/* NEWSLETTER */
.newsletter-section {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-container {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-container h2 {
  color: white;
  margin-bottom: 10px;
}

.newsletter-container p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 10px;
  background-color: #C73D24;
  color: WHITE;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #eab308;
}

@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input[type="email"] {
    flex: 1;
  }

  .newsletter-form button {
    width: auto;
  }
}
/* brak */ 
.brak {
 margin-top: 75px;
 margin-bottom: 75px;
 display: flex
}
.brak .wrap {
    display: flex
}
.brak-left {
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center

}
.brak-right {
    width: 50%;
    margin-left: 20%;
    
}
.brak-right img {
    width: 500px;
    height: 300px;
    border-radius: 5%;
}
.brak h1 {
    font-size: 52px;
    width: 100%;
    margin: 0;
    padding: 0;
}
/* CHECKLIST */ 
.checklist .wrap {
    display: flex;
   
    align-items: center
}
.checklist .wrap h1 {
    font-size: 56px;
     margin: 0;
    padding: 0;
}
.checklist .wrap h2{
    font-size: 54px;
    margin: 0;
    padding: 0;

}
.checklist-left {
    width:50%;
}
.checklist-left img {
    height: 500px;
    width: 100%;
}
.checklist-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center
}
.checklist h2 {
    color: #B0B0B0;
}
footer {
    height: 75px;
    background-color: #0D0D0D;
}
footer i {
    color: #eab308;
    font-size: 36px;
    cursor: pointer;
}
footer .wrap {
    width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}




/* ===================== */
/* MEDIA QUERIES         */
/* ===================== */
@media (max-width: 1024px) {
  .hero, .checklist .wrap, .brak .wrap {
    flex-direction: column;
    text-align: center;
  }

  .hero-left, .hero-right,
  .brak-left, .brak-right,
  .checklist-left, .checklist-right {
    width: 100%;
    margin: 0 auto;
  }

  .brak-right {
    margin-left: 0;
    margin-top: 20px;
  }

  .checklist-left img {
    height: auto;
  }

  .hero img, .brak-right img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .hero h1 {
    font-size: 42px;
  }

  .checklist .wrap h1,
  .checklist .wrap h2,
  .brak h1 {
    font-size: 36px;
  }

}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 60px;
    right: 0;
    background-color: #111;
    width: 200px;
    flex-direction: column;
    display: none;
    padding: 20px;
    z-index: 1000;
  }

  .menu-toggle {
    display: block;
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero {
    padding-top: 60px;
  }

  .newsletter-container {
    padding: 0 10px;
  }

  .btn-hero {
    width: 100%;
  }

  .checklist-left img,
  .brak-right img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .hero h1,
  .checklist .wrap h1,
  .checklist .wrap h2,
  .brak h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 18px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  .checklist-left img {
    height: auto;
  }
}