* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 35px;
}

.search-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

input {
  width: 60%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

button {
  padding: 15px 25px;
  border: none;
  border-radius: 10px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: #0ea5e9;
}

.results {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #1e293b;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
}

.card h2 {
  margin-top: 0;
}

.card p {
  color: #cbd5e1;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  background: #22c55e;
  color: #052e16;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.card a:hover {
  background: #16a34a;
}

@media (max-width: 700px) {
  h1 {
    font-size: 32px;
  }

  .search-box {
    flex-direction: column;
  }

  input {
    width: 100%;
  }
}
/* Smooth Animation */

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background: #273449;
}

/* Input schöner */

input:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

/* Button Animation */

button {
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

/* Tool Button */

.card a {
  transition: all 0.3s ease;
}

.card a:hover {
  transform: scale(1.05);
}

/* Smooth Scrolling */

html {
  scroll-behavior: smooth;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-header img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: white;
  padding: 6px;
}

.card-header h2 {
  margin: 0;
}
.category-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.category-buttons button {
  background: #334155;
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.category-buttons button:hover {
  background: #475569;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #111827;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-links a:hover {
  color: #38bdf8;
}
.navbar {
  width: 100%;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px 40px !important;
  background: #111827 !important;
}

.navbar .logo {
  color: white !important;
  font-size: 24px !important;
  font-weight: bold !important;
}

.navbar .nav-links {
  list-style: none !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.navbar .nav-links li {
  list-style: none !important;
}

.navbar .nav-links a {
  color: white !important;
  text-decoration: none !important;
  font-size: 17px !important;
  font-weight: bold !important;
}

.navbar .nav-links a:hover {
  color: #38bdf8 !important;
}
.tool-card {
  background: #111827;
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tool-card h2 {
  margin-bottom: 15px;
}

.tool-card p {
  color: #d1d5db;
  line-height: 1.7;
}

.tool-button {
  display: inline-block;
  margin-top: 20px;
  background: #38bdf8;
  color: black;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
}

.tool-button:hover {
  opacity: 0.8;
}