/* style.css */

/* General body font and background */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar brand font style */
.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
}

/* Hero Section */
header {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* Buttons */
.btn-outline-primary {
  border-width: 2px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: white;
}

/* Counters styling */
section.bg-light .row div h2 {
  font-size: 3rem;
  color: #0d6efd;
  font-weight: 700;
}

/* Blockquote styling */
blockquote {
  font-style: italic;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 0;
}

.blockquote-footer {
  font-size: 1rem;
  color: #777;
  margin-top: 0.3rem;
}

/* Footer text */
footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  header h1 {
    font-size: 2rem;
  }
  .btn-lg {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
