/* Carcassonne Gioco — PlayPop custom styles */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
}

.font-display {
  font-family: 'Fredoka One', cursive, sans-serif;
}

.border-cartoon {
  border: 3px solid #2D2D2D;
  border-radius: 20px;
}

.btn-cartoon {
  border: 3px solid #2D2D2D;
  border-radius: 20px;
  box-shadow: 3px 3px 0 #2D2D2D;
  transition: all 0.15s ease;
}
.btn-cartoon:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 #2D2D2D;
}
.btn-cartoon:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.shadow-pop {
  box-shadow: 5px 5px 0 #2D2D2D;
}
.shadow-pop-sm {
  box-shadow: 3px 3px 0 #2D2D2D;
}
.shadow-pop-lg {
  box-shadow: 8px 8px 0 #2D2D2D;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
#mobile-menu.open {
  max-height: 600px;
  opacity: 1;
}

#header.scrolled {
  background: rgba(245, 235, 216, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid #2D2D2D;
}

.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.5s ease;
}
.img-zoom:hover img {
  transform: scale(1.08);
}

.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 6px 6px 0 #2D2D2D;
}

.category-card {
  transition: transform 0.25s ease;
}
.category-card:hover {
  transform: translateY(-8px) rotate(-2deg);
}

.prose-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

::selection {
  background: #C9A227;
  color: #2D2D2D;
}
