/* static/css/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #e5e9f4;
  color: #2b2a33;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  width: 100%;
  padding: 200px 20px 20px;
  text-align: center;
}

.Agurutwa-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
}

.search-container {
  width: 90%;
  max-width: 720px;
  margin: 20px auto;
  position: relative;
}

.search-box {
  width: 100%;
  padding: 14px 50px;
  font-size: 16px;
  border: 1px solid #d0d0d7;
  border-radius: 50px;
  background: #ffffff;
  color: #2b2a33;
  outline: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  width: 90%;
  max-width: 720px;
  margin: 40px auto;
}

.link-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.link-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .search-box {
    padding: 12px 40px;
    font-size: 14px;
  }
  .quick-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .link-card {
    padding: 10px;
  }
  .link-icon {
    width: 24px;
    height: 24px;
  }
}
