/* custom.css - Zaheerah Ventures Ltd */
/* Premium corporate styling extensions and overrides */

/* Import modern system font stack with Inter fallback */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Smooth scrolling and base enhancements */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom focus ring for better accessibility */
*:focus-visible {
  outline: 2px solid #0F3B2C;
  outline-offset: 2px;
}

/* Subtle gradient backgrounds (extended) */
.bg-gradient-subtle {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Custom container utilities if needed */
@media (min-width: 1280px) {
  .container-custom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Flowbite component overrides (if any) */
/* Ensure buttons and interactive elements have consistent transitions */
button, a {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Custom card hover effect (slight 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.05), 0 8px 10px -6px rgb(0 0 0 / 0.02);
}

/* Swiper custom pagination bullets (already inline, but keep consistent) */
.swiper-pagination-bullet {
  background: #d1d5db !important;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #0F3B2C !important;
  opacity: 1;
}

/* Alpine.js helpers - no extra style needed */

/* Animate.css overrides for subtle entrance */
.animate__animated.animate__fadeIn {
  --animate-duration: 0.8s;
}

/* Custom gold text utility (already inline but for completeness) */
.text-gold {
  color: #D4A017;
}
.bg-gold {
  background-color: #D4A017;
}
.bg-gold\/10 {
  background-color: rgba(212, 160, 23, 0.1);
}

/* Custom deep green text utility */
.text-deepgreen {
  color: #0F3B2C;
}
.bg-deepgreen {
  background-color: #0F3B2C;
}
.border-deepgreen {
  border-color: #0F3B2C;
}

/* Ensure footer links have subtle hover */
footer a:hover {
  color: #ffffff;
}

/* Form input focus ring consistency */
input:focus, textarea:focus, select:focus {
  outline: none;
  ring: 2px solid #0F3B2C;
}


.swiper-pagination-bullet {
    background: rgba(255, 215, 0, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
  }
  .swiper-pagination-bullet-active {
    background: #FFD700;
    transform: scale(1.3);
  }
  
  [x-cloak] { display: none !important; }
