p, .list {
    font-family: 'Cinzel', serif;
}
.carousel-item img {
    width: 95%;
    height: auto;
    object-fit: cover; /* Menjaga gambar tetap proporsional */
    aspect-ratio: 4 / 3;
    text-decoration: none;
}
@font-face {
    font-family: 'Lito';
    src: local('Lito PRINT Italic'), local('Lito-PRINT-Italic'),
        url('fonts/LITOPRINT-Italic.woff2') format('woff2'),
        url('fonts/LITOPRINT-Italic.woff') format('woff'),
        url('fonts/LITOPRINT-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
.title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Lito', sans-serif;
}
.title {
    font-size: clamp(2rem, 8vw, 100px);
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: 'Lito', sans-serif;
    text-align: left;
    padding: 0 1rem;
    max-width: 90%;
}
@media (max-width: 600px) {
    .title {
        font-size: clamp(1.5rem, 6vw, 80px);
    }
}