/* --- Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #090000;
  line-height: 1.6;
}

/* --- Header --- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: #ff6f61;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.logo p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* --- Navigation --- */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  text-decoration: underline;
  opacity: 0.9;
}

/* --- Mobile Menu Button --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://t4.ftcdn.net/jpg/09/17/42/09/240_F_917420984_MNjGV0hRcOmlqDa7X02lT9c1JpBOXE9J.jpg") center/cover no-repeat;
  color: white;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.hero button {
  background: #ff6f61;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.hero button:hover {
  background: #e85b4d;
}

/* --- About Section --- */
.about,
.contact,
.puppies {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.about h2,
.contact h2,
.puppies h2 {
  text-align: center;
  color: #ff6f61;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about p {
  text-align: center;
  font-size: 1.05rem;
}

/* --- Puppies Section --- */
.puppy-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.puppy-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s;
}

.puppy-card:hover {
  transform: translateY(-5px);
}

.puppy-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.puppy-card h3 {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  color: #333;
}

.puppy-card p {
  margin: 0.3rem 0;
  color: #555;
}

/* --- Contact Section --- */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact input,
.contact textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.8rem;
  width: 100%;
  font-size: 1rem;
}

.contact button {
  background: #ff6f61;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  font-size: 1rem;
  cursor: pointer;
}

.contact button:hover {
  background: #e85b4d;
}

.facebook-link {
  text-align: center;
  margin-top: 1.5rem;
}

.facebook-link a {
  display: inline-block;
  background: #1877f2;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.facebook-link a:hover {
  background: #145dbf;
}

/* --- Footer --- */
footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 1rem;
  margin-top: 3rem;
}

/* --- Mobile Adjustments --- */
@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ff6f61;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero button {
    padding: 0.7rem 1.4rem;
  }
}
.contact-info-box {
  border: 2px solid #ff6f61; /* orange border */
  background-color: #fff7f3; /* light orange background */
  padding: 1rem 1.5rem;
  border-radius: 10px;
  max-width: 350px;
  margin: 1rem auto;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info-box a {
  color: #ff6f61;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}

.contact-info-box a:hover {
  text-decoration: underline;
}


