/* Resetowanie domyślnych stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #1e1e1e;
    color: #fff;
  }
  
  /* Nagłówek i menu */
  header {
    background: #333;
    padding: 10px 0;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Baner */
  .banner {
    background: url('images/banner.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .banner h1 {
    font-size: 4em;
    margin-bottom: 20px;
  }
  
  .banner p {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 10px 20px;
    background: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  
  /* Kontener na treści */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Sekcje */
  section {
    padding: 50px 0;
  }
  
  /* Galeria */
  .gallery-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .gallery-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
  }
  
  /* Formularz kontaktowy */
  form {
    display: flex;
    flex-direction: column;
  }
  
  form label {
    margin-top: 10px;
  }
  
  form input,
  form textarea {
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
  }
  
  form button {
    margin-top: 20px;
    padding: 10px;
    background: #ff9800;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
  }
  
  /* Stopka */
  footer {
    background: #222;
    padding: 20px 0;
    text-align: center;
  }
  
  .social-media a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
  }
  