@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Barlow: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=Battambang:wght@100;300;400;700;900&family=Kaisei+Tokumin&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    font-family: "Kaisei Tokumin", serif;
    font-style: normal;
}

:root {
    --text-pink: #0ca82e;
    --text-pink-hover: #187534;
    --text-dark: #09011e;
    --text-gray:#b0b0b4;
  
    --bg-dark: #060113;
    --bg-gray:#f0f0f3;
    --border-pink: #068a3d;
}

#header{
    background: url('../Tickcoffee/room.jpg') top/cover no-repeat;
    background-attachment: fixed;
}

.slide-title{
    margin-top: 17%;
}

.nav-tabs .nav-item .nav-link{
    border: 1px solid #077438 !important;
    color: var(--text-dark) !important;
    margin:5px;
}
.nav-tabs .nav-item .nav-link.active{
    background-color: var(--text-pink) !important;
    color: #f1f3f1 !important;
}
.text-star{
    color: var(--text-pink);
    font-size: 1.3rem;
    margin:3px;
}

.tab-pane{
    animation: fadeIn 0.5s ease-in-out; 
}

.img-wrapper {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
  
.inner-img {
    transition: 0.3s;
}
.inner-img:hover {
    transform: scale(1.1);
}

.offer{
    background: url('../Tickcoffee/backgroundcafe3.jpg') top/cover no-repeat;
    background-attachment: fixed;
    height: 70vh;
}
.offer .offer-title{
    padding-top: 15%;
    line-height: 4.5rem;
}
.offer .offer-title h1{
    font-size: 3rem;
}

.bg-gray{
    background:var(--bg-gray);
}
.text-gray{
    color: var(--text-gray);
}

.link-list{
    padding: 0;
}
.link-list li{
    list-style-type: none;
}
.link-list li a{
    text-decoration: none;
    color: var(--text-gray);
    line-height: 2rem;
}
.link-list li a:hover{
    color:var(--text-pink);
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}  

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .slide-title{
        margin-top: 60%;
    }
    .offer .offer-title{
        padding-top: 42%;
    }
    .offer .offer-title h1{
        font-size: 2rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .slide-title{
        margin-top: 50%;
    }
    .offer .offer-title{
        padding-top: 10%;
    }
    .offer .offer-title h1{
        font-size: 2rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .slide-title{
        margin-top: 25%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .slide-title{
        margin-top: 17%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .slide-title{
        margin-top: 17%;
    }
    .offer .offer-title{
        padding-top: 15%;
    }
    .offer .offer-title h1{
        font-size: 3rem;
    }
}

