* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
}

/* HERO */
.hero {
  height: 100vh;
  background-image: url(https://scontent.fpnh26-1.fna.fbcdn.net/v/t39.30808-6/476642167_1265665371651154_2139622390238189081_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=cc71e4&_nc_ohc=pAtYJXrPhJIQ7kNvwEAInGt&_nc_oc=AdltfRtB5wzh-8CUMq4ZU-KxfreQdN9rf8fLP9Mte5vXLKq3pHh-pghAVH_B0_j2xxg&_nc_zt=23&_nc_ht=scontent.fpnh26-1.fna&_nc_gid=9bevo8-2BxP2S0JTqNHc5Q&oh=00_Afr_VIqCv_QoaWSZ_gkJoUKPBGk3MuICj9MH_rQnkdox2Q&oe=697F9EF7); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


.hero-overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

.hero p {
  margin: 15px 0;
  font-size: 1.2rem;
}

.btn {
  background: #ff6b4a;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 30px;
}

/* SECTIONS */
.subpage-nav {
  padding: 40px 20px;
}

.sub-nav {
  display: flex;
  justify-content: center;   /* ⬅️ KUNCI UTAMA */
  gap: 12px;
  flex-wrap: wrap;
}

.sub-nav a {
  background: #111;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.sub-nav a:hover {
  background: #ff6b4a;
}


.sub-nav button:hover {
  background: #ff6b4a;
}


section {
  padding: 70px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* ABOUT */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* TAGS */
.tags {
  background: #f5f5f5;
}

.tags .container span {
  display: inline-block;
  margin: 8px;
  padding: 8px 18px;
  background: #222;
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* GALLERY */
.gallery {
  background: #111;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-box {
  background: #ff6b4a;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  font-weight: bold;
}

/* LOCATION */
.map iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  margin-top: 20px;
}

/* FOOTER */
.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 25px;
}

.footer a {
  color: #ff6b4a;
  text-decoration: none;
}
