/* HB KENNELS - Refined Warm Beige & Navy Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Palette: Light Beige Background, Navy Blue & Black Text, Light Yellow & Warm Brown Accents */
  --bg-main: #F8F4EE;            /* Soft Light Beige */
  --bg-card: #FFFFFF;            /* White Card */
  --bg-alt: #F0EAE1;             /* Layered Light Beige */
  --bg-yellow-light: #FEF9C3;    /* Light Soft Yellow */

  --text-black: #090D16;         /* Deepest Black */
  --navy-dark: #0F172A;          /* Deep Rich Navy */
  --navy-blue: #1E3A8A;          /* Main Navy Blue */
  --navy-light: #2563EB;         /* Bright Navy Accent */

  --accent-brown: #6E4436;       /* Warm Earthy Brown */
  --accent-brown-dark: #523126;  /* Deep Brown */
  --accent-yellow: #FACC15;      /* Light Yellow Accent */
  --accent-yellow-bg: #FEF08A;   /* Soft Light Yellow Badge */

  --text-dark: var(--navy-dark);
  --text-muted: #475569;

  --border-light: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Top Bar Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  padding: 4px 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 0.98rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-brown);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-brown);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-book {
  background: var(--accent-brown);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(110, 68, 54, 0.25);
}

.btn-book:hover {
  background: var(--accent-brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110, 68, 54, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
}

.btn-outline:hover {
  background: var(--navy-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-main) 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-yellow-bg);
  color: var(--accent-brown-dark);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--navy-dark);
}

.hero-title span {
  color: var(--accent-brown);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--navy-blue);
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-primary-book {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.trust-item svg {
  color: var(--accent-brown);
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.hero-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Sections Common */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-brown);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy-dark);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Services Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(110, 68, 54, 0.3);
}

.service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent-yellow-bg);
  color: var(--accent-brown-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  color: var(--accent-brown);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.service-features li {
  font-size: 0.92rem;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.service-features li svg {
  color: var(--accent-brown);
}

/* Discount Banner */
.discount-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--bg-yellow-light) 0%, #FEF08A 100%);
  border: 2px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.discount-info h4 {
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.discount-info p {
  color: var(--navy-dark);
  font-size: 0.98rem;
}

.discount-asterisk {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}

/* Estimator Sketch Tool */
.estimator-card {
  background: var(--navy-dark);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.estimator-info h3 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.estimator-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.estimator-form {
  background: var(--bg-main);
  color: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #FFFFFF;
  color: var(--navy-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-brown);
  box-shadow: 0 0 0 3px rgba(110, 68, 54, 0.15);
}

.estimate-output {
  margin-top: 24px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.estimate-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
}

/* Gallery Grid with 6 Real Dog Photos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.88) 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
}

/* About Section */
.about-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Meet Our Team / Staff Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(110, 68, 54, 0.3);
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  border: 3px solid #FFFFFF;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--accent-brown) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-yellow-bg);
  color: var(--accent-brown-dark);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Accordion Section */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent-brown);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Location & Contact Section */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  background: var(--bg-card);
  padding: 44px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-yellow-bg);
  color: var(--accent-brown);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Instagram Section - Wide Horizontal Layout */
.instagram-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.instagram-header {
  text-align: center;
  margin-bottom: 36px;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-brown);
  margin-top: 8px;
  transition: var(--transition);
}

.instagram-handle:hover {
  color: var(--accent-brown-dark);
  transform: translateY(-2px);
}

/* Wide Horizontal Instagram Layout */
.instagram-horizontal-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ig-profile-card-horizontal {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.ig-profile-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ig-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.3);
}

.ig-profile-info {
  flex-grow: 1;
}

.ig-username {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.ig-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.ig-feed-embed-horizontal {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.ig-feed-embed-horizontal .instagram-media {
  width: 100% !important;
  max-width: 900px !important;
  min-width: 320px !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-md) !important;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 360px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-grid, .about-card, .location-grid, .footer-grid, .gallery-grid, .estimator-card, .discount-banner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .ig-profile-card-horizontal {
    flex-direction: column;
    text-align: center;
  }
  .ig-profile-left {
    flex-direction: column;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
}
