/* Stylowanie ogólne */
body {
    background-color: #ffffff; /* Zmien kolor na preferowany */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Nagłówek */
header {
    background-color: #2c3e50;  /* Granatowy kolor */
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 60px;  /* Wysokość logo */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;  /* Wyśrodkowanie menu nawigacyjnego */
    flex-grow: 1;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;  /* Kolor tekstu w nagłówku */
    text-decoration: none;
    font-size: 18px;
}

/* Zmiana koloru po najechaniu */
nav ul li a:hover {
    color: #ff8c00;  /* Pomarańczowy kolor przy najechaniu myszką */
}

/* Styl przycisku "Zamów przejazd" w nagłówku */
.cta-button-header {
    background-color: #ffffff;
    color: #002366;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button-header:hover {
    background-color: #ff8c00;
}

section {
    padding: 0px 0px;
    text-align: center;
}

/* Stylizacja sekcji hero */
.hero {
    background: url('https://www.autoblog.hu/media/2014/04/P90147067-highRes.jpg') no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    flex-direction: column; /* Ustawienie tekstu i przycisku w kolumnie */
    justify-content: center; /* Wyśrodkowanie w pionie */
    align-items: flex-start; /* Wyrównanie do lewej */
    padding: 0 20px; /* Dostosuj padding, jeśli potrzebujesz */
    color: white; /* Kolor tekstu */
}

.hero h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
}

.hero p {
    font-size: 1.2em;
    margin: 0 0 20px 0;
}

.cta-button {
    background-color: #ff8c00;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Umożliwia dodanie marginesu */
}

.cta-button:hover {
    background-color: #ff6600;
}

/* Sekcja tekst i zdjęcie */
.text-image-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.text-container {
    flex: 1;
    max-width: 50%;
    margin-right: 20px; /* Przerwa między tekstem a zdjęciem */
}

.text-container h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.text-container p {
    font-size: 1.2em;
    line-height: 1.6;
}

.image-container {
    flex: 1;
    max-width: 50%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Usługi */
/* Ogólne stylizacje dla sekcji usług */
#services {
    background-color: #f8f8f8;
    padding: 50px 0;
    text-align: center;
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
}

/* Kontener na usługi */
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Tworzy responsywną siatkę */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Stylizacja dla każdej usługi */
.service {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
}

.service img {
    width: 100%; /* Zdjęcia na całą szerokość */
    height: 200px;
    object-fit: cover; /* Dostosowanie zdjęcia do kontenera */
}

.service h3 {
    font-size: 1.5em;
    margin: 15px 20px 10px;
    color: #333;
}

.service p {
    font-size: 1em;
    color: #666;
    margin: 0 20px 20px;
}

/* Responsywność */
@media (max-width: 768px) {
    .service-container {
        grid-template-columns: 1fr; /* Pojedyncza kolumna na mniejszych ekranach */
    }
}

/* Formularz kontaktowy */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact-form label {
    margin: 10px 0 5px;
}

#contact-form input, #contact-form textarea {
    padding: 10px 115px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #ff8c00;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #ff6600;
}

/* Mapa Google */
#map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

/* Stopka */
footer {
    background-color: #2c3e50; /* Ciemne tło */
    color: white;
    padding: 45px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 150px; /* Dopasuj wielkość logo */
    margin-bottom: 20px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 1em;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Sekcja kontaktowa */
#contact {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dwie kolumny: jedna dla danych kontaktowych, druga dla formularza */
    gap: 40px; /* Odstęp między kolumnami */
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-form input, .contact-form textarea {
    width: 100%; /* Ustawienie szerokości na 100% kontenera */
    max-width: 600px; /* Maksymalna szerokość pól formularza */
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9; /* Lekkie szare tło */
    box-sizing: border-box; /* Uwzględnienie paddingu i borderu w szerokości */
}

.contact-form button {
    padding: 10px;
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ff6600;
}

/* Sekcja "O nas" */
#about {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
}

.about-item.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.2em;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    padding: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Sekcja z obrazkami i podpisami */
#gallery {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.gallery-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 1 1 calc(20% - 20px);
    margin: 10px;
    text-align: center;
}

.gallery-item img {
    width: 40%;
    height: auto;
    border-radius: 8px;
}

.gallery-item p {
    margin-top: 0px;
    font-size: 1em;
    color: #333;
}

/* Sekcja z dużym zdjęciem i małymi zdjęciami */
#gallery {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.gallery-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.large-image {
    flex: 1 1 60%;
    margin-right: 20px;
}

.large-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.small-images {
    flex: 1 1 35%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.small-image {
    width: calc(50% - 10px);
    text-align: center;
}

.small-image img {
    width: 50%;
    height: auto;
    border-radius: 8px;
}

.small-image p {
    margin-top: 5px;
    font-size: 0.9em;
    color: #333;
}

/* Sekcja z obrazkami i podpisami */
#gallery-small {
    padding: 40px 20px;
}

.gallery-small-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-small-item {
    flex: 1 1 calc(20% - 20px);
    text-align: center;
}

.gallery-small-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery-small-item p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #333;
}

/* Sekcja z napisem na samej górze */
#top-banner {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

#top-banner p {
    margin: 0;
    font-size: 2em;
    font-weight: bold;
    color: #333;
}

/* Styl dla ekranów większych niż 1200px (desktopy) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Styl dla ekranów większych niż 768px i mniejszych niż 1200px (tablety) */
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        max-width: 768px;
        margin: 0 auto;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Styl dla ekranów mniejszych niż 768px (telefony) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        margin: 0 auto;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
    }

    .service-container {
        flex-direction: column;
        align-items: center;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ogólne stylizacje */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
    margin: 0;
}

/* h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
} */

a {
    text-decoration: none;
    color: rgb(43, 153, 243);
}


/* Sekcja główna */
#main-service {
    position: relative;
    text-align: center;
}

.service-banner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    color: white;
}

.banner-text h1 {
    font-size: 3em;
}

.banner-text p {
    font-size: 1.2em;
    margin: 10px 0;
}

.cta-button {
    background-color: #ff9800;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e68900;
}

/* Informacje o usłudze */
#service-info {
    padding: 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.info-item {
    flex-basis: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.info-item h3 {
    margin: 20px 0;
    font-size: 1.5em;
    color: #333;
}

/* Sekcja główna VIP */
#main-service-vip {
    position: relative;
    text-align: center;
}

.service-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    color: white;
}

.banner-text h1 {
    font-size: 3.5em;
    font-weight: 700;
}

.banner-text p {
    font-size: 1.3em;
    margin: 10px 0;
}

.cta-button {
    background-color: #ff9800;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff9800;
}

/* Informacje o usłudze VIP */
#service-info-vip {
    padding: 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    flex-basis: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.info-item h3 {
    margin: 20px 0;
    font-size: 1.5em;
    font-weight: 600;
}

.info-item p {
    font-size: 1.1em;
    color: #555;
}

/* Sekcja główna transferów lotniskowych */
#airport-transfers {
    position: relative;
    text-align: center;
}

.transfer-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    color: white;
}

.banner-text h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0;
}

.banner-text p {
    font-size: 1.3em;
    margin: 10px 0;
}

.cta-button {
    background-color: #ff9800;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff9800;
}

/* Informacje o transferach lotniskowych */
#transfer-info {
    padding: 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    flex-basis: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.info-item h3 {
    margin: 20px 0;
    font-size: 1.5em;
    font-weight: 600;
}

.info-item p {
    font-size: 1.1em;
    color: #555;
}

/* Ogólny reset stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ustawienia ciała strony */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f9;
    line-height: 1.6;
}

/* Sekcja główna */
.order-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.order-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input[type="text"], form input[type="tel"], form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    background-color: #ff9800;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #ff9800;
}

.submit-btn:hover {
    background-color: #ff6600;
}

/* Stylizacja kontenera numeru telefonu */
.phone-container {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* Odstęp między selektorem a polem numeru */
    margin-bottom: 10px;
}

.phone-container select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f4f4f9;
    font-size: 1rem;
}

.phone-container input[type="tel"] {
    flex-grow: 1; /* Pole telefonu zajmie pozostałą przestrzeń */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style dla urządzeń mobilnych (domyślne) */
body {
    font-size: 16px;
    padding: 10px;
}

/* Style dla ekranów o szerokości powyżej 768px (tablety i większe) */
@media screen and (min-width: 768px) {
    body {
        font-size: 18px;
        padding: 20px;
    }
}

/* Style dla ekranów o szerokości powyżej 1024px (laptopy i większe) */
@media screen and (min-width: 1024px) {
    body {
        font-size: 20px;
        padding: 0px;
    }
}
