.card_cont{
    display: flex;
  justify-content: center;
  align-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.tour-card {
  flex: 0 0 auto;
  width: clamp(280px, 30vw, 349px);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  user-select: none;
  scroll-snap-align: start;
}

.tour-card img {
  width: 100%;
  height: 50%;
  display: block;
  transition: transform 0.3s ease-in;
}

.price img {
  width: 16px;
  margin-right: 6px;
}
.slider_wrapper {

    background-image: url(https://mediaim.expedia.com/destination/9/cd8a3f3db7149b0ce36d052aea1182df.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.slider_main {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 450px;
}
.titele {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 41px;
  color: white;
  position: absolute;
  top: 10px;
  z-index: 5;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  color: white;
}
.titele h1{
    display: flex;
  justify-content: center;
  align-items: center;
}
.info-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.info-block img {
  width: 500px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.info-text {
  flex: 1;
  min-width: 250px;
}

.info-text h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.info-text p {
  margin: 6px 0;
  color: #444;
  line-height: 1.6;
}

/* Full-width text block (centered) */
.full-text {
  flex-direction: column;
  text-align: center;
}

/* Reverse layout */
.reverse {
  flex-direction: row-reverse;
}
.info-text button {
  border: none;
  padding: 12px;
  background: #21c8d4;
  color: white;
  font-weight: bold;
  margin: 17px 0 5px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background 0.2s ease;
}
@media (max-width: 768px) {
  .info-block, .reverse {
    flex-direction: column;
    text-align: center;
  }

  .reverse img {
    margin-top: 20px;
  }

  .info-block img {
    width: 100%;
    max-width: 400px;
  }
}
