body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #2c2c2c;
	color: #f0f0f0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

nav {
	background-color: #4CAF50;
	border: 2px solid #2e7d32;
	border-radius: 0 0 10px 10px;
	padding: 1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
}

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;
}

.about-photo {
	width: 250px;
	height: auto;
	border-radius: 15px;
	border: 2px solid #2e7d32;
	object-fit: cover;
	display: block;
	margin-bottom: 1em;
}

/* 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; /* blu acceso */
}

.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;
}	text-decoration: underline;
}
.intro-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2em;
}

.intro-text {
	flex: 1;
	min-width: 250px;
}
@keyframes flash-border {
	0%, 100% { border-bottom-color: #2e7d32; }
	50% { border-bottom-color: lightgreen; }
}

nav.flash-border {
	animation: flash-border 1s ease;
}
/* 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;
}
@media (max-width: 768px) {
	.intro-row {
		flex-direction: column;
		align-items: center;
	}

	.about-photo {
		width: 70%;
		max-width: 300px;
	}
}

.about-photo {
	float: left;
	width: 300px;
	margin: 0 20px 20px 0;
	border-radius: 10px;
}

@media (max-width: 768px) {
	.about-photo {
		float: none;
		display: block;
		margin: 0 auto 20px auto;
	}
}
/* Lampeggiamento bordo navbar */
.flash-border {
	border: 3px solid yellow;
	animation: flash 1s ease-in-out;
}

/* Animazione lampeggio */
@keyframes flash {
	0% { border-color: yellow; }
	50% { border-color: orange; }
	100% { border-color: yellow; }
}
