/* ================= RESET ================= */
html, body{
  margin:0;
  padding:0;
  background:#ffffff;
  color:#111;
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
}

/* ================= HERO ================= */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 20px;
  background:#ffffff;
}

/* ================= CONTENT ================= */
.content{
  max-width:600px;
  margin:auto;
}

/* ================= LOGO ================= */
.logo{
  width:80px;
  border-radius:50%;
  border:2px solid #D4AF37;
  background:white;
  padding:5px;
}

/* ================= TEXT ================= */
h1{
  font-size:clamp(26px,6vw,38px);
  line-height:1.3;
  color:#C8102E;
}

h2{
  font-size:clamp(20px,5vw,26px);
}

h3{
  font-size:clamp(14px,3.5vw,18px);
}

p{
  font-size:clamp(16px,4vw,18px);
  line-height:1.7;
}

.bullet{
  list-style:none;
  padding:0;
  line-height:1.8;
  color:#333;
}

/* ================= BUTTON ================= */
.btn{
  background:linear-gradient(135deg,#C8102E,#D4AF37);
  padding:12px 24px;
  border-radius:8px;
  color:white;
  text-decoration:none;
  display:inline-block;
  margin:8px;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ================= SECTION ================= */
.section{
  padding:80px 20px;
  text-align:center;
  background:white;

  /* pastikan tak hilang */
  opacity:1;
  transform:none;
  filter:none;
}

/* ALT BACKGROUND */
.section:nth-child(even){
  background:#f7f7f7;
}

/* ================= MEDIA ================= */
.media{
  width:100%;
  max-width:500px;
  border-radius:12px;
  margin-top:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ================= VIDEO ================= */
.video{
  position:relative;
  width:100%;
  max-width:400px;
  margin:25px auto;
  cursor:pointer;
  overflow:hidden;
  border-radius:14px;
}

/* THUMB */
.thumb{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

/* PLAY BUTTON */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:#C8102E;
  color:white;
  font-size:22px;
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  transition:0.3s;
}

.video:hover .play-btn{
  transform:translate(-50%,-50%) scale(1.1);
  background:#D4AF37;
}

/* ================= CARD ================= */
.card{
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  margin-top:20px;
}

/* ================= HIGHLIGHT ================= */
.highlight{
  background:linear-gradient(135deg,#C8102E,#D4AF37);
  color:white;
  padding:20px;
  border-radius:12px;
  margin-top:20px;
}

/* ================= DIVIDER ================= */
.divider{
  width:60px;
  height:4px;
  background:linear-gradient(90deg,#C8102E,#D4AF37);
  margin:20px auto;
  border-radius:10px;
}

/* ================= POPUP ================= */
.popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:black;
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* ================= WHATSAPP ================= */
.wa{
  position:fixed;
  bottom:20px;
  right:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.wa img{
  width:26px;
  height:26px;
}

.wa:hover{
  transform:scale(1.08);
}
.hero{
  position:relative;
  overflow:hidden;
  color:white;
}

.hero-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:url("assets/emas-bg.jpg") center/cover no-repeat;

  z-index:0;
}

/* dark overlay supaya text nampak */
.hero-bg::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
}

/* content atas */
.hero .content{
  position:relative;
  z-index:1;
}

/* text putih semua dalam hero */
.hero h1,
.hero h3,
.hero p,
.hero li{
  color:white;
}

/* bullet lebih jelas */
.hero .bullet li{
  color:#f1f1f1;
}
/* ================= GOLD SECTION ================= */
.section-gold{
  position:relative;
  overflow:hidden;
}

.section-gold::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:url("assets/bg-full.jpg") center/cover no-repeat;

  opacity:0.25; /* penting: jangan kuat */
  z-index:0;
}

/* lapisan putih supaya text clear */
.section-gold::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:rgba(255,255,255,0.9);
  z-index:0;
}

/* content atas */
.section-gold *{
  position:relative;
  z-index:1;
}
body{
  background:url("assets/bg-full.jpg") center/cover fixed;
}
.gallery.full {
  width: 100%;
}

.gallery.full img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 12px;
}

/* gambar yang nak full ikut saiz asal */
.gallery.full img.free {
  aspect-ratio: auto; /* 🔥 INI PENTING */
  height: auto;
}