@import url('https://fonts.googleapis.com/css2?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');

*{
    font-family: 'Poppins', sans-serif;
}

a{
    text-decoration: none;
}

.btn{
    font-weight: 300;
    background-color: #f4f1de;
    color: #3f425b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn:hover,
.btn:active{
    background-color:#3f425bb9;
    color:#f4f1de;
    transform: scale(1.2);
}

.navbar{
    background: rgba(255, 255, 255, 0.1); /* Yarı saydam beyaz */
    backdrop-filter: blur(3px); /* Bulanıklık efekti */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Hafif çizgi */
    position: fixed;
    top:0;
    right:0;
    left:0;
    z-index:9;
    width: 100vw;
    
}

.navbar a:hover{
    color:#e1795fe7;
}

.navbar-nav-container{
    display: flex;
    justify-content: center;
}

.navbar-nav-container ul{
    gap: 100px;
    padding-right: 54px;
}

.nav-link{
    font-size: 24px;
    font-weight: 500;
    color: rgb(35, 34, 34)
}

.language-flags{
    margin-right: 20px;
}

.hero-section{
    background-image: url('img/hokga-giris-1.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.hero-section .hero-overlay{
    position: absolute;
    z-index: 1;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .content {
    position: relative;
    z-index: 2; 
    color: white;
    text-align: center;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.hero-section .content .content-text h1{
    font-size: 56px;
}

.hero-section .content .content-text h3{
    font-size: 28px;
}

.hero-section .content .content-text h1,
.hero-section .content .content-text h3{
    font-weight: 700;
    color: #f4f1de;
}

.hero-section .content .content-button{
    padding-top: 80px;
}

.hero-section .content .content-button .btn{
    width: 216.6px;
    height: 80.8px;
    border-radius: 8px;
}

.about-section{
    background-color: #f4f1de;
    background-image: url('img/hokga-logo-3.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;

    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #3f425b;
    position: relative;
}

.about-section .about-text{
    max-width: 905.2px;
    font-weight: 600;
    font-size: 26px;
    z-index: 2;
}

.about-section .opening-hours{
    font-weight: 800;
    font-size: 52px;
    z-index: 2;
}

.about-section .about-overlay{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(244, 241, 222, 0.7);
}

.menu-section{
    background-color: #3f425b;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

.menu-section .cards-row{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top : 50%;
    transform: translateY(-50%);
}

.menu-section .cards-row .card{
    padding: 0;
    width: 33%;
    height: 70vh;
    border: 0;
}

.menu-section-button .btn{
    width: 180.6px;
    height: 70.8px;
    border-radius: 8px;
    position: relative;
}

.menu-section .card-1{
    background-image: url('img/POST4.1.png');
    background-position: center;
    background-size: cover;
}

.menu-section .card-2{
    background-image: url('img/POST5.1.png');
    background-position: center;
    background-size: cover;
}

.menu-section .card-3{
    background-image: url('img/POST3.1.png');
    background-position: center;
    background-size: cover;
}


.reviews-section{
    background-color:#f4f1de;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: space-between;
}

.reviews-section h1{
    color:#3f425b;
    font-size: 56px;
    font-weight: 600;
}


.reviews-section .row{
    margin-top: 10%;
    position: relative;
}

.reviews-section p{
    position: absolute;
    max-width: 300px;
    max-height: 300px;
    top: 50%;
    transform: translateY(-50%);
    padding-bottom: 100px
}

.comment-card{
    display: flex;
    justify-content: center;
    text-align: start ;
    position: relative;
}

.comment-card p{
    font-size: 16px;
    font-weight: 400;
    color:#3f425b;
    text-shadow: #e1795f59  2px 2px 1px;
}

.quote{
    font-size: 56px;
}

.q-1{
    position: absolute;
    right:0;
    top:0;
    transform: rotate(180deg);
}

.q-2{
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-section{
    background-color: #3f425b;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:#f4f1de;
    gap: 30px;

}

.footer-section a{
    color:#f4f1de;
}

.footer-section a:hover{
    color:#e1795fb3;
}

.footer-section h1{
    font-size: 56px;
    font-weight: 700;
}

.footer-section h3{
    font-size:28px;
    font-weight: 500;
}

.footer-section p{
    font-size: 16px;
    font-weight: 200;
}


/* Custom CSS For Mobile */
@media (max-width: 992px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #3f425b;
    z-index: 9;
  }

  .hero-section .content .content-text{
    margin-bottom: 70px;
    }

    .nav-link{
        color:#f4f1de;
    }

    .about-section .about-text{
        font-weight: 600;
        font-size: 20px;
    }

    .about-section .opening-hours{
        font-weight: 800;
        font-size: 32px;
    }
}

.navbar-toggler{
    z-index: 10;
    color:#f4f1de;
    font-size: 26px;
}



.menu-mobile{
    height: 70vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #3f425b;
    position: relative;
    padding: 0;
}

.menu-swiper{
    width: 100vw;
    height: 50vh;
}

.menu-mobile .card-1{
    background-image: url('img/POST4.1.png');
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 50vh;
}

.menu-mobile .card-2{
    background-image: url('img/POST5.1.png');
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 50vh;
}

.menu-mobile .card-3{
    background-image: url('img/POST3.1.png');
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 50vh;
}


.mobile-menu-button .btn{
    width: 180.6px;
    height: 70px;
    border-radius: 8px;
    padding: 0;

}

.reviews-mobile{
    background-color: #f4f1de;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;

}


.reviews-mobile .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding-top: 100px;
}


.reviews-mobile p{
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 50px;
    font-size: 16px;
    font-weight: 400;
    text-shadow: #e1795f59  2px 2px 1px;
}
.reviews-mobile h1{
    color:#3f425b;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}