/* Google Font */
body {
    font-family: 'Kanit', sans-serif;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #F28F3B !important;
}

.navbar-brand img {
    border-radius: 50%;
}

.nav-link {
    font-weight: 500;
}

/* Carousel */
.carousel-item {
    height: 60vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}


.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Gallery Card */
.gallery-card {
    transition: transform .2s, box-shadow .2s;
}

.gallery-card:hover {
    transform: scale(1.03);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
