:root {
    --sage: #9CAF88;
    --rose: #E5C3C6;
    --sand: #F9F7F2;
    --taupe: #7D746D;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--taupe);
    background-color: var(--sand);
    scroll-behavior: smooth;
}

/* --- NAVIGATION --- */
nav {
    background: var(--white);
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(156, 175, 136, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--sage);
    text-decoration: none;
    letter-spacing: 2px;
    font-style: italic;
}

.nav-links a {
    text-decoration: none;
    color: var(--taupe);
    margin-left: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- HERO --- */
.hero {
    padding: 100px 10%;
    text-align: center;
    background: var(--white);
}

.hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 3.5rem; 
    color: var(--sage);
    margin-bottom: 15px;
    font-weight: 400;
}

.hero p { 
    font-size: 1.1rem; 
    max-width: 650px; 
    margin: 0 auto 35px; 
    font-weight: 300; 
    font-style: italic; 
}

/* MOM SELLING JASMINE */
/* Container styling to center the section */
.puppy-listing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f6f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Card Design */
.puppy-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 900px; /* Slightly wider to accommodate two images nicely */
  width: 100%;
  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.puppy-card:hover {
  transform: translateY(-5px);
}

/* Two-Image Gallery Layout */
.puppy-gallery {
  position: relative;
  flex: 1.1;
  display: grid;
  grid-template-rows: 1fr 1fr; /* Stacks them evenly on desktop desktop */
  gap: 4px; /* Subtle clean border look between images */
  background-color: #ffffff;
  min-width: 320px;
}

.puppy-img-wrapper {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.puppy-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.puppy-card:hover .puppy-image {
  transform: scale(1.03); /* Soft hover zoom effect */
}

/* "Available" Tag */
.puppy-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #d4af37;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Content Area */
.puppy-content {
  flex: 1.2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.puppy-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.puppy-subtitle {
  font-size: 1rem;
  color: #7f8c8d;
  margin: 0;
}

.divider {
  border: 0;
  height: 1px;
  background: #f1f2f6;
  margin: 20px 0;
}

/* Specs Grid */
.puppy-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.spec-item {
  font-size: 0.95rem;
  color: #34495e;
}

.spec-item strong {
  color: #2c3e50;
}

.puppy-description {
  font-size: 0.95rem;
  color: #57606f;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

/* Footer & Button styling */
.puppy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.puppy-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d4af37;
}

.contact-btn {
  background-color: #2c3e50;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-btn:hover {
  background-color: #1a252f;
}

/* Mobile-First Responsive Adjustments */
@media (max-width: 768px) {
  .puppy-card {
    flex-direction: column;
  }
  
  .puppy-gallery {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr; /* Puts them side-by-side on mobile screens */
    height: 250px;
    min-width: 100%;
  }
  
  .puppy-content {
    padding: 25px;
  }
  
  .puppy-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* --- FRIEND'S SHOWCASE SECTION --- */
.showcase-intro {
    padding: 60px 15%;
    background-color: var(--sand);
    text-align: center;
}

.accent-text { 
    color: var(--rose); 
    font-weight: 500; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 4px; 
    display: block; 
    margin-bottom: 10px; 
}

/* --- PAYMENT/PROCESS INFO --- */
.process-box {
    background: var(--white);
    max-width: 900px;
    margin: -40px auto 80px;
    padding: 50px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.process-item h3 { 
    font-family: 'Playfair Display', serif; 
    color: var(--sage); 
    margin-bottom: 15px; 
    font-style: italic; 
}

.process-item p { 
    font-size: 0.85rem; 
}

/* -- GALLERY SECTION -- */
.gallery-section {
    padding: 100px 10%;
    background-color: #fff;
    text-align: center;
}

.gallery-intro {
    margin-bottom: 60px;
}

.yorkie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px;
    color: white;
    opacity: 0;
    transition: 0.4s;
    text-align: left;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.pup-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--rose);
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    display: inline-block;
}

.pup-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    display: block;
}

/* -- LINKS SECTION -- */
.links-hub {
    padding: 80px 10%;
    background-color: var(--sand);
    text-align: center;
}

.links-container {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hub-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: var(--white);
    border: 2px solid var(--yellow);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 600;
    transition: all 0.3s ease;
}

.hub-link:hover {
    background-color: var(--mint);
    border-color: var(--mint-dark);
    transform: scale(1.02);
}

.hub-icon {
    font-size: 1.5rem;
}

.hub-text {
    flex-grow: 1;
    text-align: center;
    font-size: 1.1rem;
}

.hub-arrow {
    opacity: 0.3;
    font-size: 0.8rem;
}

/* --- FOOTER --- */
.footer-bottom {
    background-color: var(--white);
    padding: 60px 10% 30px;
    text-align: center;
    border-top: 1px solid rgba(156, 175, 136, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--sage);
    font-style: italic;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.footer-contact-info {
    font-size: 0.85rem;
    color: var(--taupe);
    margin-bottom: 25px;
    line-height: 1.8;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.legal-links a {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--taupe);
    text-decoration: none;
    opacity: 0.6;
    transition: 0.3s;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--rose);
}

.copyright {
    font-size: 0.6rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.websitesbywendy {
    color: var(--taupe);
    font-size: 0.6rem;
    opacity: 0.4;
    letter-spacing: 2px;
}

.websitesbywendy a {
    color: var(--taupe);
    text-decoration: none;
}