/* ===================================
   BursaLagu — Style.css (SEO-friendly)
   =================================== */

:root {
  --primary: #00b6ff;
  --secondary: #00e676;
  --dark: #1f2937;
  --light: #f9fafb;
  --font-body: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

header p {
  font-size: 0.95rem;
  margin-top: 5px;
}

/* Search box */
.search-box {
  margin-top: 25px;
}

.search-box input[type="text"] {
  width: 80%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
}

.search-box button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  background-color: #0092cc;
}

/* Chart list */
.list-item {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.list-item:hover {
  transform: translateY(-2px);
}

.image-cover {
  width: 90px;
  height: 90px;
  overflow: hidden;
  flex-shrink: 0;
}

.image-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px 0 0 6px;
}

.item-content {
  padding: 10px;
  flex: 1;
}

.item-content a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
}

.item-content a:hover {
  color: var(--primary);
}

/* Recent search */
ul {
  list-style: none;
  padding: 0;
}

ul li a {
  display: block;
  border: 1px solid #e5e7eb;
  padding: 10px;
  border-radius: 8px;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.2s;
}

ul li a:hover {
  background-color: #f0faff;
  border-color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: #ccc;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px 0;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .list-item {
    flex-direction: column;
    text-align: center;
  }

  .image-cover {
    width: 100%;
    height: 200px;
  }

  .item-content {
    padding: 12px;
  }
}
