/* RESET + GLOBAL */
body {
    font-family: 'Inter', sans-serif;
    background:#ffffff;
    color:#222;
    margin:0;
}

a {
    text-decoration:none;
}

html, body {
    height:100%;
    margin:0;
}

body {
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

main {
    flex:1;
    padding-top:0px; /* tinggi navbar */
}

/* ZOOM EFFECT */
.zoom-image {
    transition: transform .4s ease;
}

.zoom-image:hover {
    transform: scale(1.08);
}

.thumb-img {
    opacity: .6;
    transition: all .3s ease;
}

.thumb-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumb-active {
    opacity: 1 !important;
    border: 2px solid #dc3545 !important;
}

/* HOMEPAGE ONLY */
body.homepage main{
    padding-top:0 !important;
    margin-top:0 !important;
}

body.homepage .hero-section{
    margin-top:0 !important;
    padding-top:0 !important;
    height:100vh;
}

.homepage .navbar {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

body.homepage section:first-of-type{
    margin-top:0 !important;
    padding-top:0 !important;
}