@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&family=Open+Sans:wght@400;600&display=swap');


body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
}

p {
    font-size: 16px;
    color: #444444;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button, input, select, textarea {
    font-family: 'Lato', sans-serif;
}


body {
  background-color: #ffffff;
}
.bg-footer {
  background-color: #f99f15;
}

h2.fw-bold {
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
}




.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 8px;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 110, 253, 0.7); /* Bootstrap primary with opacity */
    color: white;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  section.py-5 .card {
    background-color: #d1f8d6;
  }
  

  .review-box {
    max-width: 700px;
    min-height: 300px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  .review-box {
    max-width: 700px;
    min-height: 300px;
    background-color: #fff;
  }

  .btn-outline-primary {
    color: #29706c;
    border-color: #29706c;
  }
  
  .btn-outline-primary:hover,
  .btn-outline-primary:focus {
    background-color: #29706c;
    color: #fff;
    border-color: #29706c;
  }
  

  

  .card {
    height: 400px;       
    
  }
  
  .card-img-top {
    height: 200px;        
    object-fit: cover;    
  }
  

/*packages .php*/
.card {
  height: 450px; /* Fixed height */
  display: flex;
  flex-direction: column;
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}

.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-text {
  flex-grow: 1;
  font-size: 0.95rem;
}

.card .btn {
  margin-top: 1rem;
}

html {
  scroll-behavior: smooth;
}


/*hotels*/

.card-img-top {
  height: 200px;            /* Or any fixed height you prefer */
  width: 100%;              /* Make sure it fills the card width */
  object-fit: cover;        /* Ensures proper cropping without distortion */
}

/*explore*/
.blog-card {
  max-height: 300px; /* adjust as needed */
  overflow: hidden;
}

.blog-card img {
  max-height: 250px;
  object-fit: cover;
}

.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-inner img {
  object-fit: cover;
  height: 100%;
  max-height: 400px;
}
.gallery-overlay {
  color: white; /* or your desired text color */
  text-decoration: none;
  cursor: pointer;
}
a {
  text-decoration: none;
}

/*explore page*/
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* full height to stretch */
  min-height: 520px; /* increase if needed */
}

.blog-img {
  height: 240px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.card-text {
  flex-grow: 1; /* allows content to expand */
}


.blog-card {
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-img {
  height: 200px;
  object-fit: cover;
}
h2.fw-bold {
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
}

.package-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.imageSwiper {
  height: 500px;
}

.imageSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.imageSwiper .swiper-slide img.slideshow-img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.imageSwiper .swiper-slide:hover img.slideshow-img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .imageSwiper {
    height: 300px;
  }

  .imageSwiper .swiper-slide img.slideshow-img {
    height: 100%;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #29706c;
}

.swiper-pagination-bullet-active {
  background: #29706c;
}


.card {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

