/* ============================================ */
   /* Supreme Min Pins - Main Stylesheet */
   /* Elegant & Authoritative Dog Breeder Theme */
   /* ============================================ */ 

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #8B1A1A;
  --primary-dark: #6B1212;
  --primary-light: #C0392B;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --dark: #1A1A2E;
  --text: #2C2C2C;
  --text-muted: #6c757d;
  --bg-cream: #FDF8F3;
  --bg-light: #F9F5F0;
  --border: #E8DDD0;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ========== NAVBAR ========== */
.navbar-supreme {
  background: var(--dark) !important;
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-supreme .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold) !important;
  font-weight: 700;
  padding: 12px 0;
  letter-spacing: 0.5px;
}

.navbar-supreme .navbar-brand span { color: var(--white); }

.navbar-supreme .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 22px 16px !important;
  transition: var(--transition);
  position: relative;
}

.navbar-supreme .nav-link:hover,
.navbar-supreme .nav-link.active {
  color: var(--gold) !important;
}

.navbar-supreme .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-supreme .nav-link:hover::after,
.navbar-supreme .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-supreme .dropdown-menu {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 0;
}

.navbar-supreme .dropdown-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 10px 20px;
  transition: var(--transition);
}

.navbar-supreme .dropdown-item:hover {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

.navbar-toggler {
  border-color: rgba(201,168,76,0.5) !important;
  padding: 6px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 6px 0;
  letter-spacing: 0.5px;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }

/* ========== HERO ========== */
.hero-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2D1810 50%, var(--primary-dark) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 700;
}

.hero-section h1 .accent { color: var(--gold); }

.hero-section p.lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat .label { color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; }

.hero-divider { width: 40px; height: 3px; background: var(--gold); margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(139,26,26,0.4);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,26,26,0.5);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 34px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ========== SECTION STYLES ========== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  font-weight: 700;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto;
  border-radius: 2px;
}

.divider-gold.left { margin: 16px 0; }

.section-cream { background: var(--bg-cream); }
.section-light { background: var(--bg-light); }

/* ========== PUPPY CARDS ========== */
.puppy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}

.puppy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.puppy-card .card-img-wrapper {
  position: relative;
  padding-top: 68%;
  overflow: hidden;
  background: var(--bg-cream);
}

.puppy-card .card-img-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.puppy-card:hover .card-img-wrapper img { transform: scale(1.06); }

.puppy-card .status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-available { background: #27AE60; color: white; }
.status-reserved { background: var(--gold); color: var(--dark); }
.status-sold { background: #95a5a6; color: white; }

.puppy-card .card-body { padding: 20px; }
.puppy-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.puppy-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.puppy-meta-item {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.puppy-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
}

/* ========== FEATURES / GUARANTEES ========== */
.feature-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(139,26,26,0.3);
}

.guarantee-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.guarantee-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ========== BLOG CARDS ========== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.blog-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-cream), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.5;
}

.blog-card .card-body { padding: 22px; }

.blog-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ========== CONTACT FORM ========== */
.contact-section .form-control {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg-cream);
}

.contact-section .form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}

.contact-info-box {
  background: var(--dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2D1810 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-hero p { color: rgba(255,255,255,0.7); }

.breadcrumb { background: transparent; padding: 0; margin-bottom: 10px; }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ========== FOOTER ========== */
.footer-main {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 700;
}

.footer-main h5 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  margin-right: 8px;
  font-size: 0.95rem;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ========== HEALTH GUARANTEE ========== */
.guarantee-section .guarantee-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
}
.guarantee-section .guarantee-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.guarantee-section .guarantee-icon {
  font-size: 2rem;
  color: var(--primary);
  width: 48px;
  flex-shrink: 0;
}

/* ========== FAQ ACCORDION ========== */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  background: var(--bg-cream);
  font-weight: 500;
  padding: 18px 24px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  padding: 20px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========== FILTERS ========== */
.filter-bar {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
}

.filter-bar .form-select {
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  padding: 10px 16px;
}

.filter-bar .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}

/* ========== PUPPY DETAIL ========== */
.puppy-detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.detail-meta-item {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 10px;
}

.detail-meta-item .label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.detail-meta-item .value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2px;
}

/* ========== MESSAGES ========== */
.alert { border: none; border-radius: var(--radius); padding: 16px 20px; }
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #27AE60; }
.alert-danger { background: #f8d7da; color: #721c24; border-left: 4px solid var(--primary); }

/* ========== GALLERY ========== */
.gallery-thumb {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 80px; object-fit: cover; }

/* ========== SCROLL TO TOP ========== */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(139,26,26,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .navbar-supreme .nav-link { padding: 12px 16px !important; }
  .navbar-supreme .nav-link::after { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 1.8rem; }
  .contact-info-box { margin-top: 40px; }
}

@media (max-width: 767.98px) {
  .hero-section { min-height: 80vh; text-align: center; }
  .hero-stats { justify-content: center; }
  .page-hero { padding: 60px 0 40px; }
  .footer-main { padding: 50px 0 20px; }
  .divider-gold.left { margin: 16px auto; }
  .detail-meta-grid { grid-template-columns: 1fr; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ========== PAGINATION ========== */
.pagination .page-link {
  color: var(--primary);
  border: 2px solid var(--border);
  border-radius: 8px !important;
  margin: 0 3px;
  padding: 8px 16px;
}
.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}

/* ── Testimonial author avatar ─────────────────────── */
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gold-light, #e0c070), var(--gold-dark, #a8873a));
  color: var(--navy, #0e1628);
  border: 2.5px solid var(--gold, #c9a84c);
  box-shadow: 0 2px 10px rgba(201,168,76,.25);
  overflow: hidden;      /* clips the image to the circle */
}

/* When it contains a real photo */
.author-avatar-img {
  padding: 0;            /* remove any inherited padding */
  background: none;
}

.author-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills the circle without distortion */
  object-position: center top;  /* favour the face area */
  display: block;
  border-radius: 50%;
}