:root {
	--black: #000000;
	--white: #ffffff;
	--gold: #ffe541;
	--dark-brown: #320b0b;
	--red-brown: #520000;
	--font-serif-display: "DM Serif Display", serif;
	--font-serif-text: "DM Serif Text", serif;
	--font-quicksand: "Quicksand", sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-quicksand);
	/* background-color: var(--white); */
	color: var(--black);
	line-height: 1.6;
}

.content-wrapper {
	position: relative;
}

.content-wrapper::before {
	content: "";
	position: absolute;
	inset: 0; /* top:0, right:0, bottom:0, left:0 */
	background-image: url("/assets/img/3.jpg");
	background-repeat: repeat; /* biar motifnya nyambung */
	background-size: auto; /* atau 'contain' kalau mau skalanya fix */
	opacity: 0.08; /* transparansi */
	z-index: -1; /* di bawah konten */
}

/* HEADER SECTION */
.header-section {
	position: relative;
	width: 100%;
	height: 120vh;
	background-color: var(--dark-brown);
	overflow: hidden;
}

.header-section img.bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* Overlay hitam transparan */
.header-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4); /* 0.4 = agak gelap */
	z-index: 1;
}

.my-navbar {
	background-color: transparent;
	transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.my-navbar.scrolled {
	background-color: rgba(74, 43, 30, 0.7); /* putih transparan */
	backdrop-filter: blur(10px); /* efek blur belakang */
	-webkit-backdrop-filter: blur(10px); /* untuk Safari */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.brand-text {
	font-size: 20px;
	color: white;
	font-family: 'DM Serif Text', serif;
}

.navbar-nav .nav-link {
	color: white;
	font-size: 18px;
	font-family: 'DM Serif Text', serif;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	letter-spacing: 0.2px;
	transition: opacity 0.3s ease;
}

.my-navbar.scrolled .nav-link {
	color: white;
}

.nav-link:hover {
	opacity: 0.8;
}

.my-navbar .nav-link:focus,
.my-navbar .nav-link:active,
.my-navbar .nav-link.show {
	color: white !important;
}


.hero-content {
	position: absolute;
	top: 37vh;
	z-index: 2;
	color: white;
	max-width: 700px;
}

.hero-content h1 {
	font-size: 64px;
	font-family: var(--font-serif-text);
	font-weight: 400;
	margin: 0;
	line-height: 1.1;
}

.hero-content h2 {
	font-size: 32px;
	font-family: var(--font-serif-text);
	font-weight: 400;
	color: white;
	margin: 16px 0 24px 0;
	line-height: 1.2;
}

.hero-description {
	font-size: 14px;
	font-family: var(--font-quicksand);
	font-weight: 400;
	line-height: 1.7;
	margin: 0;
	opacity: 0.95;
}

.gradient-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
	z-index: 2; /* pastikan di atas gambar */
}

/* FOOTER SECTION */
  footer {
      background: linear-gradient(to bottom, #ffffff 0%, #000000 15%);
      color: white;
      font-family: 'Quicksand', sans-serif;
      padding: 40px 0 10px;
    }

    .footer-logo img {
      max-width: 130px;
	  width: 100%;
    }

    .footer-logo h4 {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      letter-spacing: 5px;
      font-weight: bold;
    }

    .footer-logo p {
      margin: 5px 0 0;
      font-size: 14px;
    }

    footer h5 {
      font-weight: bold;
      font-size: 16px;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer ul li {
      margin-bottom: 6px;
    }

    footer ul li a {
      text-decoration: none;
      color: #fff;
      transition: 0.3s;
    }

    footer ul li a:hover {
      color: #ddd;
    }

    .footer-bottom {
      border-top: 1px solid #fff;
      margin-top: 20px;
      padding-top: 10px;
      font-size: 14px;
    }

    .footer-icons a {
      color: white;
      font-size: 20px;
      margin-left: 15px;
      transition: 0.3s;
    }

    .footer-icons a:hover {
      color: #ccc;
    }
