* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;            
}
body {
	background-color: #1a1a1a;
	color: #ffffff;
	font-family: 'Outfit', sans-serif;
}

h1, h2, h3 {
	font-family: 'Space Grotesk', sans-serif;
}

a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}

/* --- Header & Navigasi --- */
header {
	background-color: #111;
	padding: 20px 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 2px solid #d4af37; /* Warna Emas */
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #d4af37;
  font-family: 'Space Grotesk', sans-serif;
}
nav ul {
	display: flex;
	gap: 20px;
}
nav a {
	font-size: 16px;
	transition: 0.3s;
}
nav a:hover {
	color: #d4af37;
}

/* --- Hero Section (Banner Utama) --- */
.hero {
	height: 90vh;
	background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1470&q=80');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 20px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1;
}
.hero h1 span {
	color: #d4af37;
}
.hero p {
	font-size: 18px;
	margin-bottom: 30px;
	max-width: 600px;
	color: #ccc;
}
.btn-utama {
	background-color: #d4af37;
	color: #111;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 5px;
	transition: 0.3s;
}
.btn-utama:hover {
	background-color: #fff;
	transform: scale(1.05);
}

/* --- Section Umum --- */
section {
  padding: 80px 10%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-title {
	text-align: center;
	margin-bottom: 50px;
}
.section-title h2 {
	font-size: 32px;
	text-transform: uppercase;
	margin-bottom: 10px;  
}
.section-title p {
	color: #888;
}

.bg {
  background: #d4af37;
}

/* --- Tentang Kami --- */
.tentang-content {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.tentang-img {
	flex: 1;
	width: 100%;
}
.tentang-img img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #d4af37;
  object-fit: cover;
  max-height: 400px;
}
.tentang-text {
	flex: 1;
}
.tentang-text h3 {
  margin-bottom: 24px;
}
.tentang-text p {
	margin-bottom: 20px;
	line-height: 1.6;
	color: #ddd;
}

/* --- Layanan & Harga --- */
.layanan-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	text-align: center;
}
.layanan-card {
	background-color: #2a2a2a;
	padding: 30px;
	border-radius: 10px;
	transition: 0.3s;
	border: 1px solid #333;
}
.layanan-card:hover {
	transform: translateY(-10px);
	border-color: #d4af37;
}
.layanan-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #fff;
}
.layanan-card .harga {
	font-size: 28px;
	font-weight: bold;
	color: #d4af37;
	margin-bottom: 15px;
}
.layanan-card p {
	color: #aaa;
	font-size: 14px;
}

/* --- Galeri --- */
.galeri-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}
.galeri-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 5px;
	transition: 0.3s;
}
.galeri-item img:hover {
	opacity: 0.8;
}

/* --- Kontak --- */
.kontak-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	background-color: #2a2a2a;
	padding: 40px;
	border-radius: 10px;
}
.info-kontak h3 {
	margin-bottom: 20px;
	color: #d4af37;
}
.info-item {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.map-container {
	width: 100%;
	height: 300px;
	border-radius: 5px;
	overflow: hidden;
}

/* --- Footer --- */
footer {
	background-color: #111;
	text-align: center;
	padding: 20px;
	margin-top: 0;
	border-top: 1px solid #333;
	font-size: 13px;
	opacity: .5;
}

/* --- Responsif untuk HP --- */
@media (max-width: 768px) {
	header {
		flex-direction: column;
		gap: 10px;
	}
	.hero h1 {
		font-size: 32px;
	}
	.tentang-content {
		flex-direction: column;
	}
}