/**
 * Mi Amigo Fiel — v2
 * Custom styles (Tailwind handles the rest)
 */

/* ─── Base ────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Navbar scroll state ─────────────────────── */
#navbar {
  transition: background-color 0.3s, box-shadow 0.3s;
}

#navbar.navbar-scrolled {
  background-color: rgba(41, 25, 14, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ─── Section animation ───────────────────────── */
.section-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Cards ───────────────────────────────────── */
article.group img {
  transition: transform 0.5s ease;
}

/* ─── WhatsApp FAB pulse ──────────────────────── */
#whatsapp-fab span {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ─── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8f2d8;
}

::-webkit-scrollbar-thumb {
  background: #E3B32D;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f68903;
}

/* ─── Selection ───────────────────────────────── */
::selection {
  background-color: #0089f7;
  color: white;
}

::-moz-selection {
  background-color: #0089f7;
  color: white;
}

/* ─── Aspect ratio fallback ───────────────────── */
.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

@supports not (aspect-ratio: 4 / 3) {
  .aspect-\[4\/3\]::before {
    content: "";
    float: left;
    padding-top: 75%;
  }
  .aspect-\[4\/3\]::after {
    content: "";
    display: block;
    clear: both;
  }
}

/* ─── Responsive tweaks ───────────────────────── */
@media (max-width: 640px) {
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.5rem !important;
  }
}
