body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #2c2c2c;
	color: #f0f0f0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2em;
}
nav a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}
nav a:hover {
	text-decoration: underline;
}
.page-wrapper {
	display: flex;
	flex: 1;
}
.left-bar,
.right-bar {
	width: 15%;
	background-color: #1a1a1a;
}
.main-content {
	width: 70%;
	max-width: 900px;
	padding: 2em;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Progetti */
#animated-title {
	font-size: 3em;
	text-align: center;
	margin-bottom: 1em;
	font-weight: bold;
	background: linear-gradient(90deg, #4CAF50, #81C784, #4CAF50);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shine 4s linear infinite;
	transition: transform 0.3s ease;
	cursor: default;
}
#animated-title:hover {
	transform: scale(1.05);
}

.projects-intro {
	font-size: 1.1em;
	line-height: 1.6;
	text-align: center;
	margin-top: 1.5em;
	margin-bottom: 2em;
}

.project {
	background-color: #333;
	border: 1px solid #444;
	border-left: 5px solid #4CAF50;
	padding: 1em;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
	margin-bottom: 2em;
}
.project h3 {
	margin-top: 0;
	color: #4CAF50;
}
.project .meta {
	font-size: 0.9em;
	color: #ccc;
	margin-bottom: 0.5em;
}

/* Footer */
footer {
	background-color: #4CAF50;
	border-top: 2px solid #2e7d32;
	color: white;
	font-size: 0.85em;
	padding: 0.7em 1em;
	margin-top: auto;
}
.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
}
.footer-left a {
	color: white;
	text-decoration: none;
}
.footer-left a:visited {
	color: white;
}
.footer-left a:hover {
	text-decoration: underline;
	color: #42a5f5;
}
.footer-center {
	text-align: center;
	flex: 1;
}
.footer-right {
	text-align: right;
	padding-right: 0.5em;
}
.footer-left p,
.footer-center p,
.footer-right p {
	margin: 0.2em 0;
}
.footer-right a {
	color: white;
	text-decoration: none;
}
.footer-right a:hover {
	text-decoration: underline;
}

/* Dropdown */
.dropdown {
	position: relative;
}
.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #4CAF50;
	border: 2px solid #2e7d32;
	border-radius: 0 0 10px 10px;
	padding: 0.5em 0;
	min-width: 150px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	z-index: 1001;
}
.dropdown-menu li {
	display: block;
	padding: 0.5em 1em;
}
.dropdown-menu li a {
	color: white;
	text-decoration: none;
	display: block;
	font-weight: normal;
}
.dropdown-menu li a:hover {
	background-color: #388E3C;
	text-decoration: none;
}
.dropdown:hover .dropdown-menu {
	display: block;
}
