html {
	position: relative;
	min-height: 100%;
}

body {
	/* Padding top for navbar */
	padding-top: 56px;
	/* Margin bottom for footer height */
	margin-bottom: 60px;
	/* Modern purple gradient background */
	background: linear-gradient(135deg, #4a148c, #1a001f);
	color: #fff;
	font-family: 'Roboto', Arial, sans-serif;
	scroll-behavior: smooth;
}

section {
	padding: 80px 0;
}

img {
	max-width: 100%;
}

pre,
code {
	background: #f8f8f8;
	color: #333;
}

pre {
	border-left: 2px solid #ccc;
	padding: 10px;
}

code {
	display: inline-block;
	padding: 0 0.5em;
	line-height: 1.4em;
	border-radius: 3px;
}

table {
	empty-cells: show;
	border: 1px solid #cbcbcb;
	width: 100%;
	font-size: 0.9em;
	margin-bottom: 1rem;
}

thead {
	background-color: #e0e0e0;
	color: #000;
	text-align: left;
	vertical-align: bottom;
}

tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
}

th,
td {
	padding: 0.5em 1em;
}

h1.title,
h2.title {
	font-size: 2.3rem;
	color: #fff;
}

blockquote {
	padding: 15px 20px;
	margin: 0 0 20px 20px;
	border-left: 5px solid #9a4ffc; /* main theme purple */
	background-color: rgba(154, 79, 252, 0.05); /* faint purple tint */
	color: #2a003f; /* deep purple for good contrast on light bg */
	font-style: italic;
}

.bi {
	margin-right: .5rem !important;
}

/* Paginator */
.paginator {
	margin-top: 20px;
	margin-bottom: 80px;
}

/* Navbar */
.navbar {
	background-color: rgba(26, 0, 31, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 0;
	z-index: 999;
	transition: background-color 0.3s ease;
}

.nav-link {
	font-size: 0.8em;
	color: #ccc !important;
	margin-right: 15px;
	position: relative;
	transition: background-color 0.3s ease, color 0.3s ease;
	padding: 5px 10px;
	border-radius: 5px;
}

.nav-link:hover {
	background-color: #9a4ffc;
	color: #fff !important;
}

img.nav-svg-icon {
	width: 1rem;
	height: 1rem;
	padding-bottom: 2px;
}

/* Footer */
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 0.8em;
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #aaa;
}

.mini-logo {
	height: 22px;
	padding-bottom: 5px;
}

/* Home - Header */
header.welcome {
	padding: 100px 0;
}

/* Home - Page */
section.home-page:nth-child(even) {
	/* Alternate the background color */
	background: rgba(255, 255, 255, 0.1);
}

.page-cover-image {
	background-size: cover;
	background-position: center;
}

.page-description {
	color: #b5b5b5;
	font-style: italic;
}

/* VIDEO EMBED RESPONSIVE */
.video-embed {
	overflow: hidden;
	padding-bottom: 56.25%;
	/* 16:9 */
	position: relative;
	height: 0;
}

.video-embed iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

/* Custom purple button using Bootstrap styling */
.btn-purple {
	background-color: #9a4ffc;
	border-color: #9a4ffc;
	color: #fff;
	padding: 0.5rem 1rem;
	font-weight: 600;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-purple:hover {
	background-color: #7b38d2;
	border-color: #7b38d2;
	transform: translateY(-2px);
}

/* Media query for smaller screens */
@media (max-width: 767px) {
	.navbar-brand {
		font-size: 1rem;
	}

	.nav-link {
		font-size: 0.7em;
	}

	header.welcome {
		padding: 50px 0;
	}

	section {
		padding: 40px 0;
	}
}