body {
    background-color: #262626; 
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px 5%; 
    box-sizing: border-box;
}

.logo {
    height: 40px; 
    width: auto;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
}

.btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 30px; 
    font-size: 1em;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: bold; 
}

.btn:hover {
    background-color: white;
    color: #262626;
}

.text {
    position: relative;
    height: 100vh; 
    width: 100%;
    background-image: url('IMG_1889.png'); 
    background-size: cover; 
    background-position: center center; 
    overflow: hidden; 
}



.text1 {
    position: absolute;
    top: 30%; 
    left: 5%;
    right: 5%;
    z-index: 2; 
    display: flex;
    justify-content: space-between; 
    max-width: 1300px;
    margin: 0 auto;
}


.text2 { 
    width: 40%;
}

.text3 {
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 1px;
}

.jmeno {
    font-family: 'Impact', sans-serif; 
    font-size: 14vw; 
    line-height: 0.8; 
    font-weight: 900;
    color: white; 
    position: absolute;
    bottom: 50px; 
    left: 5%;
    z-index: 2;
    margin: 0;
    text-transform: uppercase;
}

.icon {
    font-size: 1.3em; 
    margin-right: 20px; 
    opacity: 0.8;
    transition: opacity 0.3s;
}

.icon:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .text{
        min-height: 100vh; 
    }

    .header {
        padding: 15px 5%;
    }
    
    .text1 {
        flex-direction: column; 
        top: 15%; 
        left: 5%;
        right: 5%;
    }

    .text2 { 
        width: 100%; 
        margin-bottom: 20px;
    }
    
    .jmeno {
        position: absolute; 
        top: auto; 
        bottom: 30px; 
        left: 5%;
        font-size: 12vw; 
        white-space: normal; 
        line-height: 1; 
    }
    
    .icon {
        font-size: 1.1em;
        margin-right: 15px; 
    }
}