* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400; /* NORMALNA waga */
    background-color: #ffffff;
    color: #000000;
    padding-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #f0f0f0;
    border-bottom: 2px solid #0690c7;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-small {
    max-width: 120px;
    height: auto;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #0690c7;
}

.logo {
    max-width: 500px;
}

h1 {
    font-size: 2em;
    margin: 20px 0;
    color: #000;
}

.construction {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.loader {
    width: 500px;
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid #000;
}

.loader .stripes {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #32CD32 0%,
        #32CD32 25%,
        #228B22 25%,
        #228B22 50%
    );
    background-size: 40px 40px;
    animation: stripes-move 2s linear infinite;
}

@keyframes stripes-move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -40px 40px;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links .icon {
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
    transition: color 0.3s ease;
}

.social-links .icon:hover {
    color: #0690c7;
}

.social-icon {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
}

/* Sekcja cennik */
.cennik-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

.cennik-title {
    font-size: 2em;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    border: 1px solid #ccc;
    font-size: 1em;
}

th {
    background-color: #0690c7;
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

a.back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 20px;
    background-color: #0690c7;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

a.back-link:hover {
    background-color: #0690c7;
}

/* Formularz kontaktowy */
.contact-wrapper {
    width: 100%;
    min-height: calc(80vh - 80px);
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    background-color: #f9f9f9;
    border: 2px solid #0690c7;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: left;
}

.contact-form h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background-color: #0690c7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0690c7;
}

/* Wycena */
.wycena-container {
    max-width: 800px;
    margin: 0px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wycena-container h1 {
    text-align: center;
    margin-bottom: 20px;
}

.wycena-container p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.opcje-wyboru {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.wybierz-button {
    background-color: #00aaff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    margin: 0 10px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
        font-family:'Quicksand';
}

.wybierz-button:hover {
    background-color: #0088cc;
}

.wycena-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    text-align: left;
}

.wycena-form label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}

.wycena-form input,
.wycena-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    transition: border-color 0.3s;
}

.wycena-form input:focus,
.wycena-form textarea:focus {
    border-color: #00aaff;
    outline: none;
}

.submit-button {
    background-color: #00aaff;
    color: white;
    border: none;
    padding: 14px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-family:'Quicksand';
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0088cc;
}

.form-option {
    display: none;
}

.form-option.active {
    display: block;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav a {
        margin: 5px 0;
    }

    .contact-form,
    .wycena-container {
        padding: 15px;
    }
}


/* ---- Dodaj te style do swojego styles.css ---- */

.hero {
    margin: 40px 20px 60px;
    font-size: 2.5em;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #555;
    text-align: center;
  }
  
  .section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
  }
  
  .section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #000;
  }
  
  .section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
  }
  
  .btn-primary {
    display: inline-block;
    background-color: #0690c7;
    color: #fff;
    padding: 14px 30px;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
  }
  
  .btn-primary:hover {
    background-color: #0690c7;
  }
  
  /* Slider */
  
  .slider-section {
    max-width: 900px;  /* ograniczamy maksymalną szerokość sekcji */
    margin: 0 auto;    /* wycentrowanie sekcji */
    padding: 20px 0;
  }
  
  .slider {
    max-height: 500px;   /* maksymalna wysokość slidera */
    overflow: hidden;
    position: relative;
  }
  
  .slides {
    display: flex;
    gap: 10px;           /* odstęp między zdjęciami */
    overflow-x: auto;    /* poziomy scroll jeśli więcej obrazków */
    scroll-snap-type: x mandatory; /* przyklejanie do obrazków */
  }
  
  .slides img {
    flex: 0 0 auto;      /* obrazki nie skalują się elastycznie */
    max-width: 300px;    /* maksymalna szerokość pojedynczego obrazka */
    max-height: 500px;   /* maksymalna wysokość */
    object-fit: contain; /* zachowanie proporcji, dopasowanie w ramce */
    scroll-snap-align: start; /* przyklejanie na początku */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    background: #fff;    /* jeśli obraz ma przezroczystość */
  }
  
  
  @keyframes slide-animation {
    0%, 33% { transform: translateX(0); }
    36%, 66% { transform: translateX(-33.3333%); }
    69%, 99% { transform: translateX(-66.6666%); }
    100% { transform: translateX(0); }
  }
  

  .about-us {
    display: flex;
    align-items: flex-start; /* wyrównanie pionowe na górze */
    max-width: 900px;
    margin: 40px auto;
    gap: 40px; /* odstęp między kolumnami */
    text-align: left;
    color: #000;
  }
  
  .about-us-title {
    flex: 0 0 150px; /* stała szerokość dla tytułu */
    font-weight: bold;
    font-size: 1.8em;
    border-left: 4px solid #0690c7;
    padding-left: 15px;
  }
  
  .about-us-content {
    flex: 1; /* zajmuje pozostałe miejsce */
    font-size: 1.1em;
    line-height: 1.5;
  }
  

  .footer {
    background-color: #222;
    color: #eee;
    padding: 20px 10px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
  }
  
  .footer-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .footer-nav a {
    color: #eee;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
  }
  
  .footer-nav a:hover {
    color: #0690c7;
  }
  
  .social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .social-links a:hover {
    transform: scale(1.1);
  }
  
  .social-icon {
    width: 28px;
    height: 28px;
    display: block;
  
    /* filtr kolorujący na #0690c7 */
    filter: invert(36%) sepia(80%) saturate(3974%) hue-rotate(184deg) brightness(94%) contrast(87%);
  }
  

  .about-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
}

.about-left {
  background-color: #000;
  color: #fff;
  flex: 1;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 250px;
}

.about-left h2 {
  font-size: 48px;
  margin: 0;
}

.underline {
  width: 145px;
  height: 3px;
  background-color: #0690c7;
  margin-top: 15px;
}

.about-right {
  background-color: #fff;
  color: #000;
  flex: 2;
  padding: 60px 40px;
  min-width: 300px;
}

.about-right h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.about-right p {
  line-height: 1.6;
}


.welcome-section {
  width: 100%;
  padding: 50px 0;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  padding: 0 200px;
}

.img-top-left,
.img-top-right {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.welcome-title {
  font-size: 60px;
  font-weight: 900;
  text-align: center;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 400px;
}

.img-bottom-left {
  width: 600px;
  height: auto;
  border-radius: 8px;
}

.welcome-text {
  font-size: 20px;
  line-height: 1.4;
  max-width: 400px;
}
.welcome-title {
  font-size: 60px;
  font-weight: 900;
  text-align: center;
}

  .welcome-text strong {
  font-weight: 700;
}

/* Ogólne dla wszystkich obrazów w sekcji powitania */
.top-row img,
.bottom-row img {
  transition: transform 0.3s ease-in-out;
}

/* Efekt powiększenia przy najechaniu */
.top-row img:hover,
.bottom-row img:hover {
  transform: scale(1.05);
}
.montserrat-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; /* Black */
}

