html {
	font-size: 14px;
	scroll-behavior: smooth;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

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

body {
	margin-bottom: 0;
	background-color: #f8f9fa;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
	color: var(--bs-secondary-color);
	text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
	text-align: start;
}

/* Custom Styles for Personal Homepage */

.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 0 !important;
}

.section-title {
	font-weight: bold;
	color: #333;
	border-bottom: 3px solid #667eea;
	padding-bottom: 10px;
	display: inline-block;
}

.social-links a {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.card {
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.badge {
	font-weight: normal;
}

.navbar {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
	animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
