/*****************************************************************************/
/* Global settings - common elements                                         */
/*****************************************************************************/
html {
	scroll-behavior: smooth;
}

body {
	font-family: Inter, sans-serif;
	/* font-family: Arial, sans-serif; */
	color: black;
	width: 100%;
	font-size: 20px;
}

h1 {
	font-size: 4rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

.section-title {
	text-align: center;
	margin-top: 1rem;
	line-height: 1.75;
}

.title-underline {
	width: 200px;
	height: 10px;
	margin: 0 auto;
	background: orange;
	margin-bottom: 2rem;
}

.button {
	display: inline-block;
	background-color: red;
	color: white;
	text-align: center;
	font-weight: bold;
	font-size: 125%;
	/* border-radius: 0.5em 0.25em; */
	border: none;
	outline: none !important;
	padding: 0.5em;
	margin: 0.5em;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
}

a {
	text-decoration: none;
}

.button:hover {
	background-color: darkorange;
	transform: scale(1.025) rotate(0.75deg);
}

.button:active {
	transform: translate(0, 0.2rem);
	box-shadow: 0 0.1rem rgba(0, 0, 0, 0.25);
}

.social-button {
	background-color: darkblue;
}

.email-button:hover {
	background-color: darkblue;
	transform: scale(1.05) rotate(-2.5deg);
}

/* increase BS xxl breakpoint */
@media (min-width: 1600px) {
	.container-xxl {
		max-width: 1600px;
	}
}

/*****************************************************************************/
/* Top Menu section - Navbar                                                 */
/*****************************************************************************/
#topmenu {
	background: darkblue;
	color: white;
	position: fixed;
	z-index: 10;
	list-style-type: none;
	color: white;
	font-size: 1.25rem;
	width: 100vw;
}

#topmenu .logo {
	height: 3rem;
}

#topmenu .navbar-toggler-icon {
	font-size: 1.25rem;
	color: white;
}

#topmenu a {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	margin: 0 0.4rem;
	border: 0.15rem solid darkblue;
}

#topmenu a:hover {
	border-bottom: 0.15rem solid orange;
	color: white;
	transition: all 0.4s ease-in-out;
}

/*****************************************************************************/
/* Intro = Home page + Bio section                                           */
/*****************************************************************************/
#intro {
	background: radial-gradient(
			ellipse 100% 100% at 100% 100%,
			rgba(251, 84, 43, 0.9) 0%,
			rgba(169, 27, 120, 0.9) 46%,
			rgba(57, 45, 209, 0.9) 100%
		);
		/* background: radial-gradient(
			ellipse 100% 100% at 100% 100%,
			rgba(251, 84, 43, 0.9) 0%,
			rgba(169, 27, 120, 0.9) 46%,
			rgba(57, 45, 209, 0.9) 100%
		),
		url("/img/background-pic.jpg"); */
	background-size: cover;
	background-attachment: fixed;
	color: white;
}

/*****************************************************************************/
/* Home Page section                                                         */
/*****************************************************************************/
#home .home-container {
	min-height: 100vh;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}

#home h1 {
	line-height: 1.6;
}

/* #home .title {
	font-family: "Comfortaa", Arial, Helvetica, sans-serif;
	font-weight: 700;
	color: white;
	line-height: 2;
} */

#home .orange-underline {
	font-size: 105%;
	font-weight: bold;
	border-bottom: 0.45rem solid orange;
}

/*****************************************************************************/
/* Bio section                                                               */
/*****************************************************************************/
#bio {
	padding: 5rem 0 5rem 0;
}

.orange-underline {
	font-size: 110%;
	font-weight: bold;
	border-bottom: 0.2rem solid orange;
}

#bio #bio-photo {
	border-radius: 3px;
}

#bio .web-dev {
	padding: 1rem 0;
	line-height: 1.75;
}

#bio ul {
	line-height: 1.6;
}

#bio li {
	margin-bottom: 0.5rem;
}
#bio .bio-skills-points li {
	margin-bottom: 1rem;
}

#skills {
	padding: 5rem 0 1.5rem 0;
}

#skills .skills-education {
	margin-top: 1.5em;
}

/*****************************************************************************/
/* Project cards section                                                     */
/*****************************************************************************/
.my-work {
	font-size: 3.5rem;
}

.project-cards {
	padding: 1rem 0rem 3rem 0rem !important;
	margin-bottom: 1rem;
}

/* cards of the same height */
.project-cards .row,
.project-cards .col-md-4 {
	display: flex;
}

.project-cards .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-cards .card-body {
    flex: 1;
}
/* end - cards of the same height */

.project-cards a {
	display: block !important;
	text-decoration: none !important;
	text-align: center;
	color: darkblue;
}

.project-cards .card,
.project-cards .card-body,
.project-cards .card-img-top {
	border-radius: 0 !important;
}

.project-cards .card-body {
	background-color: #f7f7f7;
	color: #373737;
	/* height: 4rem; */
}

.project-cards a:hover {
	transform: scale(1.025);
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
	transition: all 0.35s ease-in-out;
}

.project-cards a:active {
	transform: translate(0, 0.2rem);
	box-shadow: 0 0.1rem rgba(0, 0, 0, 0.25);
}

.project-cards .archived-projects {
	display: inline-block;
}

.card-title {
	font-weight: bold;
}

.card-dates {
	font-size: 1rem;
	font-weight: 400;
}

/*****************************************************************************/
/* Contact section                                                           */
/*****************************************************************************/
#contact {
	text-align: center;
	padding: 5rem 0 5rem 0 !important;
	background: radial-gradient(
			ellipse 100% 100% at 100% 100%,
			rgba(251, 84, 43, 0.9) 0%,
			rgba(169, 27, 120, 0.9) 46%,
			rgba(57, 45, 209, 0.9) 100%
		);
	/* background: radial-gradient(
			ellipse 100% 100% at 100% 100%,
			rgba(251, 84, 43, 0.9) 0%,
			rgba(169, 27, 120, 0.9) 46%,
			rgba(57, 45, 209, 0.9) 100%
		),
		url("/img/background-pic.jpg"); */
	background-size: cover;
	background-attachment: fixed;
	color: white;
}

#contact .orange-underline {
	font-size: 110%;
	font-weight: bold;
	border-bottom: 0.4rem solid orange;
}

#contact a {
	text-decoration: none;
}

/* #contact-description h3 {
	margin-top: 1.75em;
	margin-bottom: 0.5em;
} */

#contact-description h4 {
	margin-top: 1.25em;
	margin-bottom: 1.5em;
}

/*****************************************************************************/
/* Checklist                                                                 */
/*****************************************************************************/
.checklist > li i {
	color: orange;
}

/*****************************************************************************/
/* Footer                                                                    */
/*****************************************************************************/
footer {
	background-color: rgb(0, 0, 77);
}

/*****************************************************************************/
/* Project Description Pages                                                 */
/*****************************************************************************/
.project-page-container {
	padding-top: 8rem;
	padding-bottom: 3rem;
	line-height: 1.6;
}

.blue-underline {
	font-size: 110%;
	font-weight: bold;
	border-bottom: 0.2rem solid darkblue;
}

.project-problem, 
.project-action {
	margin-bottom: 2rem;
}

.project-result {
	margin-bottom: 0.5rem;
}

.project-page-container .fa-ul {
	margin-bottom: 3rem;
}

/*****************************************************************************/
/* Professional Work Page                                                    */
/*****************************************************************************/
.professional-work-cards {
	margin-bottom: 0;
	background-color: #f7f7f7;
}

.professional-work-cards h1 {
	font-size: 3rem;
}

.professional-work-card {
	margin-bottom: 2rem;
	border: 2px solid #ddd;
}

.professional-work-card a:hover {
	transform: scale(1);
}

.professional-work-card .card-body {
	background-color: white;
	text-align: left;
	padding-left: 1.5rem;
}

.professional-work-title {
	margin-bottom: 1rem;
	line-height: 1.75;
}

.professional-card-date {
	font-size: 0.75em;
	font-weight: 400;
}

.professional-work-tech {
	margin-bottom: 0.75em;
}

.professional-work-actions {
	font-size: 0.95em;
	margin-top: 0;
	margin-bottom: 0;
}


/*****************************************************************************/
/* Media queries                                                             */
/*****************************************************************************/

/* @media (max-width: 576px) {
	#home .title {
		font-size: 1.8rem;
	}
}

@media (min-width: 576px) {
	#home .title {
		font-size: 1.8rem;
	}
}

@media (min-width: 768px) {
	#home .title {
		font-size: 1.9rem;
	}
}

@media (min-width: 992px) {
	#home .title {
		font-size: 2.5rem;
	}
}

@media (min-width: 1200px) {
	#home .title {
		font-size: 3rem;
	}
} */
