/* Petr Chalupský — Dřevěné výrobky | Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Navbar scrolled state */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(78, 51, 33, 0.1);
}

/* Selection colors */
::selection {
  background-color: #cba97a;
  color: #4e3321;
}

/* Product card image hover */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

/* Smooth image transitions */
img {
  transition: transform 0.5s ease;
}

/* Mobile menu animation */
#mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

#mobile-menu.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#mobile-menu:not(.hidden) {
  max-height: 300px;
  opacity: 1;
}

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

/* Responsive map container */
@media (max-width: 768px) {
  #kontakt iframe {
    min-height: 300px;
  }
}

/* Print styles */
@media print {
  nav, footer { display: none; }
  section { break-inside: avoid; }
  body { color: #000; }
}
