@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Reset and Custom Base Styles */
html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

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

::-webkit-scrollbar-track {
  background: #0f172a; /* slate-900 */
}

::-webkit-scrollbar-thumb {
  background: #0d9488; /* teal-600 */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #14b8a6; /* teal-500 */
}

/* Custom Background Image Overlay Sections */
.bg-hero {
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('images/6561.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bg-category {
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('images/327.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* WhatsApp Pulse Animation */
@keyframes pulsing {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); /* green-500 */
  }
  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.whatsapp-pulse {
  animation: pulsing 2s infinite;
}

/* Glassmorphism Classes */
.glass-nav {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

/* Custom styles for baguetteBox Lightbox */
#baguetteBox-overlay {
  background-color: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(8px);
}

.baguetteBox-button {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.baguetteBox-button:hover {
  background-color: #0d9488 !important;
  color: white !important;
}