

/*  */

.attraction-box {
  position: relative;
  height: 420px;
  overflow: hidden;
  z-index: 1;
}

.attraction-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* White inner border */
.attraction-box .frame {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(255,255,255,0.8);
  z-index: 2;
}

/* Bottom text */
.attraction-box .content {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  z-index: 3;
}

.attraction-box .content p {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--white-color);
  width: 70%;
  display: block;
  margin: auto;
  padding-bottom: 20px;
}

.attraction-box .content a {
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.attraction-box .content a:hover {
  background: #fff;
  color: #000;
}

/* Dark overlay */
.attraction-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.4s ease;
}

/* Hover */
.attraction-box:hover img {
  transform: scale(1.12);
}

.attraction-box:hover::after {
  background: rgba(0,0,0,0.55);
}


section.attractions {
    background: #d9d9d9;
}


.haunted-section {
    background-color: #d9d9d9;
}

.haunted-content {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.haunted-content h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.haunted-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.haunted-image {
    position: relative;
    margin-left: -80px;
}

.haunted-image img {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    object-fit: cover;
}

.haunted-content {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

/* Inner Border */
.haunted-content::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid #000;
    pointer-events: none;
}

.haunted-content h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.haunted-content p {
    font-size: 15px;
    color: #444;
    font-weight: 400;
    line-height: 1.7;
}

