/*
Theme Name: ModCombo Light Clone Theme
Author: Anda & AI
Description: Desain kustom minimalis putih bersih yang identik dengan layout ModCombo.
Version: 2.0
*/

body {
    background-color: #f6f8fa; /* Latar belakang abu sangat muda khas ModCombo */
    color: #334155;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.site-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Bergaya ModCombo */
header {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 999;
}

header .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

header .logo h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #10b981; /* Hijau Utama ModCombo */
    letter-spacing: -0.5px;
}

header .logo span {
    color: #1e293b;
}

header a {
    text-decoration: none;
}

/* Kolom Pencarian Oval Panjang */
.search-form {
    display: flex;
    width: 100%;
    max-width: 420px;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 3px 5px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.search-form:focus-within {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.search-form input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 8px 16px;
    color: #1e293b;
    font-size: 14px;
    outline: none;
}

.search-form button {
    background: #10b981;
    border: none;
    color: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.search-form button:hover {
    background: #059669;
}

/* Bagian Footer */
footer {
    text-align: center;
    padding: 30px 0;
    color: #94a3b8;
    font-size: 14px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    margin-top: 60px;
}

@media (max-width: 640px) {
    header { padding: 15px 0; }
    header .header-wrap { flex-direction: column; text-align: center; }
    .search-form { max-width: 100%; }
}

