/* === style.css === */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    background: #f9f9f9;
  }
  
  header {
    background: #0a3d62;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .logo {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 20px auto;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: #1e90ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  section {
    padding: 20px 20px; /* wcześniej było 40px */
    max-width: 900px;
    margin: auto;
  }
  
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  .portfolio {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .lightbox-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    flex-direction: column;
  }
  
  .lightbox-modal.hidden {
    display: none;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
  }
  
  .lightbox-modal .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }
  
  .lightbox-modal .prev,
  .lightbox-modal .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  
  .lightbox-modal .prev {
    left: 20px;
  }
  
  .lightbox-modal .next {
    right: 20px;
  }
  
  @media (max-width: 600px) {
    .lightbox-modal .prev,
    .lightbox-modal .next {
      font-size: 30px;
    }
  
    .lightbox-modal .close {
      font-size: 30px;
      right: 20px;
    }
  }
  
  .portfolio img {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  blockquote {
    font-style: italic;
    padding: 10px;
    border-left: 4px solid #ccc;
    margin: 20px 0;
    color: #555;
  }
  
  form {
    max-width: 400px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-family: inherit; /* Spójność fontu */
    box-sizing: border-box;
  }
  
  textarea {
    resize: vertical;
  }
  
  button[type="submit"] {
    display: block;
    margin: 20px auto 0; /* Wyśrodkowanie */
    padding: 8px 20px;
    font-size: 16px;
    border: none;
    background-color: #2196F3;
    color: white;
    border-radius: 6px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #0b7dda;
  }
  
  
  .socials {
    margin-top: 30px;
    text-align: center;
  }
  
  .socials a {
    margin: 0 10px;
    display: inline-block;
  }
  
  .socials img {
    width: 32px;
    height: 32px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: #ddd;
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
  
    .btn {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }
  .socials img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
  }
  
  .socials img:hover {
    transform: scale(1.1);
  }
  .top-contact {
    background: #0a3d62;
    color: white;
    text-align: right;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .top-contact a {
    color: white;
    text-decoration: none;
  }
  
  .top-contact a:hover {
    text-decoration: underline;
  }
  .lang-switcher {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    background: #f0f0f0;
  }
  
  .lang-switcher img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .lang-switcher img:hover {
    transform: scale(1.2);
  }
  .cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #0a3d62;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.9rem;
    z-index: 1000;
  }
  
  .cookie-banner button {
    margin-left: 10px;
    padding: 6px 14px;
    background: #1e90ff;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .cookie-banner a {
    color: #add8e6;
    text-decoration: underline;
  }
   #opinie {
  display: none;
}
