/* FlytSocial Global Styles */

/* Reset and base styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #0e0205;
  font-family: 'Onest', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

::-webkit-scrollbar-thumb {
  background: #0e0205;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #440819;
}

/* Selection styles */
::selection {
  background-color: #440819;
  color: white;
}

::-moz-selection {
  background-color: #440819;
  color: white;
}

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

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

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

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Print styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a,
  a:visited {
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  .no-print {
    display: none !important;
  }
}