/* Custom Styles for Umrah Packages USA */

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth transitions */
a, button {
  transition: all 0.3s ease;
}

/* Custom prose styles for better readability */
.prose {
  max-width: none;
}

.prose h3 {
  color: #1f2937;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.prose ul {
  margin: 1rem 0;
}

/* Package cards hover effect */
.hover\:scale-105:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .text-5xl {
    font-size: 2rem;
  }
}

/* Print styles for offline use */
@media print {
  header, footer, button {
    display: none;
  }
  
  .no-print {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .shadow-lg, .shadow-md {
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }
}