/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
}

/* HEADER */

header {
  background: white;
  padding: 35px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
}

.header-wrapper {
  max-width: 1100px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* centres title block */
}

.mdba-logo {
  position: absolute;
  left: 0;
  height: 105px; /* adjust 110–140px to taste */
  width: auto;
}

.title-block {
  text-align: center;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover {
  color: #d48a9d;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* NAVIGATION */

nav {
  margin-top: 5px;
}

nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover {
  color: #d48a9d;
}

nav a.active {
  color: #d48a9d;
  font-weight: 600;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  background: linear-gradient(to right, #f2d9de, #f7e9ec);
  text-align: center;
  padding: 110px 20px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 30px;
  color: #666;
  font-size: 18px;
}

/* BUTTON */

.btn {
  background: #d48a9d;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 16px;
}

.btn:hover {
  background: #bf6f84;
}

/* PUPPY GALLERY */

.puppy-gallery {
  text-align: center;
  padding: 60px 20px;
  background: #fafafa;
}

.puppy-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 35px;
}

.gallery-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.gallery-container img {
  width: 280px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* =========================
   ABOUT + LOCATION SECTIONS
========================= */

.about h2,
.container h2,
.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.about p,
.container p {
  text-align: center;
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  color: #555;
}

/* =========================
   CONTACT FORM
========================= */

.contact form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.contact textarea {
  min-height: 130px;
  resize: vertical;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #d48a9d;
}

.waitlist-text {
  text-align: center;
  max-width: 600px;
  margin: 10px auto 60px auto;
  margin-bottom: 30px !important;
  color: #666;
  font-size: 16px;
}

.waitlist-note {
  text-align: center;
  margin-top: 30px;
  font-size: 10px;
  color: #777;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-note a {
  color: #d48a9d;
  text-decoration: none;
  font-weight: 500;
}

.waitlist-note a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  padding: 40px 20px;
  background: white;
  margin-top: 80px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  font-size: 14px;
  color: #666;
}

/* PUPPIES PAGE */

.puppies-page {
  background: linear-gradient(to right, #f2d9de, #f7e9ec);
  padding: 80px 20px;
  text-align: center;
}

.puppies-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 50px;
}

.puppy-list {
  max-width: 700px;
  margin: auto;
}

.puppy-card {
  margin-bottom: 70px;
}

.puppy-card img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.litter-details {
  margin-top: 20px;
  font-size: 17px;
  color: #444;
}

.price {
  margin-top: 10px;
  font-weight: 600;
  font-size: 20px;
}

.parents {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

.no-puppies {
  margin-top: 20px;
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* SIRES & DAMS CARDS */

.dog-card {
  margin-bottom: 80px;
  text-align: center;
}

.dog-card img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.dog-card h3 {
  margin-top: 20px;
  font-size: 26px;
  font-family: 'Playfair Display', serif;
}

.dog-details {
  margin-top: 10px;
  color: #444;
}

.dog-pedigree {
  margin-top: 10px;
  color: #555;
}

.registration {
  margin-top: 8px;
  font-weight: 500;
}

/* UPCOMING LITTERS */

.litter-card {
  margin-bottom: 80px;
  text-align: center;
}

.litter-parents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.parent img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.parent p {
  margin-top: 10px;
  font-size: 16px;
}

.litter-cross {
  font-size: 40px;
  font-weight: bold;
  color: #555;
}

.expected-date {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
}

.litter-note {
  color: #666;
  margin-top: 8px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  .brand-row {
    flex-direction: column;
    gap: 10px;
  }

  .logo {
    font-size: 32px;
  }

  nav a {
    display: inline-block;
    margin: 8px 10px;
  }

  .hero h2 {
    font-size: 32px;
  }

}