/* Bizylook site – styles & animations */
/* Theme colors (match style.css) – used site-wide */
:root {
  --main-color: rgb(255, 87, 51);
  --dark-color: rgb(199, 0, 57);
}

html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#nav-mobile {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Hero background image */
.hero-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Fade-in on scroll (optional, use with JS or reduce-motion) */
.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA section background */
.cta-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Card hover lift */
.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Image overlay for readability */
.image-overlay-dark {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%);
}

/* Tech section – brand color accents */
.tech-card:hover {
  border-color: var(--main-color);
  box-shadow: 0 4px 14px rgba(255, 87, 51, 0.12);
}
#tech .text-main {
  color: var(--main-color);
}

/* FAQ accordion */
.faq-trigger .fa-chevron-down {
  transition: transform 0.2s ease;
}
.faq-item .faq-panel {
  transition: opacity 0.2s ease;
}

/* Products page — flagship screenshot */
.product-flagship-screenshot {
  aspect-ratio: 16 / 10;
  min-height: 280px;
}
.product-flagship-screenshot img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
