body{
  font-family: 'Poppins';  
  background-color: #38422b;
  margin: 0;
}

/* Navigation */
.navbar {
  height: 68px;
  background-color: #ccd5c0;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  z-index: 2;
}

.nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative; 
}

.container-navbar {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.navbar ul {
  margin-right: 38px;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar li a {
	display: block;
  color: #38422b;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar li a:hover {
  color: #6e7753; 
}

.navbar li a.tab {
  font-weight: bold;
}

.navbar img{
  width: 250px;
  height: 70px;
}

/* Hamburger menu styles */
.menu-button {
  display: none; /* Hide the button by default on larger screens */
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px; /* Adjust as needed */
  z-index: 3; /* Ensure the button is above the menu */
}

.menu-button i {
  color: #38422b;
  cursor: pointer;
  display: block;
  font-size: 35px;
}

/* Styles for smaller screens */
@media screen and (max-width: 868px) {
  .navbar ul {
    display: none; /* Hide the menu by default on smaller screens */
  }

  .menu-button {
    display: block; /* Show the button on smaller screens */
  }

  .navbar ul.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50px; /* Adjust as needed */
    right: -40px;
    padding: 0;
    background-color: #ccd5c0;
  }

  .navbar li {
    margin: 0;
  }

  .navbar li a {
    padding: 10px 20px; /* Adjust as needed */
  }
}

.tab{
	cursor: pointer;
	margin-right: 20px;
}

.home-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 110vh; 
  overflow: hidden;
  z-index: 1;
  color: white;
  margin: auto;
}


.hero__heading {
  max-width: 900px;
  margin: 0 auto 24px; 
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1;
  text-align: center; 
}

@media screen and (max-width: 768px) {
  .hero__heading {
    font-size: 60px; /* Adjust as needed for smaller screens */
  }
}

.home-type-body-large {
  text-align: center; 
  font-weight: 500;
  margin-top: -20px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 20px;
  text-align: center; /* Center the text */
  padding: 0;
  width: 80%;
  right: -5%;
}

.dropdown-menu li:hover {
  background-color: #ccd5c0;
  border-radius: 0; /* No border-radius on hover for middle items */
}

.dropdown-menu li:first-child:hover {
  border-radius: 20px 20px 0 0; /* top-left, top-right rounded, bottom-left, bottom-right square */
}

.dropdown-menu li:last-child:hover {
  border-radius: 0 0 20px 20px; /* top-left, top-right square, bottom-left, bottom-right rounded */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown:not(:hover) .dropdown-menu {
  display: none;
}

/* SEARCHING */
.nav-v2-search {
  display: flex;
  justify-content: center;
}

.search-container {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.596);
  border: 1px solid #ccc; /* Border for the oval shape */
  border-radius: 25px; /* Adjust the border-radius for the oval shape */
  padding: 5px;
  margin-top: 15px;
  width: 360px;
}

.search-container i {
  margin-left: 20px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  
}

.nav-v2-search__input {
  background-color: transparent;
  padding: 8px;
  border: none;
  font-size: 14px;
  outline: none;
  width: 100%; 
  color: black;
  font-family: Poppins; 
}

.nav-v2-search__input::placeholder {
  font-family: Poppins; 
  font-size: 14px; /* Adjust the font size if needed */
  color: #000000b4;
}

/* RESULTS LIST */
.search-result{
  background-color: white;
  border: 1px solid #ccc;
  width: 360px;
  overflow-y: auto; /* Enable vertical scrollbar */
  max-height: 180px; /* Set a fixed height */
  display: none;
  margin-top: 10px;
}

#resultsList {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#resultsList li {
  color: gray;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#resultsList li:hover {
  color: black;
}

#resultsList .highlight {
  background-color: rgba(63, 226, 41, 0.308); 
  font-weight: bold;
}

/* slider */
.banner{
  width: 100%;
  height: 120vh;
  position: relative;
  overflow: hidden;
}
.slider{
  width: 100%;
  height: 120vh;
  position: relative; 
  overflow: hidden;
}
#sliderImg {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.overlay{
  width: 100%;
  height: 120vh;
  background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3));
  position: absolute;
  top: 0;
}

/* GALLERY */
.gallery-about {
  margin-top: 20px;
  height: auto;
}

.thumb {
  display: inline-block;
}

.page-top {
  margin-top: 85px;
}

img.zoom {
  object-fit: cover;
  transition: all .3s ease-in-out;
}
        
.transition {
  transform: scale(1.2);
}

.modal-header {
  border-bottom: none;
}

.modal-title {
  color:#000;
}

.modal-footer{
  display:none;  
}

.fancybox .fancybox-inner {
  width: auto !important;
}

/* Adjust the image width */
.fancybox img {
  width: 250px !important;
  height: 150px !important;
}

@media only screen and (max-width: 768px) {
  .fancybox img {
    width: 100% !important; /* Set width to 100% on screens up to 768px */
    height: auto !important; /* Maintain aspect ratio */
  }
}

/* INTERACTIVE MAP*/
#map {
  height: 550px;
  width: 95%;
  z-index: 1;
  margin: 0 auto;
  display: flex;
}

.popup-content {
  width: 280px; /* Set the desired width */
  position: relative  !important;
  margin-bottom: -50px;
  margin-top: -15px;
  margin-left: -21px;
  margin-right: -26px;
}

.popup-image {
  width: 100%; /* Ensure the image takes 100% of the container width */
  height: 130px;
  object-fit: cover;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.map-text{
  font-size: 12px !important;
  text-align: justify;
  padding: 0px 15px;
  font-family: 'Poppins' !important; 
}

.popup-content h3{
  padding: 10px 10px 0px 10px;
  margin-top: -5px;
  font-family: 'Poppins' !important; 
}

.popup-content a{
  color: black !important;
  text-decoration: none !important;
}

.popup-content a:hover{
  color: gray !important;
}

/* DESTINATIONS OVERVIEW */
.cities-town{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.cities-town .slider-content {
  min-height: 100%;
  max-height: 100%;
  position: relative;
  margin-top: -80px;
  background-color: #f3f7fa;
  border-radius: 23px;
  padding: 30px 60px 60px 60px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
}

/* CONTENT SA WHITE */
.cities-town hr {
  border: 2px solid #38422b; 
  margin: 30px 0; 
  margin-top: -20px;
}

.hr-cebu {
  border: 2px solid #38422b; 
  margin: 3px 0; 
  margin-top: -20px;
}

/* Make "Destinations" bold */
.cities-town p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 50px;
}

/* Responsive styles */
@media screen and (max-width: 668px) {
  .cities-town p {
    font-size: 30px;
  }
}

.cities-town strong{
  font-weight: 900;
}

/* CEBUU DESCRIPTION */
.cebu-description {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left-div {
  flex: 1;
  padding: 20px;
  text-align: justify;
}

.right-div {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.gallery-about {
	margin-top: 20px;
	height: auto;
  text-align: center;
}

.gallery-about img {
	width: 100%; /* Adjust as needed */
  max-width: 250px;
	height: 150px;
	border-radius: 5%;
	object-fit: cover; 
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .cebu-description {
    flex-direction: column;
  }

  .right-div {
    flex: 1;
    margin-top: 20px; /* Adjust margin as needed */
  }

  .gallery-about img {
    max-width: 100%; /* Adjust as needed */
  }

  #map {
    height: 300px; /* Adjust height as needed for smaller screens */
  }
}
/* .gmap_canvas {
  margin-top: 40px;
  overflow: hidden;
  background: none !important;
  height: 600px; 
  width: 1050px; 
} */

/* CAROUSEL */
.container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
  margin-top: -20px;
}
.slide-container {
  margin: 0 30px;
  overflow: hidden;
}

.cards {
  background: #ccd5c0;
  border-radius: 8px;
  height: auto;
  /* width: 240px !important; */
}

.cards .image-box {
  height: 200px;
}

.cards .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.cards .details {
  display: flex;
  align-items: center; 
  column-gap: 12px;
  padding: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.details .spot {
  font-size: 16px;
  font-weight: 900;
  margin-top: 0px;
}

.details .description {
  font-size: 14px;
  font-weight: 500;
  color: #4d4d4d;
  text-align: justify;
}

.swiper-navBtn {
  color: white;
  height: 40px;
  width: 40px;
  background: #6e7753;
  border-radius: 50%;
  margin-top: 4%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
}
/* view more button */
.view-button {
  position: absolute;
  bottom: 20px; /* Adjust the distance from the bottom as needed */
  left: 50%;
  transform: translateX(-50%);
}

.view-button a {
  display: inline-block;
  padding: 7px 18px; 
  font-size: 14px;
  text-decoration: none;
  color: #fff; 
  background-color: #6e7753; 
  border-radius: 20px; 
  transition: background-color 0.3s ease;
}

.view-button a:hover {
  background-color: #9aa581; 
}

/* view all destination */
.destination-button {
  text-align: center; 
  display: flex; 
  align-items: center;
  justify-content: center; 
  margin: 15px;
}

.destination-button a {
  display: inline-block;
  padding: 13px 25px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  background-color: #38422b;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.destination-button a:hover {
  background-color: #9aa581;
}

/* Footer */
.imgbelow {
  position: relative;
  width: 100%;
  height: 98vh;
  overflow: hidden;
  margin-top: 10vh;
}

.text-container {
  position: absolute;
  top: 20%;
  text-align: left;
  color: white;
  z-index: 1;
  margin-left: 30px;
  width: 60%;
}

.text-container h1{
  max-width: 900px;
  margin: 0 0 24px; 
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1;
}

.sub-description{
  text-align: left; 
  font-weight: 500;
  margin-top: -20px;
  font-size: 25px;
}

.imgbelow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); /* Adjust the colors and opacity as needed */
}

.imgbelow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .text-container {
    width: 70%;
    margin-left: 10px;
  }

  .text-container h1 {
    font-size: 70px; /* Adjust as needed for smaller screens */
  }

  .sub-description {
    font-size: 20px; /* Adjust as needed for smaller screens */
  }
}

/* footer(real) */
footer {
  background-color: #6e7753;
  text-align: center;
  padding: 25px 0;
}

.footer-description {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left-div-footer {
  flex: 0.4;
  padding: 20px;
  text-align: justify;
}

.right-div-footer {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.left-div-footer img{
  width: 103%;
  margin-top: -30px;
  margin-left: -15px;
}

.footer-contact {
  margin-top: 30px; 
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  display: flex;
}

.footer-contact ul li {
  margin-right: 20px; 
}

.footer-contact a {
  text-decoration: none;
  color: inherit;
}

.fab {
  font-size: 30px; 
}

.footer-description ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: -15px;  
}

.footer-description a {
  color: black; /* Set link color */
  text-decoration: none; 
}

.footer-description li a:hover {
  color: #9aa581; /* Adjust the color when the link is hovered */
}

.footer-description p{
  font-family: 'Poppins'; 
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}

.footer-content {
  align-items: center;
  padding: 0 20px; 

}

.copyright-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-right: 20px;
}
