/* ===== CUSTOM STYLES PENTRU DESTINATION VIEW PAGE ===== */

/* Page Title cu background image */
.page-title-area {
  position: relative !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-title-area::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 1 !important;
}

.page-title-area .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-title-content .sub-title {
  color: #63AB45 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  display: inline-block !important;
  margin-bottom: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.page-title-content .title {
  color: #ffffff !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
}

.page-title-content .subtitle-text {
  color: #ffffff !important;
  font-size: 20px !important;
  font-style: italic !important;
  opacity: 0.9 !important;
}

/* Location Info */
.location-info {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #63AB45 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.location-info i {
  font-size: 18px !important;
}

/* Description Text */
.description-text {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #666 !important;
}

.description-text p {
  margin-bottom: 20px !important;
}

/* Map Link Box */
.map-link-box {
  text-align: center !important;
  padding: 30px !important;
  background: #f8f9fa !important;
  border-radius: 8px !important;
}

.map-link-box .main-btn {
  padding: 15px 40px !important;
  font-size: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.map-link-box .main-btn i {
  font-size: 18px !important;
}

/* Destination Image Box */
.destination-image-box {
  position: sticky !important;
  top: 100px !important;
}

.destination-image-box img {
  width: 100% !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .page-title-content .title {
    font-size: 36px !important;
  }
  
  .destination-image-box {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 767px) {
  .page-title-area {
    padding-top: 150px !important;
    padding-bottom: 100px !important;
  }
  
  .page-title-content .title {
    font-size: 28px !important;
  }
  
  .page-title-content .subtitle-text {
    font-size: 16px !important;
  }
}

.place-img-fixed {
    width: 300px;          /* lățimea fixă */
    height: 300px;         /* înălțimea fixă - poți schimba la ce vrei (ex: 400px) */
    overflow: hidden;
    border-radius: 8px;    /* opțional - colțuri rotunjite */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* opțional */
}

.place-img-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* CEL MAI IMPORTANT - taie și umple uniform */
    object-position: center;     /* centrează imaginea */
    display: block;
    transition: transform 0.4s ease;
}

/* Opțional: efect de zoom la hover */
.place-slider-item:hover .place-img-fixed img {
    transform: scale(1.1);
}