/* BrightGale Energy - Custom styles supplementing Tailwind CDN */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Form inputs */
.calc-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  color: #082B4C;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.calc-input:focus {
  outline: none;
  border-color: #16A6A0;
  box-shadow: 0 0 0 3px rgba(22, 166, 160, 0.15);
}

/* Reveal-up scroll animation */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slow bounce for scroll indicator */
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(8px) translateX(-50%); }
}
.animate-bounce-slow {
  animation: bounce-slow 2.2s infinite;
}

/* Floating hero cards positions + gentle float animation */
.floating-card {
  animation: float 5s ease-in-out infinite;
}
.float-card-0 { top: 6%; right: 8%; animation-delay: 0s; }
.float-card-1 { top: 42%; right: -2%; animation-delay: 0.8s; }
.float-card-2 { bottom: 8%; right: 18%; animation-delay: 1.6s; }

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

/* FAQ chevron rotation */
.faq-question i.rotate-180 {
  transform: rotate(180deg);
}
.faq-question i {
  transition: transform 0.25s ease;
}

/* Blog article prose */
.prose-bge h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #082B4C;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-bge h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #082B4C;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose-bge p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.prose-bge ul, .prose-bge ol {
  margin-bottom: 1.1rem;
  padding-left: 1.5rem;
  color: #4b5563;
}
.prose-bge li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.prose-bge ul { list-style-type: disc; }
.prose-bge ol { list-style-type: decimal; }

/* Admin panel table row hover */
.admin-row:hover {
  background-color: #f9fafb;
}

/* Simple scrollbar styling for admin */
.admin-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.admin-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
