body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: url('../images/lodi-social.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #eee;
}
header, nav, footer {
  backdrop-filter: blur(5px);
}
header {
  background-color: rgba(212, 0, 0, 0.9);
  padding: 1rem;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2rem;
  color: white;
}
nav {
  background-color: rgba(51, 51, 51, 0.95);
  padding: 0.5rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
section {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 10px;
}
footer {
  background-color: rgba(34, 34, 34, 0.95);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
ul {
  list-style-type: square;
  padding-left: 1.5rem;
}
iframe {
  width: 100%;
  height: 315px;
  margin: 1rem 0;
}
/* Timeline CSS */
.timeline {
  position: relative;
  margin: 2rem 0;
  padding: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #d40000;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}
.timeline-item.show {
  opacity: 1;
  transform: translateX(0);
}
.timeline-icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d40000;
  top: 0;
}
.timeline-content {
  margin-left: 40px;
}
.timeline-content h3 {
  margin: 0;
  font-size: 1.2rem;
}
.timeline-content p {
  margin: 0.5rem 0 0;
}
