:root {
  --soft-blue: #6a8fbf;
  --lavender: #b8a9c9;
  --beige: #e6d5b8;
  --warm-gray: #f9f9f9;
  --text-dark: #333333;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--warm-gray);
  color: var(--text-dark);
  margin: 0;
}

/* NAV BAR */
header {
  background-color: #111;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px;
  width: auto;
}

/* NAV LINKS */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--beige);
}

/* CONTACT BUTTON */
.nav-button {
  background-color: var(--soft-blue);
  padding: 8px 16px;
  border-radius: 6px;
}

.nav-button:hover {
  background-color: var(--lavender);
  color: var(--text-dark);
}

/* MAIN CONTENT */
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

/* TABLE */
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}

th, td {
  border: 1px solid var(--text-dark);
  padding: 10px;
  text-align: left;
}

th {
  background-color: var(--soft-blue);
  color: white;
}

td {
  background-color: #fff;
}

/* PET GRID */
.pet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pet-card {
  background: white;
  border: 1px solid var(--soft-blue);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.pet-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* HELP FORM */
.help-form input,
.help-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--soft-blue);
  border-radius: 5px;
  font-family: inherit;
}

.help-form button {
  background-color: var(--soft-blue);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.help-form button:hover {
  background-color: var(--lavender);
  color: var(--text-dark);
}
