* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #2b2b2b;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
}
/* HERO TITLE BACKGROUND */
.hero-title-bg {
  width: 100%;
  min-height: 65vh;
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSzz1eW76RSJuqigSh9grgYXVV1PwJTTl5_Pw&s"); /* ganti sesuai nama file */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
}

/* overlay tipis biar teks kebaca */
.hero-title-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75); /* bisa digelapin kalau mau */
}

/* isi teks */
.hero-title-inner {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-title-inner h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.3;
  color: #8b6a42; /* coklat elegan */
  margin: 0;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e6dfd4;
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-weight: bold;
  color: #7b5a34;
}

.nav a {
  margin: 0 8px;
  text-decoration: none;
  color: #7b5a34;
  font-size: 14px;
}

.btn-login {
  border: 1px solid #7b5a34;
  padding: 6px 14px;
  text-decoration: none;
  color: #7b5a34;
}

/* HERO */
.hero {
  height: 70vh;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.hero-content h1 {
  font-size: 48px;
  color: #8b6a42;
  margin-bottom: 40px;
}

/* SECTION 2 */
.section-2 {
  padding: 50px 0;
  text-align: center;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: 14px;
}

.subnav a {
  margin: 0 10px;
  text-decoration: none;
  color: #7b5a34;
  font-size: 14px;
}

.subnav .rtl {
  direction: rtl;
}

.big-banner {
  margin: 20px auto;
  width: 100%;
  max-width: 980px;
  height: 360px;
  background: url("../img/section2-bg.jpg") center/cover no-repeat;
  border: 1px solid #e6dfd4;
}

/* SECTION 3 */
.section-3 {
  background: #f6f3ec;
  padding: 70px 0;
}

.s3-top-image {
  width: 120px;
  height: 20px;
  margin: 0 auto 20px;
  background: url("../img/section3-top.png") center/contain no-repeat;
}

.section-3 h2 {
  color: #7b5a34;
  font-size: 34px;
  margin-bottom: 14px;
}

.section-3 p {
  max-width: 340px;
  font-size: 13px;
  margin-bottom: 24px;
}

.btn-outline {
  border: 1px solid #7b5a34;
  padding: 10px 22px;
  text-decoration: none;
  color: #7b5a34;
  font-size: 12px;
}

/* FOOTER */
.footer {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}
