/* --- Stili Globali e Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lato:wght@400;700&display=swap');

:root {
    --primary-color: #007A7A;  /* Teal/Verde Acqua per professionalità e creatività */
    --dark-color: #2c3e50;     /* Blu scuro quasi nero per il testo */
    --light-color: #f8f9fa;    /* Grigio chiarissimo per gli sfondi */
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Sezioni --- */
.section {
    padding: 80px 0;
}
.section-light {
    background-color: var(--light-color);
}

h1, h2, h3 {
    font-family: var(--font-header);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

/* --- Hero Section --- */
.hero {
    background-color: var(--light-color);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #005f5f;
    transform: translateY(-3px);
}

/* --- Layout e Contenuti --- */
.grid-2 {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 50px;
    align-items: center;
}
.image-content img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}
.section-intro h2 {
    font-size: 2.8rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 5px;
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- Footer e Form --- */
.footer {
    background-color: var(--dark-color);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}
.footer h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
}
.footer p {
    max-width: 500px;
    margin: 0 auto 30px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .text-content {
        text-align: center;
    }
    .image-content {
        max-width: 250px;
        margin: 0 auto 30px;
    }
}
