/* ============================================================
   VCM Bird Land — Main Stylesheet
   Dark Grey-Green Theme · Morphing Background
   Playfair Display + Nunito · Mobile-first responsive
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --cream: #1a2420;
  --cream-dark: #152019;
  --forest: #c8973e;
  --forest-light: #daa94e;
  --forest-dark: #b8872e;
  --bark: #8a7a6a;
  --bark-light: #a09080;
  --gold: #c8973e;
  --gold-light: #e8c44a;
  --coral: #e07a5f;
  --text-dark: #ece4d8;
  --text-mid: #b5a898;
  --text-light: #7a6f63;
  --white: #202e28;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rainbow: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787);
  --max-width: 1200px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* Morphing background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    #1a2420 0%,
    #1e3028 15%,
    #253530 30%,
    #1a2420 45%,
    #1a2e22 60%,
    #2a3830 75%,
    #1a2420 100%
  );
  background-size: 400% 400%;
  animation: warmMorph 25s ease infinite;
}

@keyframes warmMorph {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 25%; }
  50% { background-position: 50% 100%; }
  75% { background-position: 25% 0%; }
  100% { background-position: 0% 50%; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--forest);
}

/* --- Rainbow Bar --- */
.rainbow-bar {
  height: 3px;
  background: var(--rainbow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(26, 36, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 62, 0.1);
  height: var(--header-height);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ece4d8;
  transition: var(--transition);
}

.logo:hover { color: var(--gold-light); }

.logo-icon { font-size: 1.6rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #b5a898;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(200, 151, 62, 0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--forest);
  border-radius: 1px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #ece4d8;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: calc(var(--header-height) + 3px);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 30, 25, 0.92) 0%,
    rgba(20, 30, 25, 0.75) 25%,
    rgba(20, 30, 25, 0.35) 50%,
    transparent 65%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 40px 24px 40px 48px;
  max-width: 580px;
  margin-right: auto;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffd54f;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.8);
}

.hero-content h1 em { color: #ffd54f; }

.hero-sub {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--forest);
  color: #1a2420;
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: #1a2420;
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

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

.section-header p {
  margin-top: 12px;
  color: var(--text-mid);
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.section-alt {
  background: #1e2a24;
}

/* --- Bird Grid --- */
.bird-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.bird-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #202e28;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(200, 151, 62, 0.08);
}

.bird-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 151, 62, 0.2);
}

.bird-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.bird-card:hover .bird-card-img img {
  transform: scale(1.05);
}

.bird-card-info {
  padding: 20px;
}

.bird-card-info h3 {
  margin-bottom: 6px;
}

.bird-card-info p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* --- Product Category Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: var(--transition);
}

.product-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-category-card:hover img {
  transform: scale(1.08);
}

.product-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 36, 32, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.product-category-card:hover .product-category-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(26, 36, 32, 0.95) 100%);
}

.product-category-overlay h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.product-category-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.product-category-overlay .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.product-category-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Offer Grid (Homepage) --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #202e28;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(200, 151, 62, 0.08);
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 151, 62, 0.2);
}

.offer-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.offer-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.offer-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.gi-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item.gi-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-full-grid .gallery-item {
  aspect-ratio: 4/3;
}

/* --- Visit / Contact Section --- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.visit-info h2 {
  margin-bottom: 16px;
}

.visit-info > p {
  color: var(--text-mid);
  margin-bottom: 32px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest);
}

.info-item a {
  color: var(--text-dark);
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--gold-light);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow-md);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

/* --- Services Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: #202e28;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--forest);
  border: 1px solid rgba(200, 151, 62, 0.08);
  border-top: 4px solid var(--forest);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 151, 62, 0.2);
  border-top-color: var(--forest);
}

.service-card .service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.service-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(200, 151, 62, 0.1);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* --- Product Detail Pages --- */
.product-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(var(--header-height) + 3px);
}

.product-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(20, 30, 25, 0.75) 0%, rgba(20, 30, 25, 0.5) 100%);
}

.product-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.product-hero-content h1 {
  color: #ffffff;
  margin-bottom: 8px;
}

.product-hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--forest);
  transition: var(--transition);
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { margin: 0 8px; }

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-images img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.product-details h2 {
  margin-bottom: 16px;
}

.product-details p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.product-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: #202e28;
  border-radius: var(--radius-sm);
}

.product-feature .feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-feature .feat-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.product-feature .feat-text span {
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* --- Blog Placeholder --- */
.blog-placeholder {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.blog-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.6;
}

.blog-placeholder h2 {
  margin-bottom: 12px;
}

.blog-placeholder p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: #152019;
  padding: 100px 0 60px;
  text-align: center;
  margin-top: calc(var(--header-height) + 3px);
}

.page-header h1 {
  color: #ece4d8;
}

.page-header h1 em {
  color: var(--gold-light);
}

.page-header p {
  color: rgba(236, 228, 216, 0.75);
  margin-top: 8px;
  font-size: 1.05rem;
}

/* --- Footer --- */
.site-footer {
  background: #0e1612;
  color: rgba(236, 228, 216, 0.7);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  color: #ece4d8;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ece4d8;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(236, 228, 216, 0.5);
  transition: var(--transition);
}

.footer-col a:hover {
  color: #ece4d8;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 151, 62, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pride {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }

.coming-soon-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: #1a2420;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a2420;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    transition: right 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1.05rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .product-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.gi-wide {
    grid-column: span 2;
  }

  .gallery-item.gi-tall {
    grid-row: auto;
    aspect-ratio: 1/1;
  }
}

@media (max-width: 600px) {
  .hero { min-height: 75vh; }

  .hero-content {
    padding: 40px 24px 40px 24px;
  }

  .section { padding: 56px 0; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .offer-grid { grid-template-columns: 1fr 1fr; }

  .bird-grid { grid-template-columns: 1fr; }

  .product-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.gi-wide {
    grid-column: span 1;
    aspect-ratio: 1/1;
  }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-header {
    padding: 80px 0 40px;
  }
}

/* === Dark Google Maps === */
.visit-map iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(0.8) contrast(1.2);
}

/* === Gallery image positioning === */
.gallery-item img[alt="Bird toy"] {
  object-position: top center;
}
.gallery-item img[alt="Green macaw"] {
  object-position: top center;
}

/* === Gallery - show bird heads === */
.gallery-item img {
  object-position: 50% 15% !important;
}
.gallery-item img[alt="Bird toy"] {
  object-position: center center !important;
}
.gallery-item img[alt="Cage display"] {
  object-position: center center !important;
}
.gallery-item img[alt="Bird food selection"] {
  object-position: center center !important;
}

/* === Offer grid - single row === */
.offer-grid {
  grid-template-columns: repeat(6, 1fr) !important;
}
@media (max-width: 900px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* === Font Awesome offer icons === */
.offer-icon i {
  font-size: 2rem;
  color: var(--gold);
}

/* === Font Awesome offer icons === */
.offer-icon i {
  font-size: 2rem;
  color: var(--gold);
}

/* === Dropdown Nav === */
.nav-links li {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(26, 36, 32, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 151, 62, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1100;
  list-style: none;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 10px 20px !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: #b5a898 !important;
  background: none !important;
  white-space: nowrap;
  border-radius: 0 !important;
}
.nav-dropdown li a:hover {
  color: var(--gold-light) !important;
  background: rgba(200, 151, 62, 0.08) !important;
}
.nav-dropdown li a::after {
  display: none !important;
}

/* Mobile dropdown */
@media (max-width: 900px) {
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(200, 151, 62, 0.04);
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
    backdrop-filter: none;
    display: none;
  }
  .nav-dropdown.mobile-open {
    display: block;
  }
  .nav-links > li {
    width: 100%;
  }
  .nav-links > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links > li.has-dropdown > a::after {
    content: '\25BC';
    font-size: 0.6em;
    margin-left: 8px;
    transition: transform 0.3s ease;
    opacity: 0.6;
  }
  .nav-links > li.has-dropdown.dropdown-active > a::after {
    transform: rotate(180deg);
  }
}

/* === Clickable Bird Cards === */
a.bird-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
a.bird-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
a.bird-card-link:hover .bird-card-info h3 {
    color: var(--accent, #2d5016);
}

/* === Lovebirds Coming Soon Placeholder === */
.bird-card-placeholder {
    background: #151913;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    width: 100%;
    position: relative;
    border-radius: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
    width: 100%;
}
.placeholder-bird-svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}
.placeholder-badge {
    display: inline-block;
    background: rgba(232,220,200,0.08);
    border: 1px solid rgba(232,220,200,0.18);
    color: rgba(232,220,200,0.6);
    font-family: 'Nunito', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
}
.placeholder-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    color: rgba(232,220,200,0.3);
    font-style: italic;
}
a.bird-card-link:hover .bird-card-placeholder {
    background: #1c211a;
}
a.bird-card-link:hover .placeholder-badge {
    border-color: rgba(232,220,200,0.3);
    color: rgba(232,220,200,0.8);
}

/* === Social Links List (Contact Page) === */
.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.social-links-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.social-links-list a:hover {
    color: var(--accent, #c9a84c);
}

/* === Review Badges === */
.reviews-bar {
    padding: 48px 0;
}
.reviews-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.reviews-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(232,220,200,0.6);
    letter-spacing: 1px;
}
.review-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.review-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,220,200,0.06);
    border: 1px solid rgba(232,220,200,0.1);
    border-radius: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
.review-badge:hover {
    background: rgba(232,220,200,0.1);
    border-color: rgba(232,220,200,0.2);
    transform: translateY(-2px);
}
.review-stars {
    color: #c9a84c;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.review-score {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #e8dcc8;
}
.review-source {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    color: rgba(232,220,200,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .review-badges {
        flex-direction: column;
        align-items: stretch;
    }
    .review-badge {
        justify-content: center;
    }
}

/* === Footer Credit === */
.footer-credit {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    color: rgba(232,220,200,0.3);
}
.footer-credit a {
    color: rgba(232,220,200,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit a:hover {
    color: #c9a84c;
}

/* === Clickable Service Cards === */
a.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
a.service-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
a.service-card-link:hover h3 {
    color: var(--gold, #c9a84c);
}

/* === Responsive header fixes === */

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-sub {
    font-size: 0.85rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .logo-text {
    font-size: 1rem;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
}

/* === Header size increase === */
.site-header {
  padding: 6px 0;
}
.nav-container {
  padding: 0 32px;
}
.logo .logo-icon {
  height: 50px !important;
}
.logo-text {
  font-size: 1.4rem !important;
}
.nav-links a {
  font-size: 1.05rem;
  padding: 10px 18px;
}



@media (max-width: 480px) {
  .logo .logo-icon {
    height: 34px !important;
  }
  .logo-text {
    font-size: 1rem !important;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 10px 12px;
  }
}

/* === Logo left, nav right === */
.nav-container {
  justify-content: space-between !important;
}
.logo {
  margin-right: auto;
}

/* === Full-width header, logo far left === */
.site-header .nav-container {
  max-width: 100% !important;
  padding: 0 40px !important;
}

/* === Bigger nav === */
.logo .logo-icon {
  height: 58px !important;
}
.logo-text {
  font-size: 1.6rem !important;
}
.nav-links a {
  font-size: 1.15rem !important;
  padding: 12px 22px !important;
}
.site-header {
  padding: 8px 0 !important;
}

/* === Bigger headline + tagline === */
.hero-content h1 {
  font-size: 3.2rem !important;
}
.hero-tagline {
  font-size: 1.1rem !important;
  letter-spacing: 3px !important;
}
.hero-content {
  max-width: 45% !important;
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.6rem !important;
  }
  .hero-content {
    max-width: 60% !important;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.8rem !important;
  }
  .hero-tagline {
    font-size: 0.85rem !important;
  }
  .hero-content {
    max-width: 85% !important;
  }
}

/* === Stacked Bird Photo Gallery === */
.bird-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bird-gallery img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.bird-gallery img:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.01);
}


/* === Mobile Nav Fixes === */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 1200;
  }

  .nav-links {
    z-index: 1100 !important;
    padding-bottom: 60px;
    background: #1a2420 !important;
  }
}

/* === Hide logo text on mobile === */
@media (max-width: 900px) {
  .logo-text {
    display: none !important;
  }
}
