/* Global styles for OxStory Landing Page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #191a1c;
}

/* Smooth scrolling for better UX */
html {
  scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #1e5bb8;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

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

/* Smooth transitions */
* {
  transition: all 0.2s ease-in-out;
}

/* Print styles */
@media print {
  .hidden {
    display: none !important;
  }
}

/* Reusable dotted background utility */
.dots-bg {
  background-image: url("../assets/icons/dot.svg");
  background-repeat: repeat;
  background-size: 20px 20px;
}
