/* ===== BINDI TAILS - Main Stylesheet ===== */

/* --- Language Toggle --- */
.lang-toggle-item { display: flex; align-items: center; }
.lang-toggle-btn {
  display: inline-flex; align-items: center; gap: 2px;
  background: transparent; border: 1.5px solid var(--accent, #f9a825);
  border-radius: 20px; padding: 4px 10px; cursor: pointer;
  font-family: inherit; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.5px; transition: all 0.2s;
}
.lang-toggle-btn:hover { background: var(--accent, #f9a825); }
.lang-toggle-btn:hover span { color: white; }
.lang-toggle-btn .lang-en,
.lang-toggle-btn .lang-es { color: #999; transition: color 0.2s; }
.lang-toggle-btn .lang-en.active,
.lang-toggle-btn .lang-es.active { color: var(--accent, #f9a825); font-weight: 800; }
.lang-toggle-btn:hover .lang-en.active,
.lang-toggle-btn:hover .lang-es.active { color: white; }
.lang-toggle-btn .lang-divider { color: #ccc; margin: 0 2px; }

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Focus indicators for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--accent, #C69C6D);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

:root {
  --primary: #0F1C2E;
  --primary-dark: #080F1A;
  --primary-mid: #162A45;
  --accent: #C69C6D;
  --accent-light: #D4B08C;
  --accent-dark: #A07D4F;
  --warm: #F9F6F2;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --gray-light: #F5F3F0;
  --cream: #FAF8F5;
  --shadow: 0 2px 16px rgba(15,28,46,0.06);
  --shadow-hover: 0 6px 24px rgba(15,28,46,0.1);
  --shadow-luxury: 0 12px 40px rgba(15,28,46,0.12);
  --primary-light: #1a2d4a;
  --accent-dark: #a07a4a;
  --accent-light: #d4b896;
  --radius: 8px;
  --font-main: 'Nunito', sans-serif;
  --font-display: 'Nunito', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.95), transparent 35%), linear-gradient(180deg, #fffaf2 0%, #eef6ff 55%, #ffffff 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

h1 { font-size: 2.8rem; font-family: 'Nunito', sans-serif; font-weight: 700; }
h2 { font-size: 1.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 600; }
p { margin-bottom: 1rem; }

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* --- Header & Navigation --- */
header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light, #1a2d4a));
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  white-space: nowrap;
  margin-right: 32px;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-logo:visited,
.nav-logo:active,
.nav-logo:hover {
  color: var(--white);
}

.nav-logo span {
  color: var(--white);
}

.nav-cart {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--accent-light); }

/* Chat icon in nav (replaces cart) */
.nav-chat-btn {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  border-radius: 50%;
}
.nav-chat-btn:hover {
  color: white;
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

/* Floating shop button — persistent bottom of viewport */
.floating-shop-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  background: linear-gradient(135deg, var(--accent, #C69C6D), #a07a4a);
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: shopBtnPulse 4s ease-in-out infinite;
}
.floating-shop-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
@keyframes shopBtnPulse {
  0%, 85%, 100% { transform: translateY(0); }
  90% { transform: translateY(-3px); }
  95% { transform: translateY(0); }
}
@media (max-width: 768px) {
  .floating-shop-btn {
    bottom: 70px; /* above mobile bottom nav */
    right: 12px;
    padding: 10px 18px;
    font-size: 0.82rem;
  }
}

.nav-cart-item {
  margin-left: auto;
  order: 999;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  transition: color 0.2s, transform 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-light);
  transform: translateY(-1px);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

/* Dropdown menus */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-dropdown .dropdown-menu li {
  padding: 0;
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--text);
}

.nav-dropdown .dropdown-menu a:hover {
  background: var(--bg);
  color: var(--primary);
}

/* Nested submenu (BarkParks group) */
.nav-dropdown .dropdown-menu .has-submenu {
  position: relative;
}
.nav-dropdown .dropdown-menu .has-submenu > a::after {
  content: ' ▸';
  opacity: 0.5;
}
.nav-dropdown .dropdown-menu .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  min-width: 170px;
  z-index: 1001;
  list-style: none;
}
.nav-dropdown .dropdown-menu .has-submenu:hover > .submenu {
  display: block;
}
.nav-dropdown .dropdown-menu .submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--text);
  text-decoration: none;
}
.nav-dropdown .dropdown-menu .submenu a:hover {
  background: var(--bg);
  color: var(--primary);
}

.dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

.nav-links {
  order: 1;
}

.theme-toggle {
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: transform 0.2s;
  line-height: 1;
}

.theme-toggle:hover {
  transform: scale(1.2);
}

/* Dark mode styles */
body.dark-mode {
  --bg: #060F1A;
  --white: #0B1525;
  --text: #E8E4E0;
  --text-light: #B0A89F;
  --gray-light: #111D2E;
  --warm: #0E1829;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
}

body.dark-mode header {
  background: linear-gradient(135deg, #040C16, #0B1D3A);
  border-bottom-color: rgba(200,136,74,0.2);
}

body.dark-mode .card,
body.dark-mode .section {
  background: #1e1e3a;
  color: #e0e0e0;
}

body.dark-mode img {
  opacity: 0.9;
}

.nav-toggle {
  order: 3;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(180deg, var(--warm) 0%, #EDE5DC 20%, #C5CDD8 55%, #94A3B8 100%);
  padding: 72px 0 64px;
  text-align: left;
  position: relative;
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-flex > * {
  min-width: 0;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--text);
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800;
}

.hero h1 span {
  color: var(--accent-dark);
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 0 16px;
  line-height: 1.8;
  font-family: var(--font-main);
}

.hero-image {
  width: 280px;
  height: 280px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center bottom;
  border: none;
  box-shadow: var(--shadow-luxury);
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 156, 109, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--primary);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 28, 46, 0.2);
}

/* --- Breadcrumbs --- */
.breadcrumb {
  padding: 12px 24px;
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-light);
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 28, 46, 0.12);
}

.card h3 {
  color: var(--primary);
}

/* Book number badges */
.book-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.book-card {
  display: flex;
  flex-direction: column;
}

.book-quote {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 8px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

/* Sticky Shop CTA */
/* Scroll email modal */
.email-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 46, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.email-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.email-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.email-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.email-modal p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.email-modal input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e4df;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: var(--font-main);
}

.email-modal input:focus {
  outline: none;
  border-color: var(--accent);
}

.email-modal button {
  width: 100%;
}

.email-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  width: auto;
}

.card .tag {
  display: inline-block;
  background: var(--warm);
  color: var(--accent-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* --- About Section --- */
.about-section {
  margin-top: -24px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 380px;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text .fun-facts {
  list-style: none;
  margin-top: 16px;
}

.about-text .fun-facts li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
}

.about-text .fun-facts li::before {
  content: "🐾 ";
}

/* --- Books Section --- */
.books-section {
  background: var(--gray-light);
}

.book-card {
  text-align: center;
}

.book-card .book-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}

/* --- Two Sides Feature --- */
.two-sides {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFEFDB 100%);
}

.two-sides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.side-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.side-card.bindi {
  border-left: 4px solid var(--accent);
}

.side-card.mom {
  border-left: 4px solid var(--primary);
}

.side-card .label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.side-card.bindi .label { color: var(--accent-dark); }
.side-card.mom .label { color: var(--primary); }

/* --- Subscribe Section --- */
.subscribe-section {
  background: linear-gradient(135deg, #EBF4FF 0%, var(--warm) 100%);
}

.subscribe-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 550px;
  margin: 0 auto;
}

.subscribe-form input {
  padding: 14px 18px;
  border: 2px solid #E0E0E0;
  border-radius: 30px;
  font-family: var(--font-main);
  font-size: 1rem;
  width: 200px;
  transition: border-color 0.2s;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,108,176,0.2);
}

@media (max-width: 480px) {
  .subscribe-form input {
    width: 100%;
  }
}

/* --- Events Section --- */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.gallery-caption {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--white);
  text-align: center;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Events Section --- */
.events-section {
  background: var(--white);
}

.event-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
}

.event-date {
  min-width: 80px;
  text-align: center;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.event-date .day {
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--text);
}

/* --- Contact Section --- */
.contact-section {
  background: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,108,176,0.2);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

/* --- Footer --- */
footer {
  background: var(--text);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

footer .footer-tagline {
  color: #AAAAAA;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

footer .footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

footer .footer-links a {
  color: #CCCCCC;
  font-size: 0.9rem;
}

footer .footer-links a:hover {
  color: var(--accent);
}

footer .copyright {
  color: #888;
  font-size: 0.8rem;
}

/* --- Mobile Bottom Navigation --- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid #eee;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.bottom-nav-item i {
  font-size: 1.2rem;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--primary);
  background: rgba(74,144,217,0.08);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  /* Add padding at bottom of page so content isn't hidden behind nav */
  body {
    padding-bottom: 70px;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--text);
  }

  .nav-links a:hover {
    color: var(--primary);
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: var(--bg);
    border-radius: 8px;
    margin-top: 6px;
    padding: 4px 0;
    display: block;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Mobile nested submenu */
  .nav-dropdown .dropdown-menu .submenu {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
    margin: 4px 0 4px 12px;
    padding: 4px 0;
    display: block;
  }
  .nav-dropdown .dropdown-menu .has-submenu > a::after {
    content: ' ▾';
  }

  .dropdown-toggle::after {
    content: ' ▾';
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero .subtitle {
    margin: 0 auto 16px;
  }

  .hero-image {
    width: 220px;
    height: 220px;
  }

  .about-grid,
  .two-sides-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  section {
    padding: 60px 0;
  }
}

/* ===== Bindi Avatar Mascot Badge ===== */
.bindi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent, #f4a261);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: inline-block;
  vertical-align: middle;
}
.bindi-avatar.small { width: 40px; height: 40px; border-width: 2px; }
.bindi-avatar.large { width: 80px; height: 80px; border-width: 4px; }
.bindi-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.bindi-badge p, .bindi-badge span {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
}
.bindi-says {
  background: var(--warm);
  border-left: none;
  border-bottom: 1px solid rgba(198,156,109,0.15);
  border-radius: 0;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  width: 100%;
}
.bindi-says .bindi-avatar { flex-shrink: 0; border-color: var(--accent); width: 36px; height: 36px; }
.bindi-says p { margin: 0; font-style: italic; color: var(--text-light); font-size: 0.85rem; font-family: var(--font-main); }

