* {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-size: 15px;
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  margin: 0px;
  padding: 0px;
}
.layar-dalam {
  width: 1000px;
  margin: auto;
}
.layar-penuh {
  width: 100%;
}

/* --- NAVIGASI --- */
nav {
  z-index: 1000;
  background-color: #fff; 
  text-align: center;
  position: fixed;
  border-bottom: 1px solid #e0e0e0;
  height: 65px;
  width: 100%;
  top: 0;
}
nav .logo {
  float: left;
  line-height: 60px;
}
nav .logo img {
  vertical-align: middle;
  width: 150px;
}
nav .menu {
  float: right;
  height: 65px;
}
nav .menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex; /* Menggunakan flex agar menu berjejer ke samping di desktop */
}
nav .menu ul li {
  line-height: 65px;
}
nav ul li a {
  color: #333; 
  font-weight: bold;
  padding: 0px 16px;
  text-decoration: none;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #2c78c0;
}

/* --- HEADER & VIDEO --- */
header {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
header video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -2;
}
header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 50%;
  z-index: -1;
}
header .intro {
  color: #fff;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}
header .intro h3 {
  font-size: clamp(28px, 6vw, 60px); 
  margin: 0;
  padding: 0 20px;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
header .intro p {
  font-size: clamp(14px, 2vw, 18px);
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
  line-height: 1.6;
}

/* --- TOMBOL JELAJAHI --- */
.tombol-jelajahi {
  display: inline-block;
  padding: 15px 40px;
  background-color: #3285e4;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  border-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tombol-jelajahi:hover {
  background-color: #fff;
  color: #3285e4;
  transform: translateY(-5px);
}

/* --- FOOTER --- */
footer {
  padding: 15px 0;
  background-color: #222;
  color: #fff;
}
footer .copyright {
  width: 100%;
  border-top: 1px solid #444;
  text-align: center;
  padding-top: 10px;
  font-weight: 300; 
  font-size: 13px;
  color: #bbb;
}

/* --- RESPONSIVE MOBILE --- */
.tombol-menu {
  display: none;
  position: absolute;
  top: 22px;
  right: 20px;
  flex-direction: column;
  width: 25px;
  cursor: pointer;
}
.tombol-menu .garis {
  height: 3px;
  background-color: #333;
  margin-bottom: 4px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .layar-dalam { width: 90%; }
  nav .menu ul {
    display: none;
    flex-direction: column; /* Menu bertumpuk ke bawah di mobile */
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
  nav .menu ul li { line-height: 50px; }
  .tombol-menu { display: flex; }
}

/* --- HALAMAN ABOUT US --- */
.about-section {
  padding: 120px 0 80px 0; /* Padding atas besar agar tidak tertutup navbar */
  background-color: #f9f9f9;
  min-height: 80vh;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 35px;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.about-text h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #3285e4; /* Warna biru sesuai tombol jelajahi */
  margin-top: 10px;
}

.about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive About Us */
@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-text h3::after {
    margin: 10px auto;
  }
  
  .about-section {
    padding: 100px 20px 50px 20px;
  }
}
.about-image img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05); /* Gambar sedikit membesar saat disentuh */
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
section.quote {
  background: url("asset/bg-jmp.jpg") no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-style: italic;
  padding: 100px;
}
section.quote .layar-dalam p {
  display: inline;
  background: url("asset/quote-icon.png") no-repeat;
  padding: 40px;
}

/* --- HALAMAN BUDAYA --- */
.header-budaya {
  height: 60vh;
  background-image: url('asset/budaya\ \(2\).jpeg'); /* Ganti dengan gambar budaya Maluku */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.budaya-section {
  padding: 80px 0;
}

.abu-abu {
  background-color: #f4f4f4;
}

.judul-budaya {
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.grid-budaya {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.item-budaya {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
}

.item-budaya img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.item-budaya h4 {
  margin: 20px 0 10px;
  font-size: 20px;
  color: #225a8f;
}

.item-budaya p {
  padding: 0 20px;
  color: #666;
  font-size: 14px;
}

/* Layout Rumah Adat Single */
.grid-budaya-single {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.grid-budaya-single img {
  width: 50%;
  border-radius: 10px;
}

.text-single h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #225a8f;
}

/* Responsive Mobile */
@media screen and (max-width: 768px) {
  .grid-budaya-single {
    flex-direction: column;
  }
  .grid-budaya-single img {
    width: 100%;
  }
}