body{font-family: 'Poppins', sans-serif;}
img{max-width: 100%;}
h1,h2,h3,h4,h5,h6{color: #000}
ul > li{list-style-type: none;}
a:hover{text-decoration: none;}
.smartphone{display: none !important;}
.desktop-only{display: block !important;}

.header{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    background:
        /* top, transparent black, faked with gradient */
    linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
    ),
        /* bottom, image */
    url(images/bg.webp);
}
.header > div:nth-child(1){
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header > div:nth-child(1) > ul > li > a{
    margin: 0 15px 30px 15px;
    padding: 8px 0;
    color: #fff;
    font-weight: bold;
    transition: color 0.1s;
}
.header > div:nth-child(1) > ul > li > a.active{
    color: palegoldenrod;
    border-bottom: 2px solid palegoldenrod;
}
.header > div:nth-child(1) > ul > li > a:hover{
    color: palegoldenrod;
}
.header > div:nth-child(2){
    padding-top: 150px;
    padding-bottom: 150px;
    color: #fff;
}

.offer{
    padding-top: 50px;
    padding-bottom: 65px;
    background-color: #131310;
    color: #fff;
    text-align: center;
}

.morethan{
    background-color: #131310;
    color: #fff;
}
.morethan > div{
    display: flex;
    align-items: center;
    position: relative;
}
.morethan > div > div > img{
    filter: brightness(75%);
}
.morethan > div > img{
    position: absolute;
    right: 0;
    bottom: 0;
}

.signature{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #121212;
    text-align: center;
}
.signature .cafe-title{
    justify-content: center;
}
.signature .card{
    background-color: transparent;
    color: #fff;
    border: none;
    text-align: left;
}
.signature .card .card-body > div{
    display: flex;
    text-align: center;
    justify-content: space-between;
}
.signature .card img{
    width: 100%;
}

.gallery{
    padding-top: 50px;
    padding-bottom: 75px;
    background-color: #121212;
    text-align: center;
}
.gallery .cafe-title{
    justify-content: center;
}
.gallery > div > .row{
    display: flex;
    align-items: center;
}
.gallery > div > div > .col-md-6:first-child{
    padding-left: 5px;
    padding-right: 5px;
}
.gallery > div > div > div > div > .col-md-6{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.reservation{
    background-color: #131310;
    color: #fff;
}
.reservation > div{
    display: flex;
    align-items: center;
}
.reservation > div > div > img{
    filter: brightness(75%);
}

.footer{
    padding-top: 50px;
    background-color: #131310;
    color: #fff;
}
.footer ul > li{
    margin-bottom: 5px;
}
.footer ul > li > a{
    padding: 0;
    margin-right: 15px;
    color: #fff;
}
.footer ul > li > a:hover{
    color: palegoldenrod;
}
.footer > div:last-child{
    margin-top: 30px;
    border-top: 1px solid #4d4d4d;
}

.cafe-line{
    border: 1.5px solid palegoldenrod;
    width: 40px;
}

.cafe-title{
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.cafe-link{
    padding: 7px 20px;
    color: #fff;
    border: 1.5px solid #a07854;
    border-radius: 0;
    background-color: transparent;
    font-weight: 500;
    letter-spacing: 2px;
}
.cafe-link:hover, .cafe-link:active, .cafe-link:focus{
    background-color: palegoldenrod !important;
    border-color: palegoldenrod !important;
    color: #000 !important;
    box-shadow: none !important;
}

.text-gold{color: palegoldenrod;}
.text-brown{color: #a07854;}
.font14{font-size: 14px !important;}
.sp-only{display: none;}


/*mobile only*/
@media (max-width: 768px){
    .header > .container:nth-child(1){
        display: none;
    }
    .smartphone {
        display: block !important;
    }
    .smartphone > a {
        margin-left: 80%;
        margin-top: 14px;
    }
    .smartphone > img{
        position: absolute;
        top: 30px;
        left: 30px;
    }
    .smartphone > div > ul > li > a {
        color: #000 !important;
    }
    .header > div:nth-child(2) {
        padding-top: 200px;
    }
    .header{
        padding: 15px;
    }

    .offer > div > div > div{
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .morethan{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .signature{
        padding-bottom: 75px;
    }
    .signature > div > div > .col-md-3{
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .gallery > div > div > .col-md-6 {
        padding-top: 5px !important;
        padding-bottom: 0 !important;
    }
    .gallery{
        padding-bottom: 100px;
    }

    .reservation{
        padding-top: 50px;
        padding-bottom: 75px;
    }

    .footer > div > div > div{
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .sp-block{display: block !important;}
    .sp-only{display: block !important;}
    .sp-pl-3{padding-left: 1rem !important;}
    .sp-mb-3{margin-bottom: 1rem !important;}
    .sp-mb-0{margin-bottom: 0 !important;}
}