/* Font and Color Combinations CSS */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  background-color: #f9f9f9;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #2c3e50;
  margin-top: 0;
}

p {
  font-size: 1rem;
  color: #555555;
}

a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1abc9c;
  text-decoration: underline;
}

button, .btn {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1abc9c;
  color: white;
  border: none;
  padding: 0.6em 1.2em;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
  background-color: #16a085;
}

/* Utility colors */
.text-primary {
  color: #2980b9 !important;
}

.text-secondary {
  color: #95a5a6 !important;
}

.bg-primary {
  background-color: #2980b9 !important;
}

.bg-secondary {
  background-color: #95a5a6 !important;
}
