/* Custom Styles for AMB Ogrody Mazowieckie */

/* Font & Base configurations */
:root {
  scroll-behavior: smooth;
}

/* Material Symbols Integration */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  vertical-align: middle;
}

/* Scrollbar Customization */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f6f3f2;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #17341c;
  border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #2d4b31;
}

/* Global scrollbar for the page */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f6f3f2;
}
::-webkit-scrollbar-thumb {
  background: #17341c;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2d4b31;
}

/* Navigation glass effect */
.glass-header {
  background: rgba(252, 249, 248, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(194, 200, 191, 0.3);
}

/* Card glassmorphism */
.glass-card, .glass-effect {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Hero Background Gradients */
.hero-gradient {
  background: linear-gradient(135deg, #fcf9f8 0%, #f0eded 100%);
}

/* Subtle micro-interactions */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(23, 52, 28, 0.1), 0 8px 10px -6px rgba(23, 52, 28, 0.1);
}

/* Custom animations */
@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.animate-bounce-slow {
  animation: bounce-slow 4s ease-in-out infinite;
}

/* Organic Background Texture Placeholder (styled using CSS gradients and SVG) */
.bg-organic-pattern {
  position: relative;
  background-color: #fcf9f8;
}
.bg-organic-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(71, 102, 74, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(128, 85, 51, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Reveal-on-scroll transitions */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Slide In */
.mobile-menu-open {
  overflow: hidden;
}
