/* Basic style.css file for Janis & Jay Kiddies website */

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
}

/* Links */
a {
  color: #2563eb; /* Tailwind blue-600 */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Buttons */
button {
  cursor: pointer;
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1d4ed8;
}

/* Form inputs */
input, select, textarea {
  border: 1px solid #d1d5db; /* Tailwind gray-300 */
  padding: 0.5rem;
  border-radius: 0.375rem;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.5);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Add any additional styles as needed */
