body {
    margin: 0;
    font-family: Times New Roman;
    background-color: #0b2c5e;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #081f45;
}

header h1 {
    color: #f2c400;
    margin: 0;
}

nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

    .hero {
    height: 100vh; /* tutta altezza schermo */
    background-image: url("images/bancone.jpeg");
    background-size: cover; /* riempie e taglia */
    background-position: center; /* mantiene focus centrale */
    display: flex;
    align-items: flex-end; /* testo in basso */
}

.overlay {
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.2rem;
}
section {
    padding: 60px 20px;
}

h2 {
    text-align: center;
    color: #f2c400;
    margin-bottom: 40px;
}

.content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.content.reverse {
    flex-direction: row-reverse;
}

.content img {
    width: 50%;
    border-radius: 15px;
}

.content p {
    font-size: 1.2em;
}

.social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    padding: 10px 20px;
    background-color: #f2c400;
    color: #0b2c5e;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #081f45;
}
