*{
    margin: 0;
    font-family: kanit, serif;
}
body{
    background-color: #262626;
}
.nygaszlup{
    display: none;
}
.top{
    background-color: rgba(60, 60, 60, 0.9);
    height: 20vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    width: 100vw;
}
header{
    background-image: url(baner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;

}
.menu-toggle {
    display: none;
}
.kapa{
    height: 80vh;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: fit-content;
    
}
ul{
    display: flex;
    justify-content: space-between;
    list-style: none;

}
.logo{
    height: 15vh;

}
li>a{
    color: white;

    text-decoration: none;
    font-size: 32px;
}
li{
    margin: 32px;
}
.biale{
    color: white;
}
.zolty{
    color: #D6A354;
}
h2 {
    position: absolute;
    left: 16%;
    top: 40%;
    font-size: 5vw;
    font-weight: initial;
}
h3 {
    font-size: 5vw;
    font-weight: initial;
    color: white;
}

.przycisk {
    background-color: #D6A354;
    padding: 1vw 2vw;
    border: none;
    font-size: 2vw;
    cursor: pointer;
    text-decoration: none;
    left: 16%;
    width: 20vw;
    text-align: center;
}

.c {
    background-color: black;
    color: white;
    position: absolute;
    top: 82%;
}

.p {
    background-color: #D6A354;
    color: black;
    position: absolute;
    top: 70%;
}


section{
    margin: 32px 0 32px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    flex-direction: column;
}
article{
    display: flex;
    margin: 16px;

}
.maly{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D6A354;
    width: 20vw;
    height: 150px;
    border-radius: 8px;
    margin-left: 10px;
    font-size: 3em;
}
.input[type="submit"]{
    margin: auto;
}
.duzy{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #D6A354;
    width: 70vw;
    height: 150px;
    border-radius: 8px;
    margin-left: 10px;
    font-size: 2em;

}
main{
    background-color: #262626;
}

footer{
    background-color: #D6A354;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}
footer>a{
    margin-left: 8px;
    color: black;
}
.foto{
    height: 140px;
    width: 140px;
    border-radius: 6px;
    object-fit: cover;
    margin-left: 5px;
}
.duzy>p{
    margin-left: 20vw;
}
.profile {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.hairdresser {
    background-color: #D6A354;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    width: 30%;
    margin: 10px;
}

.hairdresser img {
    object-fit: cover;
    height: 60vh;
    border-radius: 6px;
    width: 100%;
    margin: auto;
}

.hairdresser p {
    margin: 10px 0;
    font-size: 1.2em;
}
.mission {
    background-color: #D6A354;
    color: black;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5em;
    margin: 20px;
}
form {
    background-color: #D6A354;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: black;
}

form input,textarea,select{
    color: white;
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    background-color: #262626;
}

form input[type="submit"] {
    background-color: black;
    color: #D6A354;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1.2em;
    cursor: pointer;
}
.contact{
    background-color: #D6A354;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.contact h3 {
    font-size: 2em;
    color: black;
    text-align: center;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2em;
    color: black;
    text-align: center;
    margin-bottom: 10px;
}

form input[type="submit"]:hover {
    background-color: #333;
}


@media (max-width: 720px) {
    .nygaszlup{
        display: block;
    }
    body {
        font-size: 14px;
    }

    .top {
        flex-direction: column;
        height: auto;
    }

    .logo {
        height: 10vh;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 16px 0;
    }

    h2 {
        font-size: 6vw;
        left: 10%;
        top: 30%;
    }

    h3 {
        font-size: 4vw;
    }

    .przycisk {
        font-size: 4vw;
        width: 40vw;
    }

    .kapa {
        height: 60vh;
    }

    section {
        margin: 16px 0;
    }

    .duzy, .maly {
        width: 90%;
        height: auto;
        font-size: 1.5em;
    }

    .duzy img, .maly img {
        width: 100%;
        height: auto;
    }

    .duzy p {
        margin-left: 0;
    }

    .profile {
        flex-direction: column;
    }

    .hairdresser {
        width: 90%;
        margin: 10px auto;
    }

    .mission {
        font-size: 1.2em;
    }

    form {
        width: 90%;
        padding: 10px;
    }

    form label {
        font-size: 1em;
    }

    form select {
        width: 80vw;
    }

    form input{
        font-size: 1em;
    }

    .contact {
        width: 90%;
        padding: 10px;
    }

    .contact h3 {
        font-size: 1.5em;
    }

    .contact p {
        font-size: 1em;
    }

    footer {
        font-size: 1.5em;
    }
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    nav ul.show {
        display: flex;
    }
    .logo {
        align-self: flex-start;
        margin-left: 10px;
    }

    .menu-toggle {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #D6A354;
        color: black;
        border: none;
        padding: 10px 20px;
        font-size: 1.5em;
        cursor: pointer;
        border-radius: 4px;
        z-index: 1000;
    }
    header {
        background-size: cover;
        background-position: center;
        height: 100vh;
    }

    .kapa {
        height: 100vh;
    }
    .top {
        background-color: rgba(60, 60, 60, 0.9);
    }
    h2 {
        top: 50%;
        transform: translateY(-50%);
        font-size: 5vw;
    }
    .maly {
        display: none;
    }

    .duzy img {
        display: none;
    }

    .duzy p.cost {
        display: block;
        margin-left: 20vw;
        font-size: 1.5em;
        color: black;
    }
    .duzy{
        width: 80vw;
        height: 150px;
        padding: 10px;
    }
    .kapa{
        height: 30vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header{
        background-image: none;
        height: auto;
    }
    body{
        background-image: url("baner.png");
    }
    main{
        background-color: rgba(1,1,1,0);
    }

    h2{
        position: static;
        font-size: 3em;
        margin-top: 200px;
        z-index: -1;

    }
    .szlup{
        display: none;
    }
    form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    form input[type="submit"] {
        margin: auto;
    }



}