/* --------------------------------------------------
   GENERAL PAGE STYLING
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500&family=Playfair+Display:wght@400;600&display=swap');

body {
  font-family: 'Lato', sans-serif;
  background-color: #f8f5f1; /* warm cream */
  color: #3a2f2a; /* soft charcoal brown */
  margin: 0;
  padding: 0;
  line-height: 1.6;
}



/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.site-header {
  background-color: #3a2f2a;
  color: #f8f5f1;
  padding: 14px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-menu a {
  color: #f8f5f1;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #c49a6c;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #c49a6c;
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #f8f5f1;
}

/* --------------------------------------------------
   MOBILE MENU
-------------------------------------------------- */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #3a2f2a;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .nav-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu a:hover {
    background-color: #c49a6c;
    color: #3a2f2a;
  }

  .menu-toggle {
    display: block;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------
   LITTER CARD LAYOUT
-------------------------------------------------- */
.litters-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 40px 60px;
}

.litter-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.litter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Parent Section */
.parents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #d8cfc4;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.parent {
  text-align: center;
}

.parent img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #a58a74;
}

.label {
  color: #c49a6c;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #3a2f2a;
  margin: 5px 0 10px;
}

/* Status Badges */
.status {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.status.reserved {
  background: #eae6e1;
  color: #3a2f2a;
}

.status.open {
  background: #f1e3d0;
  color: #a58a74;
}

.status.pending {
  background: #d8cfc4;
  color: #3a2f2a;
}

/* Puppy Grid */
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

/* Puppy Boxes */
.puppy-box {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.puppy-box img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.puppy-box p {
  margin: 8px 0 0;
  font-weight: 600;
  color: #3a2f2a;
}

.puppy-box.available {
  border: 2px dashed #c49a6c;
  cursor: pointer;
}

.puppy-box.reserved {
  border: 2px solid #ccc;
  background: #f4f4f4;
  color: #777;
}

.puppy-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Gender label under puppy images */
.puppy-box .gender {
  font-size: 0.85rem;
  color: #5a4c45;
  margin: 4px 0 0;
  font-weight: 600;
  text-align: center;
}

/* --------------------------------------------------
   FAMILY GALLERY SECTION
-------------------------------------------------- */
.family-gallery {
  background-color: #f8f5f1;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
}

.gallery-photo {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .gallery-photo {
    width: 80%;
  }
}

/* --------------------------------------------------
   PREVIOUS PUPS SECTION
-------------------------------------------------- */

.previous-pups {
  text-align: center;
  background-color: #f8f5f1;
  padding: 60px 20px;
}

.previous-pups h1,
.previous-pups h2 {
  color: #3a2f2a;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.favorites {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.photo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  max-width: 300px;
}

.photo-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.photo-card p {
  font-style: italic;
  color: #3a2f2a;
  margin: 10px 0;
}

.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }

.photo-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.cta {
  margin-top: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  font-family: 'Lato', sans-serif;
  color: #3a2f2a;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* --------------------------------------------------
   BUTTONS (UPDATED TO MATCH STYLE GUIDE)
-------------------------------------------------- */

.btn {
  background-color: #c49a6c; /* warm gold */
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #a58a74; /* soft brown */
  transform: translateY(-3px);
}

/* Secondary button (if needed later) */
.btn-outline {
  background: transparent;
  border: 2px solid #c49a6c;
  color: #c49a6c;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #c49a6c;
  color: #fff;
}

/* --------------------------------------------------
   RESPONSIVE ADJUSTMENTS
-------------------------------------------------- */

@media (max-width: 768px) {
  .favorites {
    flex-direction: column;
    align-items: center;
  }

  .photo-card {
    max-width: 90%;
  }

  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

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

/* --- CONTACT PAGE SHARED STYLES --- */

/* Make entire contact box clickable */
.contact-option-link {
  text-decoration: none;
  display: block;
  width: 100%;
}

/* Main text inside the contact box */
.contact-option-main {
  font-family: 'Playfair Display', serif;
  color: #3a2f2a;
  font-size: 1.1rem;
  margin: 0;
  transition: color 0.3s ease;
}

/* Hover effect for full clickable box */
.contact-option-link:hover .contact-option {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.contact-option-link:hover .contact-option-main {
  color: #c49a6c;
}

/* Calendar at Checkout */
input[type="date"] {
  background-position: right 1rem center;
  background-repeat: no-repeat;
}

/* --------------------------------------------------
   RESERVATION FORM STYLING
-------------------------------------------------- */

.reservation-form {
  max-width: 900px;
  margin: 3rem auto;
  background-color: #f8f5f1; /* warm cream */
  color: #3a2f2a;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

/* Section Boxes */
.form-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}

/* Section Headers with Step Numbers */
.form-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3a2f2a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
}

.form-section h2 span {
  background-color: #3a2f2a;
  color: #f8f5f1;
  font-weight: 600;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-family: 'Lato', sans-serif;
}

/* Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #3a2f2a;
  font-size: 0.95rem;
}

/* Inputs */
input, select, textarea {
  border: 1px solid #d8cfc4;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #fdfaf6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Lato', sans-serif;
}

input:focus, select:focus, textarea:focus {
  border-color: #c49a6c;
  box-shadow: 0 0 0 3px rgba(196,154,108,0.25);
  outline: none;
}

/* Notes box */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* Checkboxes with highlight boxes */
.checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fdfaf6;
  border: 1px solid #d8cfc4;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  color: #3a2f2a;
  font-weight: 500;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkboxes label:hover {
  border-color: #c49a6c;
  box-shadow: 0 0 0 3px rgba(196,154,108,0.15);
}

.checkboxes input[type="checkbox"] {
  accent-color: #c49a6c; /* gold tone */
  transform: scale(1.2);
}

/* Date input — match other fields + keep native icon */
input[type="date"] {
  background-color: #fdfaf6 !important; /* warm cream */
  color: #3a2f2a;
  border: 1px solid #d8cfc4;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
}

/* Ensure native icon stays visible */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  display: block;
}

/* Make date input highlight match other fields */
input[type="date"]:focus {
  border-color: #c49a6c;
  box-shadow: 0 0 0 3px rgba(196,154,108,0.25);
  outline: none;
}

/* Submit Button */
.reserve-btn {
  background-color: #c49a6c;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Lato', sans-serif;
}

.reserve-btn:hover {
  background-color: #a58a74;
  transform: translateY(-3px);
}

/* Page Title + Subtitle */
.page-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #c49a6c;
  letter-spacing: 1px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.page-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #5a4c45;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Selection Grid for Reservation Page */
.selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}


/*Increase Carasoul Margin above and below in crew.html */
.dog-description {
  margin-top: 35px !important;
}

.carousel {
  margin-bottom: 35px !important;
}

.puppy-intro {
  max-width: 700px;
  margin: 10px auto 35px;
  text-align: center;
  font-size: 1.05rem;
  color: #5a4c45;
  line-height: 1.6;
}

/* Unified Page Titles */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  text-align: center;
  margin: 40px 0 30px;
  color: #3a3a3a;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-title .paw {
  font-size: 1.6rem;
  opacity: 0.9;
  transform: translateY(2px);
}

.page-title .paw:hover {
  opacity: 1;
  transform: translateY(0);
  transition: 0.2s ease;
}

/* --------------------------------------------------
   PROMO TILES (Home Page - Revised to Match Page Width)
-------------------------------------------------- */

.promo-tile {
  text-decoration: none;
  display: block;
  width: 100%;
  margin: 50px auto;
}

.promo-tile-content {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px; /* matches other page containers */
  margin: 0 auto; /* centers the tile */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-tile-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.promo-tile-content.reverse {
  flex-direction: row-reverse;
}

.promo-image {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.promo-text {
  flex: 1;
}

.promo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #3a2f2a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.promo-text p {
  font-size: 1.05rem;
  color: #5a4c45;
  line-height: 1.6;
  max-width: 600px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .promo-tile-content,
  .promo-tile-content.reverse {
    flex-direction: column;
    text-align: center;
    max-width: 90%;
  }

  .promo-image {
    width: 90%;
    height: auto;
  }

  .promo-text h2 {
    font-size: 1.6rem;
  }

  .promo-text p {
    font-size: 1rem;
  }
}

/* Make the first three photos responsive like the others */
.favorites {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.favorites .photo-card {
  width: 300px; /* same as gallery cards */
  max-width: 100%;
}

.favorites .photo-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .tilt-left,
  .tilt-right {
    transform: none;
  }
}

.contact-photo-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
