@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}

.wrapper {
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
p,
span {
    color: #040f0f;
}

.nav-bg {
    height: 80px;
    width: 100%;
    background-color: black;
    color: white;
}

#menu {
    z-index: 9999;
}

.nav-link {
    font-weight: 400;
    font-size: 20px;
}

.nav-link:hover {
    text-decoration: underline;
}

nav li {
    list-style: none;
}

.logo-header {
    font-size: 25px;
    margin-left: 1rem;
    width: 95px;
}

.btn-language {
    color: white;
    font-size: 20px;
}

.top-hamburger {
    top: 4.9rem;
}

/*CLOSE OPEN BTN ANİMATİON */
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}

.line {
    fill: none;
    stroke: white;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

/*CLOSE OPEN BTN ANİMATİON */

#lang-drop {
    position: absolute;
    top: 2rem;
    background: white;
    border-radius: 5px;
    padding: 6px;
    right: -6px;
    color: black;
    z-index: 9999;
}

#lang-dropMobile {
    background: white;
    border-radius: 5px;
    padding: 6px;
    right: 11.9rem;
    color: black;
    z-index: 9999;
}

.btn-reservation {
    cursor: pointer;
    border: 1px solid black;
    padding: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
}

.btn-reservation:hover {
    background-color: black;
    color: white;
    transition: 1s;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: black;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

footer {
    width: 100%;
    padding: 4rem 0;
    max-height: 200px;
    background-color: #000;
    color: white;
}

.sm-text {
    font-size: 0.7rem;
}

.mapWidth {
    width: 90%
}

.none {
    display: none;
}

.letter-space {
    letter-spacing: 0.6px;
}

.opened-overflow {
    overflow-y: hidden;
    overflow-x: hidden;
}

@media(max-width:900px) {
    .logo-header {
        font-size: 20px;
    }

    .mapWidth {
        width: 100%
    }

    footer {
        max-height: 100%;
    }

    .nav-link {
        font-size: 18px;
    }

    .logo-header {
        margin-left: 0;
    }

    .btn-reservation {
        width: 250px;
        height: 50px;
        margin: 0 auto;
        background-color: white !important;
        border: 1px solid black;
        display: flex;
        justify-content: center;
        align-items: center;
        color: black;
        font-weight: 600;
        font-size: 1rem;
    }
}