/**
 * AUTORIMESSA DI NANNI Theme - Chi Siamo Page Styles
 * Styles specifici per la pagina Chi Siamo
 */

/* ============================================
   Chi Siamo Page Header
   ============================================ */

.chi-siamo-page .page-header {
    position: relative;
    padding: clamp(8rem, 15vw, 16rem) 0;
    text-align: center;
    background: var(--color-bg-primary);
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chi-siamo-page .page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.chi-siamo-page .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.chi-siamo-page .page-header .container {
    position: relative;
    z-index: 2;
}

.chi-siamo-page .page-title {
    color: #FFFFFF !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7);
}

.chi-siamo-page .page-subtitle {
    color: var(--color-accent) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.chi-siamo-content {
    padding: var(--spacing-xl) 0;
}

/* ============================================
   Storia Section
   ============================================ */

.storia-section {
    background: var(--color-bg-primary);
    text-align: center;
    padding: 0;
}

.storia-content {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   Valori Section - 3 Colonne
   ============================================ */

.valori-section {
    background: transparent;
}

.valori-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    max-width: 1400px;
    margin: 0 auto;
}

.valore-item {
    text-align: center;
}

.valore-icon {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
}

.valore-icon svg {
    width: clamp(40px, 4vw, 48px);
    height: clamp(40px, 4vw, 48px);
}

.valore-item .section-title {
    font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.valore-item p {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
}

/* ============================================
   Prenotazione Section
   ============================================ */

.prenotazione-section {
    background: transparent;
    text-align: center;
    padding-top: 0;
}

.prenotazione-content {
    max-width: 900px;
    margin: 0 auto;
}

.prenotazione-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1.5rem, 3vw, 3rem);
    color: var(--color-accent);
    width: 64px;
    height: 64px;
}

.prenotazione-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.contatto-telefono {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.contatto-telefono .btn {
    border: none;
    background: transparent;
    color: var(--color-accent);
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 600;
    padding: 0;
}

.contatto-telefono .btn:hover {
    background: transparent;
    color: var(--color-accent);
    box-shadow: none;
    transform: none;
    opacity: 0.8;
}

/* ============================================
   Microcopy Section
   ============================================ */

.microcopy-section {
    background: var(--color-bg-primary);
    text-align: center;
    margin-bottom: 0;
    padding: 0;
}

.microcopy-content {
    max-width: 700px;
    margin: 0 auto;
}

.microcopy-text {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    font-style: italic;
}

/* ============================================
   Icons (Legacy - per compatibilità)
   ============================================ */

.qualita-icon,
.fidelizzazione-icon,
.professionalita-icon,
.tecnologia-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1.5rem, 3vw, 3rem);
    color: var(--color-accent);
    width: 64px;
    height: 64px;
}

.qualita-icon svg,
.fidelizzazione-icon svg,
.professionalita-icon svg,
.tecnologia-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .valori-grid {
        grid-template-columns: 1fr;
        gap: clamp(3rem, 6vw, 5rem);
    }
}

@media (max-width: 768px) {
    .valori-grid {
        grid-template-columns: 1fr;
    }
}

