/* ============================================================
   Frankston Electrical and Air Conditioning Group
   Custom CSS — Spot On Websites
   All layout via Tailwind CDN; custom overrides below.
   ============================================================ */

html {
  scroll-behavior: smooth;
}

/* Skip navigation */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Call bar transition */
#callBar {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(100%);
  opacity: 0;
}

#callBar.translate-y-0 {
  transform: translateY(0);
}

#callBar.opacity-100 {
  opacity: 1;
}

#callBar.translate-y-full {
  transform: translateY(100%);
}

#callBar.opacity-0 {
  opacity: 0;
}

/* FAQ icon rotation */
.faq-icon {
  transition: transform 0.2s ease;
}

.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

/* Mobile services icon rotation */
#mobile-services-icon {
  transition: transform 0.2s ease;
}

#mobile-services-icon.rotate-180 {
  transform: rotate(180deg);
}

/* Img cover utility */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Data-ai-image placeholder styling */
[data-ai-image] {
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
