/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Global font family */
* {
  font-family: "Montserrat", sans-serif;
}
.fs-1 {
  font-size: 4.25rem !important;
}

@media (max-width: 769px) {
  .fs-1 {
    font-size: 2rem !important;
  }
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 300px;
  flex-shrink: 0;
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.gallery-container {
  overflow: hidden;
}

@media (max-width: 768px) {
  .gallery-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
  }

  .gallery-container::-webkit-scrollbar {
    display: none;
  }

  .gallery-section {
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    max-width: none;
    width: max-content;
  }

  .gallery-item {
    flex: 0 0 280px;
    width: 280px;
  }

  .gallery-image {
    height: 350px;
  }
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
}
