/* Custom styles for Tenerife Guide */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Scrollbar hide for mobile */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

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

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Button hover effects */
button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

/* Card hover effects */
.shadow:hover {
  transform: translateY(-2px);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
}

/* Copy button animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .8;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Link styles */
a {
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* Input focus styles */
button:focus {
  outline: 2px solid #0EA5E9;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .sticky {
    position: static !important;
  }
}
