
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
.navbar {
    background: #003087;
    color: white;
    padding: 15px 0;
    text-align: center;
}
.navbar h1 {
    margin: 0;
    font-size: 24px;
}
.navbar h1 span {
    color: #28a745;
}
.breadcrumb {
    padding: 10px 0;
    background: #e9ecef;
    font-size: 14px;
}
.breadcrumb .breadcrumb-content {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px 0 0; /* Menempel di pojok kiri */
}
.breadcrumb a {
    color: #003087;
    text-decoration: none;
}
.profile-section {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 20px 0;
}
.profile-header {
    text-align: center;
    margin-bottom: 20px;
}
.profile-header h2 {
    font-size: 18px;
    color: #333;
    margin: 0;
}
.profile-header p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}
.profile-header p span {
    color: #28a745;
    font-weight: bold;
}
.profile-header hr {
    border: 0;
    border-top: 2px solid #28a745;
    width: 50px;
    margin: 10px auto;
}
.profile-logo {
    margin-bottom: 20px;
}
.profile-logo img {
    width: 100%;
    height: 650px; /* Ukuran besar seperti header */
    object-fit: cover;
    border-radius: 5px;
}

.profile-details {
    text-align: center; /* Judul tetap di tengah */
    max-width: 600px;
    margin: 0 auto;
}

.profile-details h1 {
    font-size: 24px;
    color: #333;
    margin: 0 0 20px;
}

.detail-list {
    text-align: left; /* Konten detail rata kiri */
    padding: 0 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 8px 0; /* Jarak antar baris lebih kecil dan seragam */
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0; /* Garis pemisah halus */
    padding-bottom: 8px;
}

.detail-item .label {
    width: 120px; /* Lebar label tetap */
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}

.detail-item .value {
    flex-grow: 1;
    color: #666;
    text-align: left;
    padding-left: 10px; /* Jarak antara label dan value */
}

.detail-item .value a {
    color: #28a745;
    text-decoration: none;
}

.detail-item .value i {
    color: #28a745;
    margin-left: 5px;
    font-size: 20px;
}

.detail-list .detail-item:nth-child(6) .value i {
    color: blue; /* Merah untuk Alamat (fa-map-marker-alt) */
}

.products-section {
    margin: 20px 0;
}
.products-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.product-item {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 300px;
    width: 100%;
}
.product-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}
.product-item h3 {
    font-size: 16px;
    margin: 10px 0 5px;
    color: #333;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-item p {
    color: #e67e22;
    font-weight: bold;
    margin: 0;
}

/* Media Queries untuk Responsivitas */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 5px;
    }
    .navbar {
        padding: 10px 0;
    }
    .navbar h1 {
        font-size: 20px;
    }
    .profile-logo img {
        height: 200px; /* Ukuran lebih kecil untuk tablet */
    }
    .profile-details h1 {
        font-size: 20px;
    }
    .profile-details p {
        font-size: 12px;
    }
    .profile-details p strong {
        width: 100px;
    }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }
    .product-item {
        height: 260px;
    }
    .product-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 3px;
    }
    .navbar h1 {
        font-size: 18px;
    }
    .profile-logo img {
        height: 300px; /* Ukuran lebih kecil untuk mobile */
    }
    .profile-details h1 {
        font-size: 18px;
    }
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        font-size: 11px;
        padding-bottom: 5px;
    }
    .detail-item .label {
        width: auto;
        margin-bottom: 3px;
    }
    .detail-item .value {
        padding-left: 0;
    }
    .detail-item .value i{
        font-size: 16px;
    }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px;
    }
    .product-item {
        height: 240px;
    }
    .product-item img {
        height: 190px;
    }
    .product-item h3 {
        font-size: 14px;
    }
    .product-item p {
        font-size: 12px;
    }
    .breadcrumb {
        font-size: 12px;
    }
}
