/* =========================
   TOURS — FULL WIDTH SLIDER
   ========================= */

.toursFull{
  padding: 64px 0;
}

.toursBleed{
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Slider container */
.toursSlider{
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}

/* Slides (AUTO SLIDER) */
.toursSlider .slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  animation: fadeSlide 16s infinite;
}

/* Images */
.toursSlider .slide.s1{
  background-image: url('../images/rome-1.jpg');
  animation-delay: 0s;
}
.toursSlider .slide.s2{
  background-image: url('../images/rome-2.jpg');
  animation-delay: 4s;
}
.toursSlider .slide.s3{
  background-image: url('../images/rome-3.jpg');
  animation-delay: 8s;
}
.toursSlider .slide.s4{
  background-image: url('../images/rome-4.jpg');
  animation-delay: 12s;
}

/* Overlay for contrast (NO BOX) */
.toursOverlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 40px 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 20% 75%, rgba(0,0,0,.55), transparent 60%),
    linear-gradient(180deg,
      rgba(0,0,0,.08) 0%,
      rgba(0,0,0,.40) 55%,
      rgba(0,0,0,.75) 100%);
}

/* Text block (floating, clean) */
.toursText{
  max-width: 820px;
}

/* Optional small kicker */
.toursKicker{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* Headline */
.toursText h2{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -.5px;
  text-shadow: 0 10px 35px rgba(0,0,0,.55);
}

/* Paragraph */
.toursText p{
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(234,240,255,.92);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

/* Bullet points */
.toursPoints{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: rgba(234,240,255,.94);
  text-shadow: 0 10px 26px rgba(0,0,0,.55);
}

.toursPoints li{
  position: relative;
  padding-left: 22px;
}

.toursPoints li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Animation (REQUIRED) */
@keyframes fadeSlide{
  0%   { opacity: 0; transform: scale(1.03); }
  8%   { opacity: 1; transform: scale(1.01); }
  25%  { opacity: 1; transform: scale(1.00); }
  33%  { opacity: 0; transform: scale(1.03); }
  100% { opacity: 0; }
}

/* Mobile tuning */
@media (max-width: 980px){
  .toursSlider{
    min-height: 440px;
  }

  .toursOverlay{
    padding: 28px 0;
  }

  .toursText p{
    font-size: 16px;
  }
}
