/* Reset base */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    text-align: center;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.text {
    max-width: 800px;
}


.reverse {
    flex-direction: row-reverse;
}

.single-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero {
    background-image: url('/images/immagine_header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #004A6F;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #FFAA17;
    color: #004A6F;
}

/* Content section */
.content-section {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
}

.content-section.alt {
    background-color: #ffffff;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #004A6F;
}

.content-section p {
    font-size: 1rem;
}

.costum-1 {
    width: 100%;
    max-width: 500px;
    max-height: 375px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.2); /* ombra solo sotto */
}

.costum-1:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 24px -8px rgba(0, 0, 0, 0.5); /* ombra più marcata sotto al hover */
}


.row {
    display: flex;
    align-items: center;
}