*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --main-color: #555;
    --text-color: #191919;
    --background-color: #191919;
    --accent-color: #0000FF;
}

html{
    scroll-behavior: smooth;
}

body{
	font-family: 'Open Sans', sans-serif;
}

section{
    padding: 80px 0;
}

.container{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h2{
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px; 
}

p{
    font-size: .9rem;
    font-weight: 200;
    line-height: 1.6rem;
    margin-bottom: 50px;
}

ul{
    font-size: .9rem;
    font-weight: 200;
    list-style: none;
    list-style-position: inside;
    text-align: left;
}

.btn{
    border: 1px solid #fff;
    padding: 12px 30px;
    box-shadow: inset 0 0 #fff;
    color: #fff;
    background-color: transparent;
    font-size: 1.2rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.btn:hover{
    background-color: #191919;
    border: 2px solid #191919;
    border-radius: 30px;
}

.btn-1{
    border: 2px solid #191919;
    padding: 10px 25px;
    box-shadow: inset 0 0 #191919;
    color: #191919;
    background-color: transparent;
    font-size: 1.2rem;
    text-align: center;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.btn-1:hover{
    background-color: #191919;
    color: #fff;
    border-radius: 30px;
}

/* Responsive design **************************/

@media screen and (max-width: 960px){
    section{
        padding: 60px 0;
    }

    h2{
        font-size: 2.2rem;
        margin-bottom: 20px; 
    }

    .btn,
    .btn-1{
        padding: 10px 27px;
        font-size: 1rem;   
    }
}

@media screen and (max-width: 550px){
    section{
        padding: 50px 0;
    }

    h2{
        font-size: 1.8rem;
        margin-bottom: 20px; 
    }

    p{
        line-height: 1.4rem;
        margin-bottom: 40px;
    }

    .btn,
    .btn-1{
        padding: 7px 20px;
        font-size: .9rem;   
    }
}



/* Header --------------------------------------------- */

.navbar-down{
    z-index: 2;
    position: fixed;
    width: 100%;
    transition: 0.5s;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.has-bg{
    background-color: #191919;
}

nav .navbar-logo{
    width: 60px;
}

.navbar-list{
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-list li{
    padding: 8px 12px;
    font-size: 1.1rem;
    color: #fff;
    transition: .3s ease-in-out;
}

.navbar-list li:hover{
    padding-bottom: 12px;
    border-bottom: 2px solid gold;
}

.navbar_toogleBtn{
    display: none;
    position: absolute;
    right: 35px;
    font-size: 1.6rem;
    color: #fff;
    margin-top: 5px;
}

/* Responsive design **************************/

@media only screen and (max-width: 768px){
    nav .navbar-logo{
        width: 50px;
    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 25px;
    }

    .navbar-list{
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 15px;
    }

    .navbar-list li{
        width: 50%;
        text-align: center;
        padding: 10px;
        background-color: #191919;
    }

    .navbar_toogleBtn{
        display: block;
    }

    .navbar-list.active{
        display: flex;
    }
}

@media only screen and (max-width: 550px){
    .navbar-list{
        margin: 10px;
    }

    .navbar-list li{
        font-size: .9rem;
    }
}



/* Hero starts ------------------------------------------ */
.hero{
    background-image: url(images/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-text-box{
    width: 700px;
    color: #fff;
    text-align: start;
    transform: translateX(10%);
}

h1{ 
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-text-box p{
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 70px;
}

/* Responsive design **************************/

@media only screen and (max-width: 768px){
    .hero{ 
        height: 90vh;
    }

    .hero-text-box{
        width: 550px;
    }

    h1{
        font-size: 3.2rem;
    }

    .hero-text-box p{
        font-size: 1rem;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 550px){
    .hero-text-box{
        width: 300px;
    }

    h1{
        font-size: 2.5rem;
    }

    .hero-text-box p{
        font-size: .9rem;
        margin-bottom: 35px;
    }
}


/* About starts ------------------------------------------ */
.about{
    background-image: url(images/about-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 80vh;
    color: #fff;
    position: relative;
}

.about-text-box{
    background-color: rgba(5, 5, 5, 0.85);
    width: 550px;
    height: 550px;
    border-radius: 50%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: -5%;
    right: 10%;
}

.about-info p{
    margin-bottom: 45px;
}

.about-info img{
    width: 100px;
    margin-bottom: 30px;
}

.about .btn{
    padding: 10px 25px;
}

.about .btn:hover{
    background-image: linear-gradient(145deg, #C1272D, #0000FF);
    border: none;
}

/* Responsive design **************************/

@media only screen and (max-width: 768px){
    .about-text-box{
        width: 480px;
        height: 480px;
        padding: 20px;
    }

    .about-info p{
        line-height: 1.6rem;
        margin-bottom: 30px;
    }

    .about-info img{
        width: 80px;
        margin-bottom: 10px;
    }

    .about .btn{
        padding: 8px 25px;
    }
}

@media only screen and (max-width: 550px){
    .about{
        height: 65vh;
    }

    .about-text-box{
        width: 365px;
        height: 365px;
        padding: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-info p{
        font-size: .8rem;
        line-height: 1.2rem;
        margin-bottom: 25px;
    }

    .about-info img{
        width: 50px;
        margin-bottom: 10px;
    }

    .about .btn{
        padding: 6px 20px;
    }
}



/* K-Food Menu starts ------------------------------------------ */
.list-flex{
    border: 1px solid #191919;
    display: flex;
    align-items: center;
}

.list-flex-left{
    width: 20%;
    height: 320px;
    background-color: #191919;
    padding: 40px 0;
}

.list-flex-left h4{
    transform: translateX(-200px);
    transition: transform 0.5s;
    font-size: 1.4rem;
    color: #C1272D;
    text-align: left;
}

.list-flex-left h4.visible{
    transform: translateX(20%);
}

.list-flex-right{
    width: 80%;
    padding: 30px 40px;
}

.list-item{
    background-size: cover;
    background-position: center;
    height: 260px;
    position: relative;
}

.list-item img{
    background-size: cover;
    background-position: center;
    height: 200px;
    display: block;
}

.info-holder{
    background-color: #fff;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.info-holder p{
    font-size: 1rem;
    font-weight: 400;
}

.list-btn i{
    font-size: 1.8rem;
    color: #C1272D;
}

.kfood-menu .slick-slide{
    margin: 0 5px;
}

.kfood-menu .slick-list{
    margin: 0 -5px;
}

.kfood-menu .slick-arrow{
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    font-size: 0;
    background-color: transparent;
    cursor: pointer;
    transition: .4s;
}

.kfood-menu .slick-arrow:before{
    content: url(https://cdn-icons-png.flaticon.com/512/32/32213.png);
    transform: translate(-50%, -50%) scale(0.03);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}

.kfood-menu .slick-prev{
    right: calc(100% + 5px);
    transform: translateY(-50%) scaleX(-1);
}

.kfood-menu .slick-next{
    left: calc(100% + 5px);
}

/* Responsive design **************************/

@media only screen and (max-width: 768px){
    .list-flex-left{
        height: 300px;
        padding: 40px 0;
    }

    .list-flex-left h4{
        transform: translateX(-100px);
        transition: transform 0.5s;
        font-size: 1.2rem;
    }

    .list-flex-left h4.visible{
        transform: translateX(15%);
    }

    .list-flex-right{
        width: 80%;
        padding: 20px 30px;
    }

    .list-item{
        height: 240px;
    }

    .list-item img{
        height: 180px;
    }

    .info-holder{
        padding: 10px;
    }

    .info-holder p{
        font-size: 1rem;
        font-weight: 400;
    }
}

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

    .list-flex-left{
        height: 70px;
        padding: 20px;
        width: 100%
    }

    .list-flex-left h4{
        transform: translateX(-120px);
        transition: transform 0.5s;
        font-size: 1.2rem;
    }

    .list-flex-left h4.visible{
        transform: translateX(10%);
    }

    .list-flex-right{
        width: 100%;
        padding: 30px;
    }

    .list-item{
        height: 200px;
    }

    .list-item img{
        height: 160px;
    }

    .info-holder{
        padding: 10px;
    }

    .info-holder p{
        font-size: .9rem;
        font-weight: 300;
    }
}



/* Blog starts ---------------------------------- */

.blog{
    background-color: #F4EEE0;
}

.blog-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.posts-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.posts-card{
    background-color: #fff;
    border-radius: 15px;
}

.posts-card-flex{
    display: flex;
    gap: 10px;
}

.posts-card .posts-image{ 
    width: 35%;
    height: 300px;
    background-position: center;
    background-size: cover;
}

.posts-image img{
    height: 300px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.posts-text{
    width: 65%;
    padding: 25px 15px;
}

.posts-text p{
    font-size: .8rem;
    line-height: 1.2rem;
    color: #4E5166;
    margin-bottom: 10px;
}

.posts-text a{
    text-decoration: underline;
    color: #0000FF;
    font-size: .8rem;
    margin-top: 15px;
}

.posts-card .profile img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.posts-card .profile{
    display: flex;
    gap: 20px;
}

.posts-card .profile-image{
    width: 20%;
}

.posts-card .info{
    width: 80%;
}

.posts-text h4{
    font-size: .9rem;
    font-weight: 500;
    color: #EE732E;
    margin-bottom: 8px;
}

.posts-text h3{
    font-size: 1.4rem;
    color: #191919;
    margin-bottom: 15px;
}

.posts-text .info h4{
    font-size: 1rem;
    font-weight: 500;
    color: #555555;
    margin-bottom: 2px;
}

.posts-text .info p{
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Responsive design **************************/

@media only screen and (max-width: 768px){
    .blog-text{
        max-width: 400px;
    }

    .posts-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}

@media only screen and (max-width: 550px){
    .blog-text{
        max-width: 300px;
    }

    .posts-card .posts-image{ 
        display: block;
        height: 250px;
    }

    .posts-image img{
        height: 250px;
    }

    .posts-text{
        width: 65%;
        padding: 15px 10px 10px;
    }

    .posts-text p{
        font-size: .8rem;
        line-height: 1.2rem;
    }

    .posts-text a{
        margin-top: 10px;
    }

    .posts-card .profile img{
        width: 30px;
        height: 30px;
    }

    .posts-text h4{
        font-size: .8rem;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .posts-text h3{
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .posts-text .info h4{
        font-size: .8rem;
        font-weight: 300;
        margin-bottom: 3px;
    }

    .posts-text .info p{
        margin-bottom: 0px;
    }
}



/* CTA starts -------------------------------------- */
.cta{
    background-image: url(images/cta-bg.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 40px;
    height: 540px;
    position: relative;
}

.cta-form{
    position: absolute;
    top: 10%;
    left: 52%;
    margin-bottom: 20px;
}

.cta-form form input, select{
    height: 45px;
    width: 100%;
    border: 2px solid #5555;
    padding-left: 15px;
    font-size: 1rem;
    color: #444444;
    background: #fff;
    margin-top: 5px;
    margin-bottom: 20px;
    overflow: visible;
}

.cta-form label{
    color: #444444;
    font-size: .9rem;
}

.select-list{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cta .btn-1{
    width: 50%;
    padding: 12px 30px;
    margin-top: 10px;
}

.cta .btn-1:hover{
    background-image: linear-gradient(145deg, #C1272D, #0000FF);
    color: #fff;
    font-weight: 300;
    border: none;
}

/* Responsive design **************************/

@media only screen and (max-width: 980px){
    .cta-form{
        width: 70%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-form form input, select{
        height: 40px;
        border: 2px solid #5555;
        padding-left: 10px;
    }

    .cta .btn-1{
        padding: 10px 25px;
    }
}

@media only screen and (max-width: 550px){
    .cta{
        padding: 10px 0 40px;
        height: 480px;
    }

    .cta-form form input, select{
        height: 35px;
        border: 1px solid #5555;
        padding-left: 5px;
        font-size: .9rem;
        margin-bottom: 15px;
    }

    .cta .btn-1{
        padding: 8px 25px;
        border: 1px solid #191919;
    }
}



/* Footer Starts ----------------------------------- */

footer{
    padding: 60px 0;
    background-color: #191919;
    color: #fff;
}

footer .container{
    max-width: 1000px;
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.left-footer,
.center-footer,
.right-footer{
    width: calc((100% - 60px) / 3);
}

footer p{
    font-size: 1.2rem;
    font-weight: 400;
    color: gold;
    margin-bottom: 20px;
}

footer ul{
    font-size: .9rem;
    line-height: 1.6rem;
}

.right-footer{
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
}

.right-footer p{
    font-size: 1rem;
    font-weight: 200;
    margin-top: 50px;
    color: #fff;
}

footer .social-links i {
    margin-right: 25px;
    font-size: 1.6rem;
    transform: translateY(20px);
    cursor: pointer;
    transition: .5s;
}

footer .social-links i:hover{
    color: gold;
}

/* Responsive design **************************/

@media screen and (max-width: 768px){
    footer{
        padding: 40px 0;
    }

    footer .container{
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .left-footer,
    .center-footer,
    .right-footer{
        width: 100%;
    }

    .right-footer p{
        font-size: .9rem;
        margin-top: 10px;
    }

    footer p{
        font-size: 1rem;
    }

    footer ul{
        text-align: center;
    }

    footer .social-links i{
        font-size: 1.2rem;
        margin-right: 10px;
        margin-left: 10px;
    }   
}



/******************************************************/
/* Single Page starts                                 */
/******************************************************/

.blog-banner{
    background-image: url(images/seoul.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 65vh;
    color: #fff;
    text-align: center;
}

.blog-banner h1{
    font-size: 5rem;
    margin-top: 200px;
    letter-spacing: 1.2rem;
    text-shadow: 1px 0 10px #191919;
    animation: move-up 2s forwards;
}

@keyframes move-up{
    0%{
        opacity: 0;
        transform: translateY(300px);
    }

    25%{
        opacity: 25%;
    }

    50%{
        opacity: 50%;
    }

    75%{
        opacity: 75%;
    }

    100%{
        opacity: 100%;
        transform: translateY(0);
    }
}

.blog-title-1{
    background-color: #191919;
    color: #fff;
    padding: 150px 0;
}

.blog-info-flex{
    display: flex;
    gap: 50px;
}

.info-flex-left{
    width: 70%;
    padding: 0px 40px;
}

.info-flex-left h3{
    font-size: 1.4rem;
    color: #EE732E;
    margin-bottom: 40px;
    text-align: center;
}

.info-flex-left h4{
    font-size: 1rem;
    color: #EE732E;
    margin: 25px 0 10px;
}

.info-flex-left p{
    margin-bottom: 20px;
}

.info-flex-left ul{
    list-style: disc;
    list-style-position: inside;
    text-align: left;
    line-height: 1.5rem;
    margin-bottom: 40px;
}

.info-flex-left .btn{
    padding: 10px 25px;
    margin-top: 20px;
}

.info-flex-left .btn:hover {
    background-image: linear-gradient(145deg, #C1272D, #0000FF);
    border: none;
}

.info-flex-right{
    width: 30%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
    border: .5px solid #fff;
}

.img-blog-info img{
    height: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.img-blog-info-1 img{
    width: 100%;
    display: block;
    margin: 50px 0;
}

.info-flex-right h5{
    margin-top: 10px;
}
 
.info-flex-right p{
    font-size: 1rem;
    color: gold;
    margin-top: 60px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555555;
}

.info-flex-right .profile-image img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-top: 10px;
}

.info-flex-right .categories ul{
    font-size: .9rem;
    font-weight: 200;
    list-style: none;
    list-style-position: inside;
    text-align: left;
    transform: translateX(12px);
    line-height: 2rem;
}

.small-banner{
    background-color: white;
    padding: 70px 0;
    text-align: center;
}

.small-banner .sb-title{
    text-align: center;
    margin-bottom: 40px;
}

.small-banner .sb-title p{
    font-size: 1.2rem;
}

.sb-title .btn-1 {
    margin-top: 50px;
}

.small-banner form{
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.small-banner form input{
    height: 45px;
    width: 60%;
    border: 2px solid #5555;
    padding-left: 15px;
    font-size: 1rem;
    color: #444444;
    background: #fff;
    margin-top: 5px;
    margin-bottom: 20px;
    overflow: visible;
}

.small-banner label{
    color: #444444;
    font-size: .9rem;
}

.small-banner .btn-1{
    width: 100%;
    padding: 12px 30px;
    margin-top: 10px;
    border: 2px solid #191919;
    color: #191919;
}

.small-banner .btn-1:hover {
    background-image: linear-gradient(145deg, #C1272D, #0000FF);
    color: #fff;
    font-weight: 300;
    border: none;
}

/* Responsive design **************************/

@media only screen and (max-width: 768px){
    .blog-banner h1{
        font-size: 3.4rem;
        margin-top: 200px;
        letter-spacing: 1rem;
    }

    .blog-title-1{
        padding: 80px 0;
    }

    .blog-info-flex{
        gap: 20px;
    }

    .info-flex-left,
    .info-flex-right{
        padding: 0px 20px;
    }

    .info-flex-left .btn{
        padding: 10px 25px;
        margin-top: 10px;
    }
    
    .img-blog-info img{
        width: 100%;
    }

    .info-flex-left .btn{
        padding: 8px 20px;
        margin-top: 15px;
        font-size: 1rem;
    }

    .info-flex-right .profile-image img{
        width: 55px;
        height: 55px;
    }

    .small-banner{
        padding: 50px 0;
    }

    .small-banner .btn-1{
        width: 100%;
        padding: 7px 25px;
        font-size: 1rem;
    }

    .small-banner .sb-title{
        max-width: 400px;
        margin: 0 auto;
    }

    .small-banner .sb-title p{
        font-size: 1rem;
    }

    .small-banner form{
        margin-bottom: 30px;
    }

    .small-banner form input{
        width: 70%;
        margin-top: 3px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 550px){
    .blog-info-flex{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .info-flex-left,
    .info-flex-right{
        width: 100%;
    }

    .blog-title-1{
        padding: 60px 0;
    }

    .info-flex-right{
        padding: 0px 30px;
    }

    .info-flex-right p{
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .img-blog-info-1 img{
        width: 50%;
        margin: 40px 10px;
    }

    .small-banner form input{
        width: 80%;
    }
}
