@import url('https://fonts.googleapis.com/css2?family=Bigelow+Rules&family=Dancing+Script:wght@500&family=Dosis:wght@200;300;400;500;600&family=Great+Vibes&family=Julee&family=Kaushan+Script&family=Merriweather:ital,wght@0,300;1,300&display=swap');

:root {
    --d-yellow: #c59d5f;
    --light: white;
    --dark: #222;
    --Pcolor: #a5a5a5;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
    text-decoration: none;
}

body {
    height: 300vh;
}

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

::-webkit-scrollbar-track {
    background-color: #f1f1ff;
}

::-webkit-scrollbar-thumb {
    background-color: var(--d-yellow);
}

html {
    scroll-behavior: smooth;
}

.sec-padding {
    padding: 50px 0;
}

.section-title {
    width: 100%;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 35px;
    text-transform: capitalize;
}

span {
    font-family: 'Lora', serif;
}

section {
    padding: 100px 0 0;
    text-align: center;
}

section .container {
    width: 85%;
    margin: auto;
}

.sec-head span {
    font-size: 50px;
}

.sec-head h2 {
    font-size: 30px;
    padding: 8px;
}

.sec-head img {
    padding: 5px;
}

.sec-head {
    position: relative;
    z-index: 2;
    padding: 8px;
}

.small-sec .sec-head h2 {
    color: white;
}

.small-sec {
    position: relative;
    padding: 180px 0;
    margin-bottom: 100px;
    width: 100%;
    background-color: #222;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.boxs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.boxs .box {
    flex-basis: 31.5%;
}

.btn {
    font-size: 14px;
    color: white;
    background-color: var(--d-yellow);
    padding: 10px 15px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn:hover {
    color: var(--d-yellow);
    background-color: white;
}

.bg-overlay::after {
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    /*background-color: rgba(58, 56, 56, 0.65);*/
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif;
}

p {
    font-size: 18px;
}

.arrow-top,
.arro-bottom {
    content: '';
    position: absolute;
    width: 92px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.arrow-top {
    top: -1px;
    background-image: url(galeri/arrow-up.png);
}

.arro-bottom {
    bottom: -1px;
    background-image: url(galeri/arrow-down.png);
}


/*RESERVATİON*/
.reservation {
    position: fixed;
    top: -120%;
    left: 0;
    z-index: 800;
    min-height: 100vh;
    width: 100%;
    background-color: rgba(39, 39, 39, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.reservation.active {
    top: 0;
}

.reservation .res-bg {
    width: 65vw;
    background-color: #fff;
    border-radius: 2px;
    padding: 25px 100px;
    text-align: center;
}

.reservation .res-bg .text h3 {
    text-align: center;
    color: var(--d-yellow);
    font-size: 30px;
    margin-bottom: 50px;
}

.reservation form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.reservation form input {
    width: 28%;
    padding: 15px 10px;
    outline: none;
    margin-bottom: 30px;
    border: 1px solid #a5a5a5;
}

.reservation form textarea {
    padding: 10px;
    width: 100%;
    border: 1px solid #a5a5a5;
    margin-bottom: 20px;
    line-height: 2;
    outline: none;
}

.reservation form textarea:focus,
.reservation form input:focus {
    border-color: var(--d-yellow);
}

.reservation .btn {
    background-color: #222;
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    letter-spacing: 1.5px;
}

#closeResrv {
    position: absolute;
    top: 30px;
    right: 50px;
    width: 30px;
    height: 30px;
    background-color: #c59d5f;
    line-height: 30px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}


/*HEADER*/
.header {
    width: 100%;
    /* background-color: rgba(226, 218, 218, 0.750);*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
}

.header nav {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.header nav .logo {
    color: white;
    font-size: 50px;
    font-family: 'Lora', serif;
    font-weight: bold;
    letter-spacing: 2px;
}

.header nav .logo img {
    height: 100px;
    padding-top: 20px;
}

.header nav .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header nav ul li {
    display: inline-block;
    margin: 0 30px;
    height: 100px;
    position: relative;
    line-height: 100px;
}

.header nav ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--d-yellow);
    width: 0%;
    height: 2px;
    transition: 0.3s;
}

.header nav ul li:hover::after,
.header nav ul li:active::after {
    width: 100%;
}

.header nav ul li a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

#OpenMenu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    border: 3px solid var(--d-yellow);
    width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    font-size: 30px;
}

#OpenMenu {
    right: 30px;
}

.header.active {
    background-color: var(--light);
    border-bottom: 1px solid rgba(34, 34, 34, 0.40);
}

.header.active nav ul li a {
    color: var(--dark);
}

.header.active nav .btn {
    color: var(--dark);
    border: 1px solid var(--d-yellow);
}

.header.active nav .btn:hover {
    color: var(--d-yellow);
}



/*HOME*/
.home .home-slider .slide1 {
    background: url(etkinlik/home-min.webp);
}

.home .home-slider .slide2 {
    background: url(etkinlik/home4-min.webp);
}

.home .home-slider .slide3 {
    background: url(etkinlik/home6-min.webp);
}

.home .home-slider .slide4 {
    background: url(etkinlik/home3-min.webp);
}

.home .container-1 h3 {
    font-size: 40px;
    padding: 10px;
}

.home .home-activity {
    background-image: url(etkinlik/arrow2.jpg);
    background-position: center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.home .home-slider .slide {
    display: flex;
    align-items: center;
    height: 100vh;
    background-position: center;
    background-size: cover;
}

.home .home-slider .slide .content {
    text-align: center;
    width: 80%;
    margin: auto;
    z-index: 2;
}

.home .home-slider .slide .content h3 {
    font-size: 25px;
}

.home .home-slider .slide .content h1 {
    font-size: 40px;
    padding: 0 0 35px;
}

.home .home-slider .slide .content .btn {
    padding: 15px 25px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-swip {
    width: 70px;
    height: 70px;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.home .row {
    padding: 20px;
}


/*ABOUT*/
.about .content .div-p {
    margin: auto;
    padding: 10px;
}

.about .content .div-p p {
    color: var(--dark);
    font-size: 25px;
    font-family: 'Lora', serif;
    padding: 10px;
}

.div-p img {
    padding: 15px;
}

.sec-head span {
    color: black;
}

/*GALERYY*/
.slider_container .small-sec {
    background: url(etkinlik/home5-min.webp), no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.img_box img {
    max-width: 100%;
}

.slider_container .container {
    padding: 0 15px;
    max-width: 1600px;
    margin: 0 auto;
}

.card_slider {
    padding: 50px 0px;
}

.container h3 {
    font-family: var(--font-Great);
    font-size: 40px;
}


/*MENU*/
.sec-menu .small-sec {
    background: url(etkinlik/home4-min.webp), no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.sec-menu .content ul {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.sec-menu .content ul li {
    color: var(--dark);
    font-size: 22px;
    font-family: 'Lora', serif;
    list-style: none;
    cursor: pointer;
    text-transform: capitalize;
    margin: 0 40px;
    transition: 0.3s;
}

.sec-menu .content ul li:hover {
    color: var(--d-yellow);
}


.sec-menu .container .content h3 {
    font-size: 30px;
    font-family: 'Lora', serif;
    color: var(--d-yellow);
    padding: 15px;
}

.sec-menu .container .content h1 {
    font-size: 2.1rem;
    color: var(--d-yellow);
    padding: 15px;
}

.sec-menu .boxs {
    margin-top: 50px;
}

.sec-menu .boxs .box {
    margin-bottom: 50px;
}

.sec-menu .boxs .box img {
    width: 100%;
}

.sec-menu .box .name-price {
    padding: 20px 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-menu .boxs .box h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-family: 'Lora', serif;
}

.sec-menu .boxs .box span {
    font-size: 18px;
    font-family: 'Lora', serif;
    font-weight: 500;
}

.sec-menu .boxs .box p {
    text-align: left;
}

.sec-menu .btn {
    background-color: var(--dark);
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    padding: 15px 40px;
}

.sec-menu .btn:hover {
    background-color: var(--d-yellow);
}

.sec-menu .content ul li {
    font-size: 25px;
    margin: 0 15px;
}

/*LİBRARY*/
.library .small-sec {
    background: url(etkinlik/home3-min.webp), no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.library .container .library-1 img {
    margin: 18px;
}

/*MAP*/
.map-p .small-sec {
    background-image: url(etkinlik/home2-min.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.map {
    padding: 15px;
}

.map-title h2 {
    margin: 15px;
    text-align: center;
    padding: 10px;
}

.contact-in {
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
}

.contact-map {
    width: 100%;
    height: auto;
    flex: 50%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    padding: 30px;
    text-align: center;
}

.contact-form h1 {
    margin-bottom: 10px;
}

.contact-form-txt {
    width: 100%;
    height: 40px;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-txt::placeholder {
    color: #aaa;
}

.contact-form-textarea {
    width: 100%;
    height: 130px;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-textarea::placeholder {
    color: #aaa;
}

.contact-form-btn {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #c59d5f;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    font-size: 18px;
}

/*FOOTER*/
.footer .mg-box {
    background-color: #222;
    width: 100%;
    color: #fff;
}

.footer .container {
    padding: 80px 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer .container .list {
    width: 300px;
}

.footer .container .list h2 {
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Lora', serif;
}

.footer .container .list h4 {
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Lora', serif;
}

.footer .container .list a i {
    width: 40px;
    height: 40px;
    background-color: var(--d-yellow);
    color: white;
    line-height: 40px;
    margin-right: 10px;
    transition: 0.4s;
}

.footer .container .list a i:hover {
    background-color: var(--d-yellow);
}

.footer .text p {
    font-size: 16px;
}

.text .list h2 {
    font-family: 'Lora', serif;
}

.footer .news .inpt {
    position: relative;
    width: 240px;
    margin: auto;
}

.footer .news .inpt input {
    width: 100%;
    background: #1b1b1b;
    border: none;
    outline: none;
    padding: 10px 6px;
    color: white;
}

.footer .news .inpt i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100%;
    line-height: 35px;
    cursor: pointer;
    color: white;
    background-color: var(--d-yellow);
}

.footer .copy-right {
    padding: 30px;
    background-color: #1b1b1b;
}

.footer .copy-right p {
    margin-bottom: 15px;
    font-family: 'Lora', serif;
}

.footer .copy-right p:last-child {
    margin-bottom: 0;
}

.footer .copy-right p span {
    font-family: 'Lora', serif;
}

/*CONTENTS*/

.container .boxs .box {
    margin-bottom: 50px;
    padding: 25px;
}


.container .boxs .box img {
    width: 100%;
    border-radius: 15px;
}

.container .box .name-price {
    padding: 20px 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container .boxs .box h3 {
    font-size: 22px;
    text-transform: capitalize;
    font-family: 'Lora', serif;
}

.container .boxs .box span {
    font-size: 20px;
    font-family: 'Lora', serif;
    font-weight: 500;
}

.container .boxs .box p {
    text-align: left;
}

.container .content h1 {
    text-align: center;
}


/*MEDİA*/
@media (max-width:991) {
    .header nav {
        width: 90px;
    }

    .header nav ul li {
        margin: 15px;
    }

    .header nav ul li a {
        font-size: 12px;
    }

    .footer .container {
        justify-content: center;
        gap: 30px;
    }

    .footer {
        color: #fff !important;
    }
}

@media (max-width:768px) {
    #OpenMenu {
        display: block;
    }

    .boxs,
    .contact-in {
        flex-direction: column;
    }

    .header nav .menu {
        position: absolute;
        top: 100%;
        left: 0%;
        right: 0;
        background-color: white;
        padding: 10px;
        flex-wrap: wrap;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.3s;
    }

    .header nav .menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header nav .menu ul {
        width: 100%;
    }

    .header nav .menu ul li {
        display: block;
        padding: 0 20px;
        margin: 10px;
        width: 100%;
        height: 50px;
        line-height: 50px;
        background-color: #c59d5f;
        margin: 10px auto;
        transition: 0.3s;
    }

    .header nav .menu ul li::hover,
    .header nav .menu ul li.active {
        background-color: #271a1a;
    }

    .header nav .btn,
    .header .menu ul li::after {
        display: none;
    }

    .sec-head span {
        font-size: 40px;
    }

    .sec-head h2 {
        font-size: 30px;
    }

    .about .content .div-p {
        padding: 10px 0 30px;
    }

    .about .content .div-p p {
        font-size: 27px;
    }

    .container .boxs .box img {
        width: 100%;
        height: 50%;
    }

    .header .logo img {
        max-width: 200px;
    }


}

@media(max-width:550px) {
    .sec-head span {
        font-size: 25px;
    }
}

.mobile_menu--container {
    width: 100%;
    display: flex;
}

.footer .container {
    justify-content: center;
    gap: 30px;
}