*{
  box-sizing:border-box;
  font-family:Inter,Arial,sans-serif;
}

body{
  margin:0;
  background:#121213;
  color:#0e0909;
}

/* HEADER */
.topbar{
  background:#fff;
  padding:14px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.logo{
  font-weight:800;
  font-size:18px;
}

.topbar nav a{
  margin-right:16px;
  text-decoration:none;
  color:#555;
}

.highlight{
  color:#ff6b00;
  font-weight:600;
}

.btn-outline{
  padding:6px 14px;
  border:1px solid #ffb37a;
  background:#fff;
  border-radius:20px;
  margin-left:6px;
}

/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
  padding:24px;
}

/* SEARCH */
.search-box{
  display:flex;
  gap:10px;
  background:#fff;
  padding:12px;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(0,0,0,.05);
}

.search-box input{
  flex:1;
  border:none;
  outline:none;
  font-size:14px;
}

.filter-btn{
  padding:8px 16px;
  border-radius:10px;
  border:1px solid #ddd;
  background:#fff;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
  margin-top:20px;
}

/* CARD */
.card{
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  position:relative;
}

.card img{
  width:100%;
  border-radius:12px;
  margin-bottom:10px;
}

.card h3{
  font-size:16px;
  margin:8px 0;
}

/* BADGE */
.badge{
  position:absolute;
  top:12px;
  left:12px;
  font-size:11px;
  padding:4px 10px;
  border-radius:20px;
  color:#fff;
}

.produk{background:#ff6b00;}
.hiburan{background:#333;}
.bisnis{background:#007bff;}

/* META */
.meta{
  display:flex;
  justify-content:space-between;
  font-size:12px;
}

.meta small{
  display:block;
  color:#888;
}

.danger{
  color:#ff4d4f;
}

/* BUDGET */
.budget{
  margin:12px 0;
  font-size:12px;
}

.progress{
  height:6px;
  background:#eee;
  border-radius:10px;
  overflow:hidden;
  margin:6px 0;
}

.progress span{
  display:block;
  height:100%;
  background:#ff4d4f;
}

/* ACTIONS */
.actions{
  display:flex;
  gap:10px;
}

.btn-light{
  flex:1;
  background:#f2f3f7;
  border:none;
  padding:10px;
  border-radius:10px;
}

.btn-dark{
  flex:1;
  background:#111;
  color:#fff;
  border:none;
  padding:10px;
  border-radius:10px;
}

.btn-disabled{
  flex:1;
  background:#ddd;
  border:none;
  padding:10px;
  border-radius:10px;
  color:#888;
}

/* MOBILE */
@media(max-width:600px){
  .topbar nav{
    display:none;
  }
}
/* HERO HEADER */
.hero-header{
  background: linear-gradient(135deg,#7d6421,#b47b08);
  padding-bottom:10px;
}

/* NAVBAR */
.navbar{
  max-width:1200px;
  margin:auto;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-weight:800;
  font-size:20px;
}

.menu a{
  margin:0 14px;
  text-decoration:none;
  color:#e4dddd;
  font-size:25px;
}

.menu .active{
  color:#ff6b00;
  font-weight:600;
}

.nav-actions{
  display:flex;
  gap:10px;
}

.btn-outline{
  padding:6px 16px;
  border-radius:20px;
  border:1px solid #ffb37a;
  background:transparent;
  cursor:pointer;
}

/* HERO CONTENT */
.hero-content{
  max-width:700px;
  margin:60px auto 0;
  text-align:center;
  padding:0 20px;
}

.hero-content h1{
  font-size:52px;
  font-weight:800;
  margin-bottom:16px;
  line-height:1.2;
  color:#111;
}

.gradient-text{
  background: linear-gradient(90deg,#dbd8d0,#ebd58e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p{
  font-size:25px;
  color:#e9e4e4;
}

/* RESPONSIVE */
@media(max-width:768px){
  .menu{
    display:none;
  }

  .hero-content h1{
    font-size:36px;
  }
}
.logo img{
  max-height:40px;   /* ubah sesuai kebutuhan: 30–50px */
  width:auto;
}
.btn-outline {
    color: black;
    background: white;
    border: 2px solid #c9c6ba;
    padding: 5px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    transform: scale(1.1);
    background: #ffd11a;
    color: #0b1222;
    box-shadow: 0 0 20px rgba(255, 209, 26, 0.5);
}

.btn-outline:active {
    transform: scale(0.95);
}
