body {
    font-family: 'Lato', sans-serif;
    background-color: #f8f9fa; /* Warna latar belakang abu-abu terang */
}
.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    padding: 1rem 0;
}
.hero-section {
    background-color: white;
    padding: 4rem 0;
}
.hero-text {
    padding-right: 2rem; /* Jarak antara teks dan gambar */
}
.hero-title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}
.hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 1rem;
}
.btn-custom {
    background-color: #e57373; /* Merah muda */
    border-color: #e57373;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}
.btn-custom:hover {
    background-color: #d35f5f;
    border-color: #d35f5f;
}
.font-gallery {
    background-color: #f0f2f5; /* Warna abu-abu untuk area galeri */
    padding: 1.5rem;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.font-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
/* Tambahkan media query untuk responsivitas */
@media (max-width: 992px) {
    .hero-section .row {
        flex-direction: column; /* Ubah tata letak menjadi kolom */
    }
    .hero-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    .font-gallery {
        grid-template-columns: repeat(2, 1fr); /* Ubah ke 2 kolom di layar kecil */
    }
}

.container-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.card-font-info {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.license-option {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.license-option:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}
.license-type label {
    font-weight: 500;
}
.license-price {
    font-weight: bold;
}
.product-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thumbnail-container {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px; /* Untuk scrollbar */
}

.thumbnail-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    width: 100px; /* Lebar thumbnail */
    height: 70px; /* Tinggi thumbnail */
    object-fit: cover;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: #0d6efd; /* Warna biru Bootstrap */
}

/* Untuk menghilangkan scrollbar pada beberapa browser */
.thumbnail-container::-webkit-scrollbar {
    height: 8px;
}
.thumbnail-container::-webkit-scrollbar-thumb {
    background-color: #ced4da;
    border-radius: 4px;
}
.info-list li {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
.info-list h6 {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.25rem;
}
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
