@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth !important;
  font-family: "Outfit", sans-serif;
}



body {
  @apply bg-black;
}

body {
  background-image: url("/images/tiles_bg.jpeg");
  @apply bg-cover bg-center bg-fixed bg-no-repeat relative z-10 h-screen;
}

body:before {
   content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: -1;
}
a {
  text-decoration: none !important;
}


/* Customize the scrollbar track */
::-webkit-scrollbar {
  width: 7px; 
  height: 7px; 
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
 @apply bg-primary rounded-md;
}

/* Customize the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  @apply bg-[#15a6d6] !cursor-pointer;
}


/* Customize the scrollbar corner */
::-webkit-scrollbar-corner {
  background-color: #f0f0f0;
}


.glossy {
  background: rgba(218, 159, 70, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(218, 159, 70, 0.3);
}

.register-btn a, .payment button{
  @apply !bg-primary !font-bold !text-black !py-2 px-4 !text-lg !uppercase !rounded-md
}

.thanks a{
  @apply  !font-bold !text-black !bg-primary !text-center !py-2 px-4 !text-lg !uppercase !rounded-md
}


/* loader */
.blur {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}




