body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background: #fffaf5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

header.site-header {
  background: #ffbb77;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #222;
}

.nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #222;
  text-decoration: none;
  font-weight: bold;
  
}

h3 {
  text-align: center;
}

.nav a.active,
.nav a:hover {
  color: #fff;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to right, #ffe0b3, #ffcc99);
}

.btn {
  display: inline-block;
  background: #ff914d;
  color: #fff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: #ff7300;
}

.section {
  padding: 3rem 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  padding-bottom: 1rem;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.team img {
  border-radius: 50%;
}

.adopt-btn {
  display: inline-block;
  background: red;
  color: black;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background: #fff;
  margin: 80px auto;
  padding: 25px 30px;
  width: 90%;
  max-width: 480px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.close {
  float: right;
  font-size: 26px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  margin-top: -5px;
  margin-right: -5px;
}
.close:hover {
  color: red;
}

.modalName {
  font-size: 1.6em;
  color: #222;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 6px;
}

.modalPrice {
  color: #008000;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 12px;
}

.modalDesc {
  color: #555;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.adopt-btn {
  display: inline-block;
  background: #008a3e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.adopt-btn:hover {
  background: #006c32;
}
