* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: sans-serif;
    line-height: 1.5;
    background: #f5f5f5;
  }

  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    z-index: 10;
    backdrop-filter: blur(6px);
} 
  
  .navbar .logo {
    font-size: 24px;
    font-weight: bold;
  }
  .navbar nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
  }
  .navbar nav a:hover {
    text-decoration: underline;
  }
  

  .hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
  }
  
  .slide {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ważne: przycina lub rozciąga tak, aby obraz zakrywał całość */
    z-index: 0;
  }
  
  .slide-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 30px;
    border-radius: 10px;
    color: white;
    max-width: 500px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
  }
  
  @keyframes fadeInUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Przyciski */
  .buttons {
    margin-top: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    margin-right: 10px;
  }
  
  .btn.primary {
    background: #007bff;
    color: white;
  }
  
  .btn.primary:hover {
    background: #0056b3;
  }
  
  /* Responsywność */
  @media (max-width: 768px) {
    .slide-content {
      left: 20px;
      right: 20px;
      max-width: unset;
    }
  
    .btn {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
    }
  }








  .contact-section {
    padding: 80px 40px;
    background: #f9f9f9;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info, .contact-form {
    flex: 1 1 450px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  
  .contact-info h2,
  .contact-form h3 {
    margin-bottom: 20px;
  }
  
  .contact-info p {
    margin: 10px 0;
    font-size: 16px;
  }
  
  .contact-info a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-info a.map-btn {
    display: inline-block;
    margin-top: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  
  .contact-form button {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #0056b3;
  }
  
  /* Responsywność */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  }

  
  .map-embed {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }



  #contact-form {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  #contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  #contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
  }
  
  #contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
  }
  
  #contact-form button:hover {
    background-color: #0056b3;
  }
  
  #responseMessage {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
  }
  