/* style.css */
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  background: url('lab-kom.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero .overlay {
  background: rgba(15, 42, 74, 0.7);
  padding: 40px;
  border-radius: 12px;
  color: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn {
  background: #ffcc00;
  color: #0f2a4a;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background: #ffc107;
  transform: scale(1.05);
}

/* Features Section */
.features {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.features h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #0f2a4a;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  width: 280px;
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-bottom: 10px;
  color: #0f2a4a;
}

/* Footer */
footer {
  background: #0f2a4a;
  color: #fff;
  text-align: center;
  padding: 20px;
}
/* Login Section */
.login {
  padding: 60px 20px;
  background: #eef2f7;
  text-align: center;
}
.login h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #0f2a4a;
}
.login p {
  margin-bottom: 30px;
  color: #555;
}
.login-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn-admin {
  background: #0f2a4a;
  color: #fff;
}
.btn-admin:hover {
  background: #163b63;
}
.btn-user {
  background: #ffcc00;
  color: #0f2a4a;
}
.btn-user:hover {
  background: #ffc107;
}

