@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Courgette&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display&display=swap');

:root {
	--gold:        #D4AF37;
	--gold-bright: #F5C842;
	--gold-deep:   #A8881C;
	--gold-glow:   rgba(212,175,55,0.45);
	--gold-soft:   rgba(212,175,55,0.12);
	--black:       #080808;
	--black-soft:  #111111;
	--black-card:  #161616;
	--black-lift:  #1E1E1E;
	--text-light:  #F5E6C8;
	--text-muted:  #8A7A5A;
}

/* ================= GLOBAL ================= */
html, body {
	overflow-x: hidden !important;
	background: var(--black);
	color: var(--text-light);
	font-family: 'Roboto', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
	background: linear-gradient(90deg, #080808 0%, #111111 100%);
	border-bottom: 1px solid var(--gold-deep);
	box-shadow: 0 2px 30px rgba(212,175,55,.25);
}

.navbar .navbar-nav .nav-item .nav-link {
	font-weight: 500;
	font-size: 17px;
	margin: 0 6px;
	color: var(--text-light);
	letter-spacing: .04em;
	transition: .3s;
}

.navbar ul li a:hover,
.navbar-light .navbar-nav .active>.nav-link {
	color: var(--gold-bright) !important;
	text-shadow: 0 0 12px var(--gold-glow);
}

.navbar .dropdown-menu {
	background: var(--black-soft);
	border: 1px solid var(--gold-deep);
	box-shadow: 0 8px 32px rgba(212,175,55,.2);
}

.navbar .dropdown-menu a {
	color: var(--text-light);
	transition: .25s;
}

.navbar .dropdown-menu a:hover {
	background: var(--gold-soft);
	color: var(--gold-bright);
}

/* ================= CAROUSEL ================= */
.carousel-inner {
	max-height: 550px !important;
}

.carousel-caption {
	width: 620px;
	text-align: center;
	top: 38%;
	transform: translateY(-50%);
}

.carousel-caption h1 {
	font-family: 'Courgette';
	font-size: 52px;
	color: var(--gold-bright);
	text-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(212,175,55,.3);
}

.carousel-caption p {
	font-size: 24px;
	color: var(--text-light);
	text-shadow: 0 0 10px rgba(0,0,0,.9);
}

/* ================= SAMBUTAN ================= */
.sambutan h2 {
	text-align: center;
	font-family: 'Courgette';
	color: var(--gold);
	text-shadow: 0 0 14px var(--gold-glow);
}

.sambutan p {
	font-size: 16px;
	line-height: 28px;
	color: var(--text-muted);
}

.sambutan hr {
	width: 50%;
	border: 1px solid var(--gold-deep);
	opacity: .6;
}

.sambutan img {
	border-radius: 50%;
	border: 3px solid var(--gold);
	box-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(212,175,55,.15);
}

@media (max-width: 575px) {
	.sambutan img { height: 150px; }
}

/* ================= BG COVER / SECTION ================= */
.bg-cover {
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;
}

.bg-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(8,8,8,.80);
}

.bg-cover * {
	position: relative;
	z-index: 2;
}

.bg-cover h2 {
	font-family: 'Courgette';
	color: var(--gold-bright);
	text-shadow: 0 0 18px var(--gold-glow);
}

.bg-cover hr {
	border: 1px solid var(--gold-deep);
	opacity: .5;
}

.bg-cover h5 {
	color: var(--text-light);
	text-shadow: 0 0 8px rgba(0,0,0,.8);
}

/* ================= CARD / BERITA ================= */
.card {
	background: linear-gradient(145deg, var(--black-card), var(--black-soft));
	border: 1px solid rgba(212,175,55,.25);
	box-shadow: 0 4px 30px rgba(212,175,55,.08);
	color: var(--text-light);
	transition: border-color .3s, box-shadow .3s;
}

.card:hover {
	border-color: rgba(212,175,55,.6);
	box-shadow: 0 8px 40px rgba(212,175,55,.18);
}

.last-news h2 {
	text-align: center;
	font-family: 'Courgette';
	color: var(--gold);
	text-shadow: 0 0 12px var(--gold-glow);
}

.last-news hr {
	border: 1px solid var(--gold-deep);
	opacity: .5;
}

/* ================= BLOG ================= */
.blog h1 {
	font-family: 'Playfair Display';
	color: var(--gold-bright);
	text-shadow: 0 0 14px var(--gold-glow);
}

.blog .konten {
	font-size: 16px;
	line-height: 30px;
	color: var(--text-muted);
}

/* ================= BANNER ================= */
.jumbotron.banner_area {
	background-attachment: fixed;
	background-size: cover;
	position: relative;
}

.banner_area::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(8,8,8,.75);
}

.banner_area h1 {
	font-family: 'Courgette';
	color: var(--gold-bright);
	text-shadow: 0 0 20px var(--gold-glow), 0 0 50px rgba(212,175,55,.25);
	position: relative;
}

/* ================= PAGINATION ================= */
.page-link {
	color: var(--gold);
	background: transparent;
	border-color: rgba(212,175,55,.35);
	transition: .25s;
}

.page-link:hover {
	color: var(--black);
	background: var(--gold);
	border-color: var(--gold);
}

.page-item.active .page-link {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--black);
	font-weight: 700;
	box-shadow: 0 0 15px var(--gold-glow);
}

/* ================= BUTTON ================= */
.btn-info {
	background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-bright) 100%);
	border: none;
	color: var(--black);
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	transition: .3s;
}

.btn-info:hover {
	background: transparent;
	color: var(--gold-bright);
	border: 1px solid var(--gold);
	box-shadow: 0 0 20px var(--gold-glow);
}

/* ================= DIVIDER / ACCENT LINES ================= */
hr {
	border-color: var(--gold-deep);
	opacity: .4;
}


/* ================= SCROLLBAR ================= */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--black);
}

::-webkit-scrollbar-thumb {
	background: var(--gold-deep);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gold);
}

/* ================= SELECTION ================= */
::selection {
	background: var(--gold-deep);
	color: var(--black);
}
