/* ============================= */ /* GLOBAL */ /* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #ffffff;
  color: #1a2b33;
  overflow-x: hidden;
  line-height: 1.6;
} /* ============================= */ /* NAVBAR */ /* ============================= */
.navbar.scrolled {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
} /* ============================= */ /* NAVBAR */ /* ============================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 8%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 20px;
  font-weight: 600;
  color: #1a2b33;
} /* Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}
.nav-menu a {
  text-decoration: none;
  color: #6b7c86;
  font-weight: 500;
  transition: 0.3s;
}
.nav-menu a:hover {
  color: #2bb3c0;
} /* Button */
.book-btn {
  background: #2bb3c0;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.book-btn:hover {
  background: #22a3af;
} /* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #1a2b33;
  border-radius: 5px;
  transition: 0.3s;
} /* Mobile */
@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s;
  }
  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
} /* ============================= */ /* HERO */ /* ============================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
} /* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1.5s ease-in-out;
}
.slide.active {
  opacity: 1;
} /* Overlay */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
} /* Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 30px;
} /* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: #2bb3c0;
  color: white;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}
.btn-primary:hover {
  background: #22a3af;
  transform: translateY(-3px);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero {
    height: 85vh;
  }
} 
/* ============================= */
/* MAP SECTION */
/* ============================= */

.maratua-map{
padding:100px 5%;
background:#f7fbfd;
text-align:center;
}

.map-wrapper{
position:relative;
max-width:900px;
margin:auto;
}

.map-bg{
width:100%;
border-radius:20px;
}

/* Marker */

.marker{
position:absolute;
width:48px;
height:48px;
background:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#2bb3c0;
font-size:20px;
box-shadow:0 15px 35px rgba(0,0,0,.15);
cursor:pointer;
transition:.3s;
animation:float 3s ease-in-out infinite;
}

.marker:hover{
transform:scale(1.15);
}

/* Pulse */

.marker::before{
content:"";
position:absolute;
width:100%;
height:100%;
border-radius:50%;
background:#2bb3c0;
opacity:.25;
animation:pulse 2s infinite;
z-index:-1;
}

@keyframes pulse{
0%{transform:scale(1);opacity:.4}
70%{transform:scale(1.8);opacity:0}
100%{transform:scale(1.8);opacity:0}
}

@keyframes float{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-6px)}
}


/* Tooltip */

.tooltip{
position:absolute;
bottom:65px;
left:50%;
transform:translateX(-50%) scale(.9);
background:white;
border-radius:18px;
width:220px;
opacity:0;
pointer-events:none;
transition:.3s ease;
box-shadow:0 25px 50px rgba(0,0,0,.18);
overflow:hidden;
}

.marker.active .tooltip{
opacity:1;
transform:translateX(-50%) scale(1);
pointer-events:auto;
}

.tooltip img{
width:100%;
height:120px;
object-fit:cover;
}

.tooltip h4{
padding:10px 12px 0;
font-size:16px;
}

.tooltip p{
padding:5px 12px;
font-size:13px;
color:#6b7c86;
}

.tooltip a{
display:block;
padding:10px 12px 14px;
color:#2bb3c0;
font-weight:600;
text-decoration:none;
}

.tooltip::after{
content:"";
position:absolute;
bottom:-8px;
left:50%;
transform:translateX(-50%) rotate(45deg);
width:15px;
height:15px;
background:white;
}


/* Positions */

.payung{ top:68%; left:28%; }
.bohesilian{ top:60%; left:50%; }
.aulu{ top:20%; left:40%; }
.harapan{ top:42%; left:38%; }


/* Mobile */

@media(max-width:768px){

.marker{
width:36px;
height:36px;
font-size:16px;
}

.tooltip{
width:170px;
bottom:50px;
}

}


/* RESOPOPSDS */


/* Tablet */

@media (max-width:900px){

.payung{ top:70%; left:26%; }
.bohesilian{ top:62%; left:52%; }
.aulu{ top:22%; left:42%; }
.harapan{ top:44%; left:40%; }

}


/* Mobile */

@media (max-width:768px){

.map-wrapper{
max-width:100%;
}

.marker{
width:34px;
height:34px;
font-size:16px;
}

.tooltip{
width:160px;
bottom:50px;
}

.payung{ top:72%; left:25%; }
.bohesilian{ top:60%; left:55%; }
.aulu{ top:24%; left:45%; }
.harapan{ top:46%; left:42%; }

}


/* Small Mobile */

@media (max-width:480px){

.marker{
width:28px;
height:28px;
font-size:14px;
}

.tooltip{
width:140px;
}

.payung{ top:74%; left:24%; }
.bohesilian{ top:62%; left:56%; }
.aulu{ top:26%; left:46%; }
.harapan{ top:48%; left:44%; }

}







/* DESKRIPTIONS */ /* ============================= */ /* ABOUT MARATUA */ /* ============================= */
.about-maratua {
  padding: 120px 8%;
  background: white;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
} /* Image */
.about-image {
  overflow: hidden;
  border-radius: 20px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}
.about-image:hover img {
  transform: scale(1.08);
} /* Text */
.about-text h2 {
  font-size: 42px;
  color: #1a2b33;
  margin-bottom: 20px;
}
.about-text p {
  color: #6b7c86;
  margin-bottom: 20px;
  line-height: 1.7;
} /* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-text {
    text-align: center;
  }
}
.section-soft {
  background: #f7fbfd;
}
.reverse {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .reverse {
    grid-template-columns: 1fr;
  }
} /* ============================= */ /* VILLAGES */ /* ============================= */
.villages {
  padding: 120px 8%;
  background: white;
  text-align: center;
}
.villages h2 {
  font-size: 42px;
  color: #1a2b33;
  margin-bottom: 60px;
}
.village-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
} /* Card */
.village-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.village-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
} /* Overlay */
.village-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: white;
  transition: 0.4s;
}
.village-overlay h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.village-overlay p {
  opacity: 0.85;
  font-size: 14px;
} /* Hover */
.village-card:hover img {
  transform: scale(1.1);
}
.village-card:hover .village-overlay {
  padding-bottom: 40px;
} /* Responsive */
@media (max-width: 1100px) {
  .village-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .village-grid {
    grid-template-columns: 1fr;
  }
  .village-card {
    height: 280px;
  }
}
.village-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}
.village-card:nth-child(2) {
  animation-delay: 0.2s;
}
.village-card:nth-child(3) {
  animation-delay: 0.4s;
}
.village-card:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} /* ============================= */ /* FEATURED GUEST HOUSES */ /* ============================= */
.featured {
  padding: 120px 8%;
  background: #f7fbfd;
  text-align: center;
}
.featured h2 {
  font-size: 42px;
  color: #1a2b33;
  margin-bottom: 60px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
} /* Card */
.guest-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.guest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
} /* Image */
.guest-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 1s;
}
.guest-card:hover img {
  transform: scale(1.08);
} /* Info */
.guest-info {
  padding: 20px;
  text-align: left;
}
.guest-info h3 {
  color: #1a2b33;
  margin-bottom: 5px;
  font-size: 18px;
}
.location {
  color: #6b7c86;
  font-size: 14px;
  margin-bottom: 15px;
} /* Bottom */
.guest-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  color: #2bb3c0;
  font-weight: 600;
}
.rating {
  color: #ffb400;
  font-size: 14px;
  
} /* Responsive */
@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}
.view-all {
  margin-top: 50px;
}



/* ============================= */
/* SCROLL ANIMATION */
/* ============================= */

/* Scroll Animation */

.fade-up{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}


.explore-maratua{
position:relative;
z-index:1;
}

.map-container{
position:relative;
z-index:2;
overflow:visible;
}

.map-marker{
position:absolute;
z-index:50;
}

.tooltip{
position:absolute;
z-index:9999;
}




@media (max-width:768px){

.payung{
top:72%;
left:25%;
}

.bohesilian{
top:58%;
left:55%;
}

.aulu{
top:22%;
left:45%;
}

.harapan{
top:45%;
left:42%;
}

}

.map-container{
position:relative;
width:100%;
max-width:900px;
margin:auto;
}

.map-image{
width:100%;
height:auto;
display:block;
}