:root {
  --color-primary-teal: #00a8b5;
  --color-accent-orange: #ff6c33;
  --color-dark-gray: #333333;
  --color-light-gray: #f5f5f5;
  --color-white: #ffffff;
  --color-sand-neutral: #d5c5b3;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --company-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --orange-shadow: 0 4px 6px rgba(239, 108, 51, 0.3);
  --orange-shadow-hover: 0 6px 12px rgba(239, 108, 51, 0.4);
  --transition-speed: 0.3s;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
  transform: scale(1);
}

.carousel-caption-center {
  color: white;
  text-align: center;
  font-size: 1.75rem;
  background-color: var(--color-dark-gray);
  padding-block: 5px;
  }

.Title{
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(90, 88, 88, 0.6);
  padding: 5px 10px;
  color: white;
}

.card:hover .Title {
  opacity: 1;
}

.image-wrapper {
  overflow: hidden;
}

.zoom-image {
  transition: transform 0.8s ease-in-out;
}

.image-wrapper:hover .zoom-image {
  transform: scale(1.05);
}

#showMore {
  background-color: var(--color-primary-teal);
  border: none !important;
  outline: none !important;
  color: var(--color-white);
}

#showless {
  background-color: var(--color-accent-orange);
  border: none !important;
  outline: none !important;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .card {
    height: 25vh;
  }
}

@media screen and (max-width: 768px) {
  .carousel-caption-center {
    font-size: 1.15rem;
    }
}

