<!-- style.css -->
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #f6efe6;
  --surface: #fbf7f2;
  --surface-soft: #efe7de;
  --text: #2d2629;
  --muted: #6f6268;
  --primary: #4f3642;
  --primary-dark: #38242e;
  --accent: #b79aa7;
  --border: #e6ddd7;
  --shadow: 0 10px 30px rgba(46, 32, 39, 0.08);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.7;
  background: #f6efe6;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, 1180px);
  margin: 0 auto;
}

header {
  background: linear-gradient(135deg, rgba(56, 36, 46, 0.96), rgba(79, 54, 66, 0.9));
  color: #fff;
  text-align: center;
  padding: 34px 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.84);
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246, 239, 230, 0.95);
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 16px 0;
}

nav a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  transition: color 0.25s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(rgba(40, 27, 35, 0.58), rgba(40, 27, 35, 0.58)), url('../images/litter.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.12));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.button {
  display: inline-block;
  background: #4f3642;
  color: #ffffff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button,
.button:link,
.button:visited,
.button:hover,
.button:active {
  color: #ffffff;
}

.button:hover {
  transform: translateY(-2px);
  background: #38242e;
}

.section {
  padding: 72px 20px;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.section p {
  max-width: 840px;
  margin: 0 auto 16px;
  text-align: center;
  color: var(--muted);
}

.alt {
  background: linear-gradient(180deg, var(--surface-soft), #f6f0eb);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.card p {
  margin-bottom: 0;
  text-align: center;
}

.card p.policy-text {
  text-align: justify !important;
}

.cat-card {
  overflow: hidden;
  padding-top: 22px;
}

.cat-photo {
  width: 100%;
  max-width: 290px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 auto 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(33, 23, 28, 0.1);
}

footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 24px 20px;
  margin-top: 10px;
}

footer p {
  margin: 0;
}

.cat-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(33, 23, 28, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.thumb:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.cat-details {
  text-align: left;
  max-width: 100%;
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.cat-details li {
  margin-bottom: 8px;
  color: var(--muted);
}

.cat-details li strong {
  color: var(--primary-dark);
}

.about-container {
  position: relative;
}

.about-copy {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(251, 247, 242, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: var(--shadow);
}

.decorated-section {
  position: relative;
  overflow: hidden;
}

.about-flourish {
  position: absolute;
  width: 140px;
  opacity: 0.3;
  pointer-events: none;
}

.about-flourish-left {
  left: 16px;
  top: 24px;
}

.about-flourish-right {
  right: 16px;
  bottom: 24px;
  transform: scaleX(-1);
}

.section-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.section-icon {
  width: 58px;
  height: 58px;
  opacity: 0.95;
}

.divider-icon {
  width: min(100%, 280px);
  height: auto;
  opacity: 0.95;
}

.about-cards {
  margin-top: 34px;
}

.about-card {
  position: relative;
  padding-top: 62px;
}

.about-card h3,
.pricing-note-card h3,
.featured-price-card h3,
.pricing-stud-card h3 {
  margin-top: 28px;
}

.about-card-icon {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.95;
  z-index: 2;
}

@media (max-width: 768px) {
  .about-copy {
    padding: 28px 20px;
  }

  .about-flourish {
    width: 95px;
    opacity: 0.22;
  }
}

@media (max-width: 520px) {
  .about-flourish {
    display: none;
  }
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .hero {
    padding: 88px 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .card {
    padding: 24px;
  }

  .cat-photo {
    max-width: 250px;
    height: 200px;
  }
}

@media (max-width: 520px) {
  header {
    padding: 28px 16px 20px;
  }

  .hero p,
  .section p {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
    max-width: 280px;
  }
}
/* Add this to style.css */

.pricing-hero-box {
  max-width: 940px;
  margin: 0 auto;
  background: rgba(251, 247, 242, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 30px;
  align-items: stretch;
}

.pricing-grid .card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}

.featured-price-card {
  background: linear-gradient(180deg, #fffdfb, #f8f0eb);
  border: 1px solid #dccdc4;
}

.featured-price-card,
.pricing-note-card,
.pricing-stud-card,
.about-card {
  position: relative;
}

.featured-price-card h3,
.pricing-note-card h3,
.pricing-stud-card h3,
.about-card h3 {
  margin-top: 34px;
}

.featured-price-card p,
.pricing-note-card p,
.pricing-stud-card p {
  text-align: center;
}

.pricing-note-card {
  background: var(--surface);
  position: relative;
  padding-top: 62px;
}

.pricing-stud-card {
  background: #fbf7f2;
}

@media (max-width: 768px) {
  .pricing-hero-box {
    padding: 28px 20px;
  }
}

.pair-badge {
  display: inline-block;
  margin: 8px auto 14px;
  padding: 8px 16px;
  background: #f1e9e3;
  color: #4f3642;
  border: 1px solid #dccdc4;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* Add this to css/stylesheet.css */

.policy-text {
  text-align: justify;
}

.contact-card {
  background: #ffffff;
}

.payment-list {
  display: inline-block;
  text-align: left;
  margin: 12px auto;
  padding-left: 22px;
}

.contact-card p {
  text-align: center;
}

.contact-info-box {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(46, 32, 39, 0.08);
  padding: 34px 28px;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}