/* TŁO STRONY */
body{
    margin:0;
    min-height:100vh;

    background:black;
    background-image:url('https://trotuary.pl/images/bk_tour.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    color:white;
    font-family:'Cinzel', serif;
}

/* LOGO */
.hero{
    display:flex;
    justify-content:center;

    margin-top:60px;
}

.logo{
    width:420px;
    max-width:90%;
}

/* SOCIALS */
.socials{
    display:flex;
    justify-content:center;
    gap:18px;

    margin-top:20px;
    margin-bottom:30px;
}

.icon{
    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0.85;

    transition:0.3s ease;
}

.icon svg{
    width:100%;
    height:100%;

    fill:white;
}

.icon:hover{
    opacity:1;
    transform:scale(1.15);
}

/* TOUR CONTENT */
.tour-wrapper{
    width:90%;
    max-width:850px;

    margin:0 auto 80px auto;

    display:flex;
    flex-direction:column;
    gap:20px;
}

/* PRZYCISK POWROTU */
.back-button{
    align-self:flex-start;

    padding:12px 22px;

    border:2px solid rgba(255,255,255,0.5);

    color:white;
    text-decoration:none;

    transition:0.3s ease;

    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(4px);
}

.back-button:hover{
    background:white;
    color:black;

    border-color:white;

    transform:translateX(-4px);
}

/* POLE TEKSTOWE */
.tour-box{
    background:rgba(0,0,0,0.55);

    border:2px solid rgba(255,255,255,0.25);

    padding:40px;

    box-sizing:border-box;

    backdrop-filter:blur(6px);

    line-height:1.9;
}

/* TYTUŁ */
.tour-box h1{
    margin-top:0;
    margin-bottom:30px;

    font-size:clamp(24px, 4vw, 40px);

    text-transform:lowercase;

    letter-spacing:3px;
}

/* TEKST */
.tour-box p{
    margin:0;

    font-size:clamp(14px, 2vw, 18px);
}

/* MOBILE */
@media (max-width: 600px){

    .hero .logo{
        width:80%;
    }

    .tour-box{
        padding:25px;
    }

    .tour-box p{
        line-height:1.7;
    }

    .back-button{
        width:100%;
        box-sizing:border-box;
        text-align:center;
    }
}