

.hero-header {
    position: relative;
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    font-family: "Cinzel", serif;
	font-size:16px;
}

.hero-header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* macam background-size: cover */
    z-index: -1; /* letak belakang overlay + text */
}


/* Gelapkan gambar supaya teks lebih jelas */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

/* Teks besar gold */
.hero-title {
    position: relative;
    font-size: 55px;
    color: #f5d479; /* Gold */
    text-shadow: 2px 2px 6px black;
    font-weight: 800;
    letter-spacing: 3px;
}

/* Sub-title kecil */
.hero-subtitle {
    position: relative;
    font-size: 20px;
    color: #fff3c4;
    margin-top: 10px;
    text-shadow: 1px 1px 4px black;
}


/* Container for boxes */
.container {
    width: 90%;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

/* Individual box style */
.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;

}
.box{
	 border: 1px solid black;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* Dropbox style*/
body {
  margin: 0;
  padding: 0;
}

h2, p {
  margin: 10px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #38444d;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #38444d;
  
  display: flex;
  justify-content: center; /* pusatkan menu */
  align-items: center;
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size:16px;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #111111;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

.gold-footer {
    background: #2b2b2b;
    color: #f5d479;
    padding: 40px 0 20px;
    margin-top: 40px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
}

.footer-container h3, .footer-container h4 {
    color: #f5d479;
    margin-bottom: 15px;
}

.footer-about, .footer-links, .footer-contact {
    width: 30%;
    min-width: 200px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    padding: 5px 0;

.footer-links a {
    color: #fff6d1;
    text-decoration: none;
}

.footer-links a:hover {
    color: #f5d479;
}

.footer-contact i {
    margin-right: 8px;
    color: #f5d479;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #fff7dd;
    border-top: 1px solid #444;
    margin-top: 20px;
}