/* Ghostrider Farms - Clean White & Grey Theme */

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #f7f7f7;
  color: #333;
}

header {
  background: #fff;
  padding: 1.5rem;
  border-bottom: 2px solid #ddd;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #444;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 8px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #444;
  color: white;
}

main {
  padding: 2rem;
  text-align: center;
}

main h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Breed Gallery */
.breed-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.breed {
  text-align: center;
}

.breed img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%; /* makes circle */
  border: 4px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.breed img:hover {
  transform: scale(1.05);
}

.breed-name {
  margin-top: 0.75rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

footer {
 height: 1in;
    background: #fff;
  padding: 1rem;
  border-top: 2px solid #ddd;
  text-align: center;
  color: #666;
  margin-top: 3rem;
}
