* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #fafafa;
}

header {
    background-color: #f3f3f3;
    border-bottom: 1px solid #ccc;
    padding: 10px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #777;
}

.company-name {
    font-size: 28px;
    font-weight: bold;
    color: #b5974b;
    text-transform: uppercase;
}

.top-menu {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    background-color: #e0e0e0;
}

.top-menu a {
    padding: 8px 16px;
    border-right: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.top-menu a:last-child {
    border-right: none;
}

.top-menu a:hover {
    background-color: #d0d0d0;
}

.layout {
    display: flex;
    min-height: calc(100vh - 140px);
}

.sidebar {
    width: 190px;
    border-right: 1px solid #ccc;
    background-color: #f9f9f9;
    padding: 10px;
    font-size: 14px;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 6px;
}

.sidebar a {
    text-decoration: none;
    color: #333;
}

.sidebar a:hover {
    text-decoration: underline;
}

.sidebar ul ul {
    margin-left: 15px;
    font-size: 13px;
}

.content {
    flex: 1;
    padding: 20px 24px;
    background-color: #fff;
}

/* Section umum */
section {
    margin-top: 24px;
}

section h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.section-cover {
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
}

.section-cover h1 {
    margin-top: 0;
    font-size: 26px;
}

.tagline {
    font-size: 16px;
    color: #666;
}

/* Produk */
.section-produk .product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.product-item {
    flex: 1 1 250px;
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
    background-color: #fafafa;
}

/* Gallery */
.section-gallery .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section-gallery img {
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Klien */
.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.client-logos img {
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

/* Form */
.section-kontak-form form,
.section-login form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 6px;
}

.section-kontak-form input,
.section-kontak-form textarea,
.section-login input {
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.section-kontak-form button,
.section-login button {
    margin-top: 6px;
    padding: 8px 10px;
    border: none;
    background-color: #b5974b;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.section-kontak-form button:hover,
.section-login button:hover {
    background-color: #967f3e;
}

footer {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ccc;
    background-color: #f3f3f3;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .top-menu a {
        flex: 1 1 50%;
        border-bottom: 1px solid #ccc;
    }

    
}