/* Chi Siamo Page Styles */

/* Hero Banner */
.hero-banner {
    position: absolute;
    left: 9vw;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-banner-content {
    text-align: center;
    padding: 0 2rem;
}

.hero-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero-chisiamo {
    height: 100vh;
    width: 100vw;
    background-image: url('../immagini/img_chi_siamo/hero_chisiamo.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-left: 5vw;
}

.hero-chisiamo .hero-content {
    text-align: left;
    color: white;
    z-index: 2;
}

.hero-chisiamo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5vw;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-chisiamo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5vw;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-chisiamo h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5vw;
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

/* Chi Siamo e Valori Section */
.chi-siamo-valori-section {
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2rem 5vw;
}

.chi-siamo-valori-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    flex: 1;
}

.chi-siamo-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.chi-siamo-right {
    flex: 1;
    padding-left: 2rem;
}

.chi-siamo-content {
    display: flex;
    flex-direction: column;
}

.vertical-separator {
    width: 2px;
    height: 60vh;
    background: linear-gradient(135deg, #7363FE 0%, #2EA9F6 100%);
    flex-shrink: 0;
}

/* Branding Styles */
.branding {
    text-align: center;
}

.domy-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #333;
    margin-bottom: 1rem;
}

.by-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 2rem;
}

.econica-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.econica-e {
    color: #FFA500;
    font-weight: 900;
}

.econica-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.1em;
}

/* Chi Siamo Image */
.chi-siamo-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.chi-siamo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Chi Siamo Text */
.chi-siamo-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

/* Section Title */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #7363FE 0%, #2EA9F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Valori Container */
.valori-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    flex: 1;
}

.valori-left {
    flex: 1;
    padding-right: 2rem;
}

.valori-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Valori List */
.valori-list {
    margin-top: 1rem;
}

.valore-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.valore-item strong {
    color: #2EA9F6;
    font-weight: 700;
}

/* Valori Image */
.valori-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.valori-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .chi-siamo-container,
    .valori-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .vertical-separator {
        width: 60vw;
        height: 2px;
    }
    
    .chi-siamo-right,
    .valori-left {
        padding: 0;
    }
    
    .valori-image {
        max-width: 300px;
        height: 300px;
    }
    
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    
    .domy-brand {
        font-size: 3rem;
    }
    
    .econica-logo {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .valore-item {
        font-size: 1rem;
    }
    
    .valori-image {
        max-width: 250px;
        height: 250px;
    }
}


lex: 1;
    display: flex;
    justify-content: center;
}

/* Valori List */
.valori-list {
    margin-top: 1rem;
}

.valore-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.valore-item strong {
    color: #2EA9F6;
    font-weight: 700;
}

/* Valori Image */
.valori-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.valori-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .chi-siamo-container,
    .valori-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .vertical-separator {
        width: 60vw;
        height: 2px;
    }
    
    .chi-siamo-right,
    .valori-left {
        padding: 0;
    }
    
    .valori-image {
        max-width: 300px;
        height: 300px;
    }
    
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    
    .domy-brand {
        font-size: 3rem;
    }
    
    .econica-logo {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .valore-item {
        font-size: 1rem;
    }
    
    .valori-image {
        max-width: 250px;
        height: 250px;
    }
}



