/* ============================================================
   Your Business Name — Yorkie Puppies (Pink Rose / "bj" theme)
   Single-page homepage styles
   ============================================================ */

:root {
  --rose:        #c7a0a0;   /* footer headings / accents */
  --rose-soft:   #f4e6e1;   /* light skin/blush hero banner */
  --rose-line:   #e9c9cf;   /* thin pink rules */
  --cream:       #f3ece3;   /* meet-the-breeder background */
  --ink:         #3f4254;   /* dark slate headings */
  --navy:        #3a3f5c;   /* FAQ heading */
  --text:        #555555;   /* body copy */
  --muted:       #8a7e78;   /* eyebrow labels */
  --white:       #ffffff;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- Shared bits ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.eyebrow--blue { color: #7c8a8c; }

.center { text-align: center; }

.section-title,
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
  margin: 0;
}

.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  padding: .9rem 2.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: relative;
  background: #f4eef0 url('../images/header.webp') center / cover no-repeat;
  border-bottom: 3px solid var(--rose-line);
  padding: 2.5rem 1rem 5rem;
  text-align: center;
}

.header-logo img {
  width: min(360px, 70%);
  margin: 0 auto;
}

/* Floating pill nav that overlaps the header bottom edge */
.main-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: min(760px, 92%);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  z-index: 20;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 1.1rem 1.6rem;
}

.main-nav a {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: .02em;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--rose); }

.caret { font-size: .7em; vertical-align: middle; }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle { display: none; }
.nav-burger { display: none; }
.burger-bars,
.burger-bars::before,
.burger-bars::after {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform .25s ease, background .25s ease, top .25s ease;
}
.burger-bars::before,
.burger-bars::after { content: ""; position: absolute; left: 0; }
.burger-bars::before { top: -8px; }
.burger-bars::after  { top: 8px; }

/* Dropdowns */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  list-style: none;
  margin: .6rem 0 0;
  padding: .5rem 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 30;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
}
.dropdown li { padding: 0; }
.dropdown a {
  display: block;
  font-size: 1.05rem;
  padding: .5rem 1.4rem;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--rose-soft); }

/* ============================================================
   HERO / QUALITY – HEALTH – BEAUTY
   ============================================================ */

.hero {
  padding: 7rem 1rem 5rem;
  text-align: center;
  background: #fafafa;
}

.hero-banner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--rose-soft);
  box-shadow: 0 14px 34px rgba(180, 140, 140, .14);
  padding: 2.2rem 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: .06em;
}

.bouquet {
  width: 170px;
  margin: -.5rem auto 0;
}

.puppy-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  max-width: var(--maxw);
  margin: 3rem auto 0;
}
.puppy-card {
  margin: 0;
  background: var(--white);
  padding: .55rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}
.puppy-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ============================================================
   MEET THE BREEDER
   ============================================================ */

.breeder {
  background: var(--cream);
  padding: 5.5rem 1rem;
}
.breeder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.breeder-text { text-align: center; }
.breeder .section-title { font-size: clamp(2rem, 4vw, 2.8rem); }
.breeder-desc {
  max-width: 440px;
  margin: 1.4rem auto 2.2rem;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .08em;
  color: #7a7a7a;
}
.breeder-photo img {
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

/* ============================================================
   INFO BLOCKS (Puppies / Application / Process)
   ============================================================ */

.info-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem 1rem 1rem;
  text-align: center;
}
.info-block { padding: 0 .5rem; }
.info-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.1rem;
  fill: #e3a8ad;
}
.info-icon.stroke {
  fill: none;
  stroke: #e3a8ad;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ink);
  margin: 0 0 .6rem;
}
.info-block p {
  font-size: .92rem;
  color: var(--text);
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 5.5rem 1rem;
  text-align: center;
}
.faq-title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 3rem;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: 3rem;
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  text-align: left;
}
.faq-photo img {
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .15);
}

.faq-list details {
  border: 1px solid #ececec;
  background: #f6f6f6;
  margin-bottom: 1rem;
}
.faq-list details[open] {
  background: var(--white);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.3rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }

/* paw print marker on the right */
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a7a2b0'%3E%3Cellipse cx='6' cy='11' rx='2' ry='2.6'/%3E%3Cellipse cx='10.5' cy='8' rx='2' ry='2.7'/%3E%3Cellipse cx='15' cy='8' rx='2' ry='2.7'/%3E%3Cellipse cx='18.5' cy='11.5' rx='2' ry='2.6'/%3E%3Cpath d='M12.3 12.2c-2 0-3.7 1.3-4.4 3-.5 1.2.4 2.4 1.7 2.4.9 0 1.7-.4 2.7-.4s1.8.4 2.7.4c1.3 0 2.2-1.2 1.7-2.4-.7-1.7-2.4-3-4.4-3z'/%3E%3C/svg%3E");
}
.faq-list details[open] summary::after { display: none; }

.faq-answer {
  padding: 0 1.3rem 1.2rem;
  font-size: .9rem;
  color: var(--rose);
}
.faq-answer p { margin: 0; }

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

.site-footer {
  position: relative;
  background: #f3eef0 url('../images/footer.webp') center / cover no-repeat;
  border-top: 3px solid var(--rose-line);
  padding: 3.5rem 1rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .55);
  padding: 2.5rem 2.5rem 3rem;
  backdrop-filter: blur(2px);
}

.footer-brand img { width: min(240px, 80%); }

.footer-heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--rose);
  margin: 0 0 1.3rem;
}

.footer-city {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  margin: 0 0 1.2rem;
  color: #6f6f6f;
}

.socials { display: flex; gap: .8rem; }
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--rose-line);
  border-radius: 8px;
  background: var(--white);
  color: var(--rose);
  transition: background .2s ease, color .2s ease;
}
.social:hover { background: var(--rose); color: var(--white); }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin-bottom: .9rem; }
.footer-links a {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  color: #6f6f6f;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--rose); }

.footer-copy {
  margin-top: 1.8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  color: #6f6f6f;
}

.footer-credit {
  text-align: center;
  margin: 2.5rem 0 0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: #9a8d86;
}

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

@media (max-width: 980px) {
  .puppy-row { grid-template-columns: repeat(2, 1fr); }
  .breeder-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .breeder-photo { max-width: 520px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-photo { max-width: 520px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .info-blocks { grid-template-columns: 1fr; gap: 3rem; max-width: 460px; }
}

@media (max-width: 760px) {
  /* Show the full floral swag instead of a zoomed-in crop */
  .site-header {
    background-color: #f4f1ef;
    background-size: 100% auto;
    background-position: top center;
    padding-top: 88px;
    padding-bottom: 2rem;
  }
  .hero { padding-top: 3.5rem; }

  /* Collapse the nav into a hamburger pill */
  .main-nav {
    position: static;
    transform: none;
    width: min(320px, 86%);
    margin: 1.6rem auto 0;
    border-radius: 40px;
    overflow: hidden;
  }
  .nav-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    cursor: pointer;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0 0 .6rem;
  }
  .nav-toggle:checked ~ .nav-list { display: flex; }
  .nav-list > li { width: 100%; border-top: 1px solid #f0e6e6; }
  .nav-list > li > a { display: block; padding: .8rem 1rem; font-size: 1.15rem; }

  /* Animate burger into an X when open */
  .nav-toggle:checked ~ .nav-burger .burger-bars { background: transparent; }
  .nav-toggle:checked ~ .nav-burger .burger-bars::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger .burger-bars::after  { top: 0; transform: rotate(-45deg); }

  /* Sub-items show indented inside the open menu */
  .dropdown {
    position: static; transform: none; box-shadow: none;
    opacity: 1; visibility: visible; min-width: 0;
    margin: 0; padding: 0 0 .4rem; background: transparent; border-radius: 0;
  }
  .dropdown a { padding: .4rem 0; font-size: 1rem; color: var(--rose); }
}

@media (max-width: 560px) {
  .puppy-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .socials { justify-content: center; }
}
