@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-primary: #04ABDA;
  --color-black: #000;
  --color-white: #fff;
}

@theme {
  --color-primary: #04ABDA;
}

* {
  font-family: "Roboto", sans-serif;
}

/* 
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
} */



/* HOME PAGE */
@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-scroll {
  display: flex;
  width: max-content;
  animation: scrollTrack 10s linear infinite;
  /* Adjust speed here */
  will-change: transform;
}

.bg-zoom {
  animation: zoomIn 10s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}


/* Prevent accidental text/image selection during drag */
#service-track.dragging {
  cursor: grabbing;
  user-select: none;
}

#service-track {
  cursor: grab;
}

/* Prevent accidental text/image selection during drag */
#service-track-2.dragging {
  cursor: grabbing;
  user-select: none;
}

#service-track-2 {
  cursor: grab;
}

.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeSlideDown 0.3s forwards;
}

@keyframes fadeSlideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* GALLERY */
.masonry-grid {
  column-count: 1;
  column-gap: 0.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

/* Responsive breakpoints */
@media (min-width: 640px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }
}

@media (min-width: 1280px) {
  .masonry-grid {
    column-count: 3;
  }
}

/* FAQ */
/* .faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
  }
  .faq-panel.open {
    opacity: 1;
  } */