@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

/* ustawienie wyglądu, oraz rozmieszczenia elementów w 
nagłówku oraz w elementach nagłówka*/

header {
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items: center;
    height: 100px;
    background-color: rgb(255, 255, 255);
    font-size: 130%;
    border-bottom: 1px solid black;
}

.logo {
    width: 30%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 20px;
    border-radius: 50px;
    overflow: hidden;
}

.logo img {
    width: 90px;
    height: 90px;
    border-radius: 100px;
}

.menu {
    width: 40%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
}

.facebooklink {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.facebooklink a {
    margin-left: 30px;
    transform: translateY(-2px);
    font-size: 80%;
}

.fbicon {
    transform: scale(0.6);
    transition: transform 0.2s;
}

.fbicon:hover {
    transform: scale(0.7);
}

/* ustawienie wyglądu przycisków w menu podstawowoym 
(nierozsuwanym)*/

.MenuBtn {
    text-decoration: none;
    color: black;
    transition: all 0.2s;
    margin-left: 15px;
    margin-right: 15px;
}

.MenuBtn:hover {
    transform: scale(1.15);
    color: rgb(85, 85, 85);
}

.MenuBtnActive {
    transform: scale(1.1);
    color: rgb(85, 85, 85);
}

.MenuOpener {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    transition: all 1s;
}


.MenuOpener img {
    transform: scale(0.6);
}

/* Zmiana Menu głównego na przycisk wysuwający menu
po osiągnięciu wielkości ekranu mniejszej niż 900px */

@media only screen and (max-width: 920px) {
    .MenuOpener {
        display: unset;
    }

    .MenuOpener.hide {
        transform: translateX(500%);
    }

    .menu{
        display: none;
    }

    .facebooklink .fbicon {
        display: none;
    }

    .facebooklink a {
        display: none;
    }

}

@media only screen and (min-width: 920px) {
    .SlideMenu {
        display: none;
    }
}

.CloseBtnDiv {
    width: 100%;
    height: 5%;
    display: flex;
    justify-content: end;
    border-bottom: 1px solid rgb(213, 213, 213);
}

.CloseBtnDiv img {
    transform: scale(0.7);
}

.SlideMenu.active {
    transform: translateX(0);
}

/* Ustawienie Slide menu */

.SlideMenu {
    position: fixed;
    width: 85%;
    height: 100vh;
    background-color: white;
    box-shadow: 13px 0px 8px -12px rgba(66, 68, 90, 1);
    transform: translateX(-104%);
    transition: all 1s;
    z-index: 1;
}

.SlideMenuButtons {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 70%;
    font-size: 140%;
}

.SlideMenuBtn {
    margin: 30px;
    text-decoration: none;
    color: black;
}

.button {
    background-color: black;
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    color: white;
    font-weight: 650;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 90%;
    text-decoration: none;
}

.SlideMenuBtn .button {
    margin-left: 40px;
    transform: translateY(6px);
    font-size: 65%;
}

.SlideMenuBtnFbAndRezerwation {
    display: flex;
    flex-direction: row;
}

.SlideMenuButtons img {
    transform: scale(0.9);
    transform: translateX(-1.5px);
}

/* sekcja 1 lokalizacja*/

.section1 {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    padding: 50px;
}

.map {
    width: 60%;
}

.map iframe {
    width: 100%;
    height: 500px;
}

.lokalizacjacontainer {
    width: 40%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.lokalizacjatext {
    width: 60%;
    height: 200px;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 0px 29px -25px rgba(66, 68, 90, 1);
    margin-left: 20px;
    margin-right: 20px;
}

.textheader {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 125%;
    font-weight: 700;
    margin-top: 10px;
    height: 50px;
}

.textcontent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    line-height: 40px;
    font-size: 110%;
    text-align: center;
}

@media only screen and (min-width: 920px) {

}

@media only screen and (max-width: 920px) {
    .section1 {
        flex-direction: column;
    }

    .lokalizacjacontainer {
        flex-direction: row;
        width: 100%;
    }

    .map {
        width: 100%;
    }

    .lokalizacjatext {
        width: 40%;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 640px) {
    .lokalizacjacontainer {
        flex-direction: column;
        width: 100%;
    }

    .lokalizacjatext {
        width: 100%;
        margin-top: 40px;
    }
}

/* stopka */

footer {
    width: 100%;
    font-size: 110%;
    font-weight: 200;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    height: 50px;
    position: fixed;
    bottom: 0;
}

/* sekcja 2 kontakt */

.section2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.kontaktphoto {
    width: 40%;
    height: auto;
}

.kontaktphoto img {
    width: 100%;
    height: 550px;
}

.kontaktformtext {
    margin-bottom: 50px;
    font-size: 200%;
    font-weight: 700;
    width: 90%;
}

.kontaktform {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form {
    width: 90%;
}

input {
    width: 100%;
    height: 50px;
    border: 1px solid rgb(183, 183, 183);
    background-color: rgba(215, 215, 215, 0.275);
    box-sizing: border-box;
    padding: 10px;
    font-size: 110%;
    transition: 0.3s all;
}

input:active {
    border: 1px solid rgb(183, 183, 183);
    outline: none;
    background-color: white;
}

input:focus {
    border: 1px solid rgb(183, 183, 183);
    outline: none;
    background-color: white;
}

textarea:active {
    border: 1px solid rgb(183, 183, 183);
    outline: none;
    background-color: white;
}

textarea:focus {
    border: 1px solid rgb(183, 183, 183);
    outline: none;
    background-color: white;
    transition: 0.3s all;
}

textarea {
    width: 100%;
    height: 150px;
    border: 1px solid rgb(183, 183, 183);
    background-color: rgba(215, 215, 215, 0.275);
    box-sizing: border-box;
    padding: 10px;
    font-size: 110%;
    resize: none;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 920px) {
    .section2{
        flex-direction: column;
    }

    .kontaktform {
        width: 100%;
    }

    .kontaktphoto {
        width: 100%;
    }

    .kontaktformtext {
        margin-top: 50px;
    }
}

/* sekcja 3 */

.section3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    padding-top : 0;
    margin-bottom: 50px;
}

.section3 .lokalizacjatext .textcontent {
    font-weight: 600;
    font-size: 100%;
    margin-top: -10px;
}

@media only screen and (max-width: 700px) {
    .section3 {
        flex-direction: column;
    }
}