/* Reset e Stili di Base */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #000000;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-weight: 300;
    margin: 0;
}

/* Header */
header {
    background: #ffffff;
    color: #000000;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: 1px solid #eaeaea;
}

header .logo h1 {
    float: left;
    font-size: 24px;
}

header .logo p {
    float: left;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #000000;
    margin-top: 5px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    margin: 0;
    padding: 0;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header a {
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s ease;
}

header a:hover {
    color: #888888;
}

/* Hero Section */
#hero {
    min-height: 400px;
    background: #000000;
    color: #ffffff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Sezioni Generali */
section {
    padding: 60px 0;
    border-bottom: 1px solid #eaeaea;
}

section h3 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

/* Esperienze - Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #000000;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 25px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 25px;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: white;
    border: 2px solid #000000;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

/* Competenze */
.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.skill {
    background: #000000;
    color: #ffffff;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    font-size: 16px;
}

/* Istruzione */
.education-item {
    margin-bottom: 20px;
    text-align: center;
}

/* Contatti */
#contatti {
    text-align: center;
}

#contatti a {
    color: #000000;
    text-decoration: none;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background: #000000;
    color: #ffffff;
}