/* image slider */

.slider-container {
  height: auto;
  width: 100%;
}

.slider-container .carousel-item img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
  z-index: 10;
}

.blogs-header {
  width: 100%;
  height: 80vh;

  /* 👉 PUT YOUR IMAGE HERE */
  background-image: url("/assest/side1.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
}

.blogs-overlay {
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 7, 0.269);
}

.blogs-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

.blogs-subtitle {
  font-size: 20px;
  margin-top: 10px;
  color: #fff;
}

.bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

section .border {
  border: 1.5px dashed #e6e6e6 !important;
}

/* Individual Attraction Row Styling */
.Attraction {
  margin-bottom: 60px;
  padding: 30px;
  background: rgba(112, 66, 20, 0.05); /* Very subtle brown tint */
  border-radius: 15px;
  border: 1px solid rgba(162, 120, 27, 0.1);
  transition: all 0.4s ease;
  align-items: center; /* Vertically center content */
}

.Attraction:hover {
  border-color: var(--gold);
  background: rgba(112, 66, 20, 0.1);
  transform: translateY(-5px);
}

/* Image Styling */
.Attraction img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--brown);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.Attraction:hover img {
  transform: scale(1.03);
  border-color: var(--gold);
}

/* Text Styling */
.Attraction h3 {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* Underline decoration for titles */
.Attraction h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--brown);
  margin-top: 8px;
  transition: width 0.3s ease;
}

.Attraction:hover h3::after {
  width: 100%;
  background: var(--gold);
}

.Attraction p {
  line-height: 1.8;
  color: black;
  font-size: 1.05rem;
}

/* Alternating Layout (Zigzag) for Desktop */
@media (min-width: 768px) {
  .Attraction:nth-child(even) {
    flex-direction: row-reverse;
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .Attraction {
    padding: 15px;
    text-align: center;
  }
  .Attraction h3::after {
    margin: 8px auto 0;
  }
  .Attraction img {
    margin-bottom: 20px;
  }
}
