*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

#naglowek{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(tlo1.webp);
    background-size: cover;
    background-position: center;
    height: 100vh;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 50px;
    position: relative; 
}

#kontaktform{
 text-decoration: none;   
 color: white;
 
}





/* logo */
.logo{
    height: 30vh;
}

/* menu wyśrodkowane */
.menu{
    display:flex;
    gap:40px;
    align-items:center;
    flex:1;
    justify-content:center;
}

/* linki menu */
.menu a{
    color:white;
    text-decoration:none;
    font-size:25px;
    position:relative;
    margin-top: 20px;
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:white;
    transition:0.3s;
}

.menu a:hover::after{
    width:100%;
}

/* flaga */
.lang{
    display:flex;
    gap:10px;
    align-items:center;
    
    margin-top: 20px;
}

.social-links{
    display:flex;
    flex-direction: column;
    gap:10px;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
}

.social-links a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:bold;
    font-family: Arial, sans-serif;
    color:white;
    background:#ff7a00;
    border:2px solid #ff7a00;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}

.social-links a:hover{
    background:white;
    color:#ff7a00;
    transform: translateY(-2px);
}

.social-links svg{
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.flag{
    width:60px;
    height:auto;
    cursor:pointer;
}

.info1{
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    max-width: 500px;
}



.info1 button{
    width: 100%;
    height: 50px;
    background-color: #ff7a00;
    color: #eee;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 34px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* efekt najechania */
.info1 button:hover{
    background-color: #ff9500;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* efekt kliknięcia */
.info1 button:active{
    transform: scale(0.96);
}



.p1{
color: rgb(255, 133, 3);
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.contact-form{
    max-width: 420px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    font-family: Arial, sans-serif;
}

.contact-form h2{
    margin-bottom: 10px;
    color: #ff7a00;
}

.contact-form p{
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.consent-row{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin: 6px 0 16px;
    text-align:left;
}

.consent-row input[type="checkbox"]{
    margin-top: 2px;
}

.consent-row label{
    font-size: 13px;
    line-height: 1.4;
    color:#444;
}

.consent-row a{
    color:#ff7a00;
    font-weight:bold;
}

/* efekt po kliknięciu */
.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #ff7a00;
    outline: none;
    box-shadow: 0 0 8px rgba(255,122,0,0.3);
}

/* przycisk */
.contact-form button{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#ff7a00,#ff9a2f);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* efekt hover */
.contact-form button:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,122,0,0.4);
}

/* efekt kliknięcia */
.contact-form button:active{
    transform: scale(0.97);
}
 

.form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info2{
    position: absolute;
    top: 20px;
    right: 120px;
    max-width: 500px;
    top: 320px;
}

.info2 p{
    color: white;
    text-align: right;
    font-size: 30px;
    
}





.motory{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
padding:50px;
background:#292626;
}

.motor-card{
width:320px;
background:white;
border-radius:12px;
padding:25px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.motor-card:hover{
transform:translateY(-5px);
}

.motor-card img{
width:100%;
margin-bottom:15px;
}

.motor-card h2{
font-size:28px;
margin-bottom:10px;
}

.spec{
border:2px solid #ff9a2f;
border-radius:10px;
padding:15px;
margin-bottom:15px;
color:#ff9a2f;
}



.bottom{
display:flex;
justify-content:space-between;
align-items:center;
}

.price{
font-size:24px;
font-weight:bold;
color:#ff9a2f;
}

.bottom button{
background:#ff9a2f;
color:white;
border:none;
padding:10px 20px;
border-radius:25px;
cursor:pointer;
transition:0.3s;
}

.bottom button:hover{
background:#ff9a2f;
}



/* SEKJA ZAKWATEROWANIE */

.zakwaterowanie{
padding:80px 10%;
background:#292626;
font-family:Arial;
}

.zak-container{
display:flex;
gap:50px;
align-items:center;
margin-bottom:40px;
}

.zak-text{
flex:1;
}

.zak-text h2{
font-size:38px;
margin-bottom:20px;
color:#ff7a00;
}

.zak-text p{
font-size:18px;
line-height:1.6;
margin-bottom:15px;
color:#ffffff;
}

.zak-map{
flex:1;
}

.zak-map iframe{
width:100%;
height:350px;
border-radius:12px;
border:none;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* zdjęcia */

.zak-gallery{
display:flex;
gap:20px;
justify-content:center;
}

.zak-gallery img{
width:45%;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.3s;
}

.zak-gallery img:hover{
transform:scale(1.03);
}




/* SEKCJA TRANSPORTU */

.transport {
    position: relative;
    padding: 100px 10%;
    text-align: center;
    color: white;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.transport::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Gradient + zdjęcie busa */
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url(sprinter.jpg);
    background-size: cover;
    background-position: center;

    /* Rozmycie tła */
    filter: blur(6px);
    transform: scale(1.1);

    z-index: 0;
}

/* Tekst nad tłem */
.transport-container,
.section-title,
.transport-features {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    margin-bottom: 50px;
    color: #ff7a00;
}

/* Tekst główny */
.transport-content {
    max-width: 800px;
    margin: auto;
}

.transport-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Zalety transportu */
.transport-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.feature h3 {
    color: #ff7a00;
    margin-bottom: 10px;
    font-size: 22px;
}

.feature p {
    color: white;
    font-size: 16px;
    line-height: 1.5;
}


/* Styl dla numeru telefonu */
.nr {
    text-decoration: none;           /* usuwa podkreślenie */
    color: white;                     /* kolor tekstu */
    background-color: #ff7a00;        /* pomarańczowe tło */
    padding: 10px 20px;               /* odstępy wokół numeru */
    border-radius: 25px;              /* zaokrąglone rogi */
    font-weight: bold;                /* pogrubienie */
    border: 2px solid #ff7a00;       /* obramowanie w tym samym kolorze */
    transition: all 0.3s ease;        /* płynna zmiana efektów */
    display: inline-block;            /* aby padding i border działały dobrze */
}

/* Efekt po najechaniu */
.nr:hover {
    background-color: white;          /* zmiana tła */
    color: #ff7a00;                   /* zmiana koloru tekstu */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* delikatny cień */
    transform: translateY(-3px);      /* lekko unosimy przy hover */
}











/* --- Sekcja Kontakt --- */
.kontakt {
    padding: 80px 10%;
    background: #1e1e1e;
    color: white;
    font-family: Arial, sans-serif;
}

.kontakt h1.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #ff7a00;
}

.kontakt-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.kontakt-box {
    background: rgba(255, 122, 0, 0.1);
    padding: 30px;
    border-radius: 16px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.kontakt-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: rgba(255, 122, 0, 0.2);
}

.kontakt-box h2 {
    margin-bottom: 20px;
    color: #ff7a00;
    font-size: 24px;
}

.kontakt-box p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Styl linków w kontakcie */
.kontakt-box a.nr {
    text-decoration: none;
    color: white;
    background-color: #ff7a00;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.kontakt-box a.nr:hover {
    background-color: white;
    color: #ff7a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* --- Polityka prywatności --- */
.privacy{
    background: #111;
    color: #ddd;
    padding: 50px 10%;
    font-family: Arial, sans-serif;
}

.privacy h2{
    color: #ff7a00;
    font-size: 32px;
    margin-bottom: 18px;
}

.privacy p{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 900px;
}

.privacy a{
    color: #ff9a2f;
}

/* --- Stopka --- */
.footer {
    background: #111;
    padding: 30px 10%;
    color: #aaa;
    text-align: center;
    font-family: Arial, sans-serif;
    border-top: 3px solid #ff7a00;
}

.footer p {
    margin: 0;
    font-size: 14px;
}


/* Styl dodatkowego tekstu w sekcji Kontakt */
.kontakt p.kon {
    text-align: center;          /* wyśrodkowanie */
    color: #ff7a00;              /* pomarańczowy, jak nagłówki */
    font-size: 18px;             /* lekko większa czcionka */
    font-weight: bold;           /* pogrubienie */
    margin-bottom: 40px;         /* odstęp od kontenerów z kontaktami */
    font-family: Arial, sans-serif;
}

@media (max-width: 1200px){
    .menu{
        gap: 20px;
    }

    .menu a{
        font-size: 20px;
    }

    .flag{
        width: 44px;
    }

    .social-links a{
        width: 46px;
        height: 46px;
    }

    .info1{
        left: 40px;
        font-size: 24px;
        max-width: 420px;
    }

    .info1 button{
        font-size: 28px;
    }

    .info2{
        right: 40px;
        max-width: 360px;
    }

    .info2 p{
        font-size: 24px;
    }

    .contact-form{
        max-width: 360px;
        padding: 24px;
    }
}

@media (max-width: 992px){
    #naglowek{
        height: auto;
        min-height: 100vh;
        padding: 20px 24px 40px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .logo{
        height: 22vh;
    }

    .menu{
        width: 100%;
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    .menu a{
        font-size: 18px;
        margin-top: 0;
    }

    .lang{
        margin-top: 0;
    }

    .flag{
        width: 40px;
    }

    .social-links{
        right: 12px;
        bottom: 12px;
    }

    .info1,
    .form,
    .info2{
        position: static;
        transform: none;
        width: 100%;
        max-width: 720px;
    }

    .info1{
        font-size: 22px;
        text-align: center;
    }

    .info1 button{
        max-width: 360px;
    }

    .form{
        margin-top: 10px;
    }

    .contact-form{
        margin: 0 auto;
        max-width: 600px;
    }

    .info2{
        margin-top: 8px;
    }

    .info2 p{
        text-align: center;
        font-size: 22px;
    }

    .zak-container{
        flex-direction: column;
        gap: 26px;
    }

    .zak-gallery{
        flex-direction: column;
        align-items: center;
    }

    .zak-gallery img{
        width: 100%;
        max-width: 720px;
    }

    .section-title,
    .kontakt h1.section-title{
        font-size: 38px;
    }

    .transport-content p{
        font-size: 18px;
    }
}

@media (max-width: 600px){
    .logo{
        height: 18vh;
    }

    .menu{
        justify-content: center;
        gap: 10px 12px;
    }

    .menu a{
        font-size: 16px;
    }

    .info1{
        font-size: 18px;
    }

    .info1 button{
        height: 46px;
        font-size: 22px;
    }

    .contact-form{
        padding: 18px;
    }

    .contact-form p{
        margin-bottom: 16px;
    }

    .social-links a{
        width: 42px;
        height: 42px;
    }

    .social-links svg{
        width: 20px;
        height: 20px;
    }

    .consent-row{
        gap: 8px;
    }

    .consent-row label{
        font-size: 12px;
    }

    .info2 p{
        font-size: 18px;
    }

    .motory{
        padding: 30px 14px;
        gap: 20px;
    }

    .motor-card{
        width: 100%;
        max-width: 360px;
        padding: 18px;
    }

    .motor-card h2{
        font-size: 24px;
    }

    .bottom{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .zakwaterowanie,
    .transport,
    .kontakt{
        padding: 56px 6%;
    }

    .privacy{
        padding: 42px 6%;
    }

    .privacy h2{
        font-size: 26px;
    }

    .privacy p{
        font-size: 15px;
    }

    .zak-text h2{
        font-size: 30px;
    }

    .zak-text p{
        font-size: 16px;
    }

    .zak-map iframe{
        height: 260px;
    }

    .section-title,
    .kontakt h1.section-title{
        font-size: 30px;
        margin-bottom: 30px;
    }

    .transport-content p{
        font-size: 16px;
        margin-bottom: 18px;
    }

    .kontakt-box{
        width: 100%;
        max-width: 340px;
        padding: 22px;
    }
}
























