@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
	width: 100%;
	min-height: 100dvh;
	overflow-x: hidden;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #333;
}

body #gradient-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	--gradient-color-1: #1a3a5c;
	/* Deep Navy */
	--gradient-color-2: #2980b9;
	/* Sky Blue */
	--gradient-color-3: #4a90d9;
	/* Soft Blue */
	--gradient-color-4: #6dd5ed;
	/* Light Cyan */
	z-index: -1;
}

.glass-panel {
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(14px) saturate(180%);
	-webkit-backdrop-filter: blur(14px) saturate(180%);
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
	padding: 18px;
}

body main {
	width: 100%;
	min-height: 100dvh;
	height: 100%;
}

/* ===== NAVBAR ===== */
.navbar-glass {
	background: rgba(26, 58, 92, 0.6);
	backdrop-filter: blur(14px) saturate(180%);
	-webkit-backdrop-filter: blur(14px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

body main header {
	padding: 10px 0;
	width: 100%;
}

body main header .logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

body main header .logo img {
	height: 40px;
	margin-right: 10px;
}

body main header .logo .text {
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

body main header .logo .text h1 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1.2;
}

body main header .logo .text p {
	margin: 0;
	font-weight: 500;
	font-size: 13px;
	opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer-glass {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(14px) saturate(180%);
	-webkit-backdrop-filter: blur(14px) saturate(180%);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hover-lift:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ===== HERO / BODY SECTION ===== */
body main section.body {
	padding: 20px 0;
	overflow-y: auto;
	display: block;
}

body main section.body .intro h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.7;
}

body main section.body .intro h1 {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.25;
}

body main section.body .intro p {
	font-size: 15px;
	margin: 0;
	text-align: justify;
	line-height: 1.6;
}

body main section.body .poster {
	text-align: center;
}

body main section.body .poster img {
	width: 100%;
	max-width: 240px;
	height: auto;
}

/* ===== MENU GRID ===== */
body main section.body .menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

body main section.body .menu-list li {
	margin-bottom: 10px;
}

body main section.body .menu-list li .btn-list {
	width: 100%;
	min-width: 200px;
	background-color: rgba(41, 128, 185, 0.85);
	backdrop-filter: blur(5px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	padding: 10px 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	transition: all 0.22s ease;
}

body main section.body .menu-list li .btn-list:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

body main section.body .menu-list li .btn-list,
body main section.body .menu-list li .btn-list span.icon {
	display: flex;
	align-items: center;
}

body main section.body .menu-list li .btn-list span.icon {
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
	height: 40px;
	width: 40px;
	justify-content: center;
	border-radius: 10px;
	margin-right: 12px;
	font-size: 17px;
}

body main section.body .menu-list li .btn-list h2 {
	margin: 0;
	font-size: 15px;
	color: #fff;
	font-weight: 600;
}

/* ===== CARD STYLES ===== */
body main section.body .card h1.title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
}

body main section.body .card p {
	font-size: 15px;
	text-align: justify;
	line-height: 1.6;
}

body main section.body .card ul.contact-list {
	padding-left: 0;
	margin: 0;
	list-style: none;
}

body main section.body .card ul.contact-list li {
	margin-bottom: 6px;
	padding-left: 28px;
	position: relative;
	font-size: 15px;
}

body main section.body .card ul.contact-list li i {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 15px;
}

body main section.body .card.borderless {
	background: #fff;
	padding: 20px;
	border-radius: 14px;
	border: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ===== REGISTRATION PAGE ===== */
body main section.page-register .main-nav .nav-link {
	width: 100%;
	border-radius: 10px;
	padding: 10px 12px;
	margin-bottom: 8px;
	line-height: 1.4;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	font-size: 14px;
}

body main section.page-register .main-nav .nav-link,
body main section.page-register .main-nav .nav-link span {
	display: flex;
	align-items: center;
}

body main section.page-register .main-nav .nav-link span {
	margin-right: 8px;
	color: #c5da7a;
	background: #171717;
	height: 30px;
	width: 30px;
	justify-content: center;
	border-radius: 8px;
	font-size: 13px;
}

body main section.page-register .main-nav .nav-link p {
	margin: 0;
	width: calc(100% - 45px);
	font-weight: 700;
	color: #139ac9;
	font-size: 14px;
}

body main section.page-register .main-nav .nav-link.active {
	background: #139ac9;
}

body main section.page-register .main-nav .nav-link.active p {
	color: #fff;
}

body main section.page-register .main-tab-content {
	background: #fff;
	padding: 20px;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

body main section.page-register .main-tab-content .tab-pane .card {
	border: none;
}

body main section.page-register .main-tab-content .tab-pane .card h1.title {
	font-size: 20px;
	font-weight: 700 !important;
	margin-bottom: 12px;
}

body main section.page-register .main-tab-content .tab-pane .card p.description {
	font-size: 14px !important;
}

body main section.page-register .main-tab-content .tab-pane .nav-tabs {
	border: none;
}

body main section.page-register .main-tab-content .tab-pane .nav-tabs .nav-link {
	border: none;
	color: #139ac9;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 0;
	border-radius: 6px;
	padding: 6px 14px;
}

body main section.page-register .main-tab-content .tab-pane .nav-tabs .nav-link.active {
	background: #139ac9;
	color: #c5da7a;
}

body main section.page-register .main-tab-content .tab-pane .sub-tab-content {
	padding: 14px 0;
}

body main section.page-register .main-tab-content .tab-pane .sub-tab-content .tab-pane .card {
	font-size: 14px;
}

/* ===== MODAL ===== */
.modal .modal-dialog .modal-content {
	background: #fff;
	border-radius: 14px;
	border: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
	.glass-panel {
		padding: 14px;
		border-radius: 12px;
	}

	body main section.body .intro h1 {
		font-size: 22px;
	}

	body main section.body .intro p {
		font-size: 14px;
	}

	body main section.body .card.borderless {
		padding: 16px;
	}

	body main section.page-register .main-tab-content {
		padding: 14px;
	}

	.footer-glass h5 {
		font-size: 16px !important;
	}

	.footer-glass p {
		font-size: 13px !important;
	}
}