body {
  background-color: black;
  color: white;
  margin: 0;
  padding: 0;
  font-family: Roboto;
  /*font-family: Verdana, sans-serif;*/
}

.fade-in {
  opacity: 0;
  animation: fadeInAnimation 1s ease-in forwards;
}

@keyframes fadeInAnimation {
  0% {
	opacity: 0;
  }
  100% {
	opacity: 1;
  }
}

/* CSS for fading in sections */
.fade-in-section {
  opacity: 0;
}

.main-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	text-align: center;
	background-image: url("../Images/background-gold.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.logo {
  width: 10%;
  /*height: 100px;*/
  margin-bottom: 20px;
}

.quote {
  font-size: 24px;
  margin-bottom: 40px;
}

.menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: black;
	z-index: 100;
	padding: 20px 0px;
	/*text-align: center;
	height: 100px;*/
}

.menu a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.menu a:hover {
  color: yellow;
}

.menu-logo-container {
	display: flex;
}

.menu-logo {
	width: auto;
	height: 80px;
	margin-right: 20px;
	margin-left: 20px;
}

.menu-title {
	font-size: 20px;
	margin-right: 50px;
}

.justify {
	text-align: justify;
	text-justify: inter-word;
}

.section {
  padding: 100px 10px;
  text-align: center;
  max-width: 1000px;
  width: auto;
  margin: auto;
 }

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: yellow;
}

.section-links {
	padding: 10px;
}

.networking-links {
	padding: 20px;
}

ul.no-bullets {
	list-style-type: none; /* Remove bullets */
	padding: 0 20%;
	margin: 0;
}

ul.bullets {
	padding: 0 10%;
	margin: 0;
}

ul li {
	padding: 5px 0%;
}

footer {
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer a {
	padding: 5px;
}

/* Links styles */

/* unvisited link */
a:link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: gold;
}

/* selected link */
a:active {
  color: orange;
}

/* Add additional styles for each section */

#about {
  background-color: black; /*gold;*/
}

#resume {
  background-color: black; /*orange;*/
}

#contact {
  background-color: black; /*red;*/
}

.portfolio-cover {
	margin-top: 20px;
	transition: transform 0.3s ease-in-out;
}

.portfolio-cover:hover {
  transform: scale(1.2);
}

/* CSS for the resume section */
.resume-item {
  margin-bottom: 40px;
}

.resume-title {
  font-size: 18px;
  font-weight: bold;
}

.resume-duration {
  font-style: italic;
  margin-bottom: 5px;
}

.resume-location {
  margin-bottom: 10px;
}

.resume-description {
	margin-bottom: 5px;
	padding: 0 20%;
}

.resume-img-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.resume-img {
	margin-right: 10px;
	width: 100px;
	justify-content: right;
	vertical-align: middle;
}

.resume-logo {
	width: 100%;
	vertical-align: middle;
}

.resume-img-description {
	justify-content: left;
}

/* Portfolio */
.project-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	min-height: 100vh;
	margin-top: 200px;
}

.project {
	position: relative;
	width: 400px;
	height: 300px;
	margin: 20px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
	transition: transform 0.3s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
}

.project:hover {
  transform: scale(1.2);
}

.project-image {
  width: 90%;
  object-fit: cover;
  padding: 5%;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.project:hover .project-overlay {
  opacity: 1;
}

.project-title {
  color: white;
  font-size: 20px;
  text-align: center;
}

.project-title:hover {
	color: yellow;
}

.r-markdown-project {
	padding: 100px 10px !important;
	text-align: justify !important;
	max-width: 1000px !important;
	margin: auto !important;
}

.services-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service {
	flex-basis: 45%;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 20px;
	min-width: 400px;
	padding: 10px;
}

.service-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-description {
  font-size: 16px;
}

/* Mobile and small device Styles */
@media (max-width: 768px) {
	.hidden-mobile {
		display: none;
	}
	
	.menu-logo {
		width: 20px;
		height: auto;
		margin-right: 10px;
		margin-left: 10px;
	}
	
	.menu a {
	  color: white;
	  text-decoration: none;
	  margin: 0 5px;
	  font-size: 15px;
	}
	
	.service {
		flex-basis: 45%;
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin-bottom: 20px;
		min-width: 200px;
		padding: 10px;
	}
}