/* Pod Olchą - Page specific styles */

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.3s ease-out forwards;
}

.animate-slide-out-right {
  animation: slideOutRight 0.3s ease-out forwards;
}

/* Mobile menu backdrop */
.menu-backdrop {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Header shadow on scroll */
.header-scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Map container */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Leaflet map overrides */
.leaflet-container {
  font-family: inherit;
}

/* PrimeVue Galleria overrides */
.p-galleria {
  border-radius: 1rem;
  overflow: hidden;
}

.p-galleria-thumbnail-container {
  background: rgba(0, 0, 0, 0.9) !important;
}

.p-galleria-thumbnail-item-content img {
  border-radius: 0.5rem;
  transition: opacity 0.2s ease;
}

.p-galleria-thumbnail-item-content:hover img {
  opacity: 0.8;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #059669;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #047857;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

/* Active nav link */
.nav-active {
  color: #059669 !important;
  font-weight: 600;
}

/* Section divider */
.section-divider {
  height: 4px;
  width: 60px;
  background: linear-gradient(to right, #059669, #10b981);
  border-radius: 2px;
}
