/* Reset & Font */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h2, h3, .puitis-text {
    font-family: 'Playfair Display', serif;
}

.section-padding { padding: 100px 0; }

.divider {
    width: 50px;
    height: 1px;
    background-color: #333;
}

/* Hero Fullscreen */
.vh-100 {
    height: 100vh !important;
}

.hero-image {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Overlay agar teks terbaca */
.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.carousel-caption {
    z-index: 2;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

/* Gallery Effect */
.gallery-item {
    overflow: hidden;
    background: #000;
}

.grayscale-img {
    filter: grayscale(100%);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.grayscale-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .puitis-text {
        font-size: 1.2rem !important;
        padding: 0 20px;
    }
    
    .grayscale-img {
        height: 300px;
    }
}
