/*
 * Style for theliveexperience index page.
 * Aggiornato secondo mockup LiveXperience (palette #6666ff + Nunito Sans).
 */

/* =============================================
   HERO HEADER
   ============================================= */

div#previewHeader {
    background-image: url('/images/layout/home-header.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8em 5% 4em;
    box-sizing: border-box;
    position: relative;
}

div#previewHeader::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.65) 100%);
    z-index: 0;
}

div#previewHeader > * {
    position: relative;
    z-index: 1;
}

div#previewHeader .title {
    font-size: 3.2em;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: .3em;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

.hero-subtitle {
    font-size: 1.1em;
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-bottom: 2.5em;
    color: #FFFFFF;
    opacity: .9;
    font-weight: 400;
}

div#previewHeader .button.line {
    margin-top: 1em;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

div#previewHeader .button.line:hover {
    background-color: #6666ff;
    border-color: #6666ff;
    color: #FFFFFF;
}

/* =============================================
   SECTION LABELS (riga ORIZZONTALE a sinistra del titolo)
   ============================================= */

.section-label {
    font-size: 1.6em;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin: 0 0 1.2em 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .8em;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    border-left: 0;
    padding: 0;
    line-height: 1.2em;
    position: relative;
}

.section-label::before {
    content: "";
    display: inline-block;
    width: 2.2em;
    height: 2px;
    background-color: #6666ff;
    flex-shrink: 0;
    position: absolute;
    left: -3em;
}

/* =============================================
   ABOUT — due colonne (Carlo / Antonello)
   ============================================= */

.about-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    margin-top: 1em;
    flex-direction: column;
}

.about-cols .about-col {
    flex: 1 1 calc(50% - 3em);
    min-width: 260px;
}

.about-cols .about-col .about-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: .8em;
    letter-spacing: .02em;
}

.about-cols .about-col p {
    color: #444444;
    font-size: .98em;
    line-height: 1.7em;
    margin-bottom: .9em;
}

@media screen and (max-width: 780px) {
    .about-cols {
        gap: 2em;
        flex-direction: column;
    }
    .about-cols .about-col {
        flex: 1 1 100%;
    }
}

/* =============================================
   CONCEPT / TEXT SECTIONS (riutilizzabile)
   Layout: allineato a sinistra con riga VERTICALE laterale
   ============================================= */

section.concept.space,
section.concept.space * {
    text-align: left;
}

section.concept.space {
    padding: 4.5em 10%;
    background-color: #FFFFFF;
}

section.concept.space .section-label {
    color: #1c1c1e;
}

section.concept.space .concept-text {
    text-align: left;
}

section.concept.space .concept-text p,
section.concept.space .concept-text ul li {
    margin-bottom: 1em;
    color: #444444;
    font-size: 1.05em;
    line-height: 1.75em;
    font-weight: 400;
}

section.concept.space .concept-text ul {
    list-style: disc;
    padding-left: 3%;
}

section.concept.space .concept-text h4 {
    margin-bottom: 1em;
    color: #444444;
    font-size: 1.3em;
    line-height: 2em;
    font-weight: 400;
}

section.concept.space .concept-text b,
section.concept.space .concept-text strong {
    font-weight: 700;
    color: #1c1c1e;
}

/* Dark variant */
section.concept.space.dark {
    background-color: #1c1c1e;
}

section.concept.space.dark .section-label {
    color: #FFFFFF;
}

section.concept.space.dark .section-label::before {
    background-color: #FFFFFF;
}

section.concept.space.dark .concept-text p {
    color: rgba(255, 255, 255, .85);
}

section.concept.space.dark .concept-text b,
section.concept.space.dark .concept-text strong {
    color: #FFFFFF;
}

/* Purple variant (THE STORY) */
section.concept.space.purple {
    background-color: #6666ff;
}

section.concept.space.purple .section-label {
    color: #FFFFFF;
}

section.concept.space.purple .section-label::before {
    background-color: #FFFFFF;
}

section.concept.space.purple .concept-text p,
section.concept.space.purple .concept-text ul li,
section.concept.space.purple .concept-text h4 {
    color: #FFFFFF;
    opacity: .95;
}

section.concept.space.purple .concept-text b,
section.concept.space.purple .concept-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* =============================================
   BANNER CONTACT (CTA viola centrale)
   ============================================= */

.banner-contact {
    background-color: #6666ff;
    padding: 3em 10%;
    min-height: 12em;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3em;
    box-sizing: border-box;
}

.banner-contact .banner-contact-text {
    flex: 1 1 60%;
    max-width: 60%;
    color: #FFFFFF;
    font-size: 1.35em;
    line-height: 1.55em;
    font-weight: 400;
}

.banner-contact .banner-contact-text b,
.banner-contact .banner-contact-text strong {
    font-weight: 700;
    color: #FFFFFF;
}

.banner-contact .button.line {
    flex-shrink: 0;
    border-color: #FFFFFF;
    color: #FFFFFF;
    padding: .75em 2.5em;
    letter-spacing: .12em;
}

.banner-contact .button.line:hover {
    background-color: #FFFFFF;
    color: #6666ff;
}

/* =============================================
   GALLERY / SWIPER SECTION (bg bianco)
   ============================================= */

section.sliderContainer {
    width: 100%;
    padding: 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

section.sliderContainer .firsSwiper {
    height: 70vh;
}

section.sliderContainer .thumbsSwiper {
    padding: 1em 25px;
    background-color: #FFFFFF;
}

section.sliderContainer .swiper-slide {
    background: #FFFFFF;
}

section.sliderContainer .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

section.sliderContainer .swiper-button-next,
section.sliderContainer .swiper-button-prev {
    color: #FFFFFF;
    background-color: rgba(102, 102, 255, .85);
    width: 2.8em;
    height: 2.8em;
    border-radius: 50%;
    transition: background-color .2s ease;
}

section.sliderContainer .swiper-button-next:hover,
section.sliderContainer .swiper-button-prev:hover {
    background-color: #6666ff;
}

section.sliderContainer .swiper-button-next:after,
section.sliderContainer .swiper-button-prev:after {
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: 700;
}

section.sliderContainer .thumbsSwiper .swiper-slide-thumb-active {
    outline: 2px solid #6666ff;
}

/* =============================================
   NEWS / CONCEPT CARDS (TITOLO BLOGPOST 1/2/3)
   ============================================= */

/* La sezione CONCEPT che precede #news: stesso fondo bianco, padding ridotto sotto */
section.concept.space + section.concept.space,
section.concept.space.white + section#news {
    padding-top: 0;
}

section#news {
    padding: 1em 10% 4.5em;
    text-align: left;
    background-color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2%;
}

section#news .blogBox {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .07);
    width: 32%;
    box-sizing: border-box;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
}

section#news .blogBox:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(102, 102, 255, .18);
}

section#news .blogBox > .bg {
    position: relative;
    height: 10em;
    background-size: cover;
    background-position: center;
}

section#news .blogBox h3 {
    color: #6666ff;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 1em 1.2em .4em;
    font-weight: 700;
}

section#news .blogBox p {
    color: #555555;
    padding: 0 1.2em 1.5em;
    font-size: .95em;
    line-height: 1.55em;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media screen and (max-width: 980px) {
    section#news .blogBox {
        width: 45%;
    }
}

@media screen and (max-width: 780px) {

    section.concept.space {
        padding: 3.5em 8%;
    }

    .banner-contact {
        flex-direction: column;
        text-align: center;
        padding: 3em 6%;
    }

    .banner-contact .banner-contact-text {
        max-width: 100%;
        font-size: 1.4em;
        line-height: 1.6em;
    }

    section.sliderContainer .firsSwiper {
        height: 50vh;
    }

    section#news .blogBox {
        width: 49%;
        margin-bottom: 1.5em;
    }
}

@media screen and (max-width: 500px) {

    div#previewHeader {
        height: auto !important;
        padding: 8em 4% 4em;
    }

    div#previewHeader .title {
        font-size: 2em;
        max-width: 100%;
        letter-spacing: .05em;
    }

    .banner-contact .banner-contact-text {
        max-width: 100%;
        font-size: 1.3em;
        line-height: 1.6em;
    }

    section.concept.space .concept-text p,
    section.concept.space .concept-text ul li {
        font-size: 1.25em;
        line-height: 1.8em;
    }

    section#news .blogBox p {
        font-size: 1.25em;
        line-height: 1.65em;
    }

    section#news .blogBox {
        width: 100%;
        margin-bottom: 1.5em;
    }

    section#news .blogBox h3 {
        font-size: 1.25em;
    }

    .section-label::before {
        display: none!important;
    }
}