/* ---- */
/* HERO */
/* ---- */
.hero-section {
    position: relative;
    height: 93vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--gray-mr);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit:contain;
    object-position: center;
}

.hero-content {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.hero-title {
    font: 70px;
    font-weight: 700;
    color: var(--blu-mr);
    margin-bottom: 0.8rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    font-family: 'Boska', serif;
}

.hero-text {
    font-size: 22px;
    color: var(--blu-mr);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    font-family: 'Poppins', sans-serif;
}

.hero-btn {
    background-color: var(--blu-mr);
    border: none;
    color: var(--white-mr);
    font-size: 18px;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-btn:hover {
    background-color: var(--champagne-mr);
    transform: translateY(-2px);
    color: var(--blu-mr);
}

/* Hero images - desktop vs mobile */
.hero-image-mobile {
    display: none;
}

.hero-image-desktop {
    display: block;
}

/* Hero content allineato in basso */
.hero-content {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .hero-image-mobile {
        display: block;
    }
    
    .hero-image-desktop {
        display: none;
    }
}

/* Responsive Design per Hero */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 500px;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 1.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}

/* ----- */
/* QUOTE */
/* ----- */
.quote-section {
    padding: 7rem 0;
    background-color: var(--white-mr);
}

.quote-container {
    position: relative;
    text-align: center;
    padding: 2rem 0;
}

.quote-text {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--blu-mr);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.quote-mark {
    font-size: 6rem;
    font-weight: 700;
    color: var(--blu-mr);
    font-family: Georgia, serif;
    position: absolute;
    line-height: 1;
    user-select: none;
    opacity: 0.8;
}

.quote-mark-open {
    top: -1rem;
    left: -2rem;
}

.quote-mark-close {
    bottom: -3rem;
    right: -2rem;
}

/* Responsive Design per Quote */
@media (max-width: 991.98px) {
    .quote-section {
        padding: 4rem 0;
    }
    
    .quote-text {
        font-size: 1.9rem;
    }
    
    .quote-mark {
        font-size: 5rem;
    }
    
    .quote-mark-open {
        left: -1rem;
    }
    
    .quote-mark-close {
        right: -1rem;
    }
}

@media (max-width: 767.98px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-text {
        font-size: 1.6rem;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .quote-mark-open {
        top: -0.5rem;
        left: -0.5rem;
    }
    
    .quote-mark-close {
        bottom: -2rem;
        right: -0.5rem;
    }
}

@media (max-width: 575.98px) {
    .quote-section {
        padding: 5rem 0;
    }
    
    .quote-text {
        font-size: 1.4rem;
        line-height: 1.5;
    }
    
    .quote-mark {
        font-size: 3.5rem;
    }
    
    .quote-container {
        padding: 1.5rem 0;
    }
}

/* ----- */
/* ABOUT */
/* ----- */
.about-section {
    padding: 0 0 3rem;
    background-color: var(--gray-mr);
}

.about-content {
    padding: 0 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    font-family: 'Boska', serif;
}

.title-services {
    font-size: 34px !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--champagne-mr);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-mr);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}

.about-text {
    font-size: 20px;
    color: var(--text-mr);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-image,
.services-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.about-image img,
.services-image img {
    max-width: 60%;
    height: auto;
    object-fit: cover;
}

.about-image {
    padding: 2rem 0;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Lifestyle usa roba di about */
.about-section-reverse {
    padding: 6rem 0 3rem;
    background-color: var(--gray-mr);
}

@media (max-width: 991.98px) {

    .about-image img,
    .services-image img {
        max-width: 100%;
    }

    .about-section-reverse .about-image img {
        max-width: 100%;
    }
}

/* -------- */
/* SERVICES */
/* -------- */
.services-section {
    padding: 6rem 0;
    background-color: var(--white-mr);
}

.services-content {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 80%;
    margin: 0 auto;
}

.services-image {
    padding: 2rem 0;
}

.services-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.services-list li {
    font-size: 20px;
    color: var(--text-mr);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--champagne-mr);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {

    .about-section,
    .services-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content,
    .services-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .about-image,
    .services-image {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .about-section,
    .services-section {
        padding: 0;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .services-list li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .about-content,
    .services-content {
        padding: 0.5rem 0;
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .services-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
        text-align: left;
    }
}

/* --------- */
/* Statement */
/* --------- */
.statement-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.statement-content {
    max-width: 100%;
}

.statement-title {
    font-size: 3.5rem;
    font-weight: 100;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.statement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #2c3e50;
}

.statement-subtitle {
    font-size: 1rem;
    font-weight: 400;
}

.statement-location,
.statement-year {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 1rem;
}

.statement-location-year {
    display: flex;
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .statement-section {
        padding: 6rem 0;
    }
    
    .statement-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .statement-section {
        padding: 4rem 0;
    }
    
    .statement-title {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    .statement-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .statement-subtitle ,
    .statement-location,
    .statement-year {
        font-size: 14px;
    }
    
    /* Contenitore per location e year sulla stessa riga */
    .statement-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .statement-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .statement-section {
        padding: 3rem 0;
    }
    
    .statement-title {
        font-size: 24px;
    }
}

/* -------------- */
/* Sustainability */
/* -------------- */
.sustainability-section {
    position: relative;
    min-height: fit-content;
    max-height: 70vh;
    overflow: hidden;
}

.sustainability-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sustainability-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sustainability-content {
    background-color: var(--champagne-mr);
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    min-height: 60vh;
    max-height: 70vh;    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sustainability-title {
    font-size: 28px;
    font-weight: 200;
    color: var(--text-mr);
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.sustainability-text {
    font-size: 18px;
    font-weight: 200;
    color: var(--text-mr);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.sustainability-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .sustainability-content {
        height: 500px;
        min-height: 500px;
        width: 300px;
    }
}

@media (max-width: 767.98px) {
    .sustainability-content {
        height: 400px;
        min-height: 400px;
        padding: 2rem 1.5rem;
        width: auto;
    }
    
    .sustainability-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .sustainability-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .sustainability-section .container-fluid {
        padding: 0;
    }
}

@media (max-width: 575.98px) {
    .sustainability-content {
        padding: 1.5rem 1rem;
    }
    
    .sustainability-title {
        font-size: 1.6rem;
    }
    
    .sustainability-text {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* -------------------------*/
/* Mission & Vision Section */
/* -------------------------*/
.mission-vision-section {
    padding: 6rem 0;
    background-color: var(--gray-mr);
}

.section-main-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--blu-mr);
    margin-bottom: 4rem;
    text-align: left;
    position: relative;
    padding-left: 2rem;
}

.section-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 2rem;
    width: 80px;
    height: 3px;
    background-color: var(--champagne-mr);
}

.mission-card,
.vision-card {
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    font-family: 'Boska', serif;
}

.card-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--blu-mr);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.card-divider {
    width: 100%;
    height: 1px;
    background-color: var(--champagne-mr);
    margin-bottom: 2rem;
}

.card-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-mr);
    margin-bottom: 1.5rem;
    text-align: left;
}

.card-text {
    font-family: 'DM Sans', sans-serif;;
    font-size: 20px;
    color: var(--text-mr);
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .mission-vision-section {
        padding: 4rem 0;
    }
    
    .section-main-title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .section-main-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 0;
        text-align: center;
    }
    
    .card-title {
        text-align: center;
    }
    
    .card-subtitle {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .mission-vision-section {
        padding: 3rem 0;
    }
    
    .section-main-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }
    
    .card-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .card-text {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .section-main-title {
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-subtitle {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
}
/* --------------------- */
/* Instagram CTA Section */
/* --------------------- */
.instagram-cta-section {
    padding: 6rem 0;
    background-color: var(--white-mr);
}

.instagram-content {
    text-align: center;
    margin-bottom: 4rem;
}

.instagram-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-mr);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.instagram-subtitle {
    font-size: 20px;
    color: var(--text-mr);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-instagram {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    border: 2px solid var(--blu-mr);
    color: var(--blu-mr);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background-color: var(--blu-mr);
    color: var(--champagne-mr)
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.instagram-gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.instagram-gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Responsive Design */
@media (max-width: 991.98px) {
    .instagram-cta-section {
        padding: 4rem 0;
    }
    
    .instagram-title {
        font-size: 2.8rem;
    }
    
    .instagram-subtitle {
        font-size: 1.1rem;
    }
    
    .instagram-content {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .instagram-cta-section {
        padding: 3rem 0;
    }
    
    .instagram-title {
        font-size: 2.2rem;
    }
    
    .instagram-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .instagram-subtitle br {
        display: none;
    }
    
    .btn-instagram {
        padding: 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .instagram-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
}

@media (max-width: 575.98px) {
    .instagram-title {
        font-size: 1.8rem;
    }
    
    .instagram-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-instagram {
        width: 100%;
        max-width: 300px;
    }
}

/* ------ */
/* VALUES */
/* ------ */
.values-section {
    padding: 6rem 0;
    background-color: var(--blu-mr);
    color: var(--white-mr)
}

.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--champagne-mr);
}


.value-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white-mr);
    margin-bottom: 2rem;
    line-height: 1.4;
    min-height: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.value-subtitle {
    font-size: 1rem;
    color: var(--text-mr);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .col-lg-2-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .value-title {
        min-height: 80px;
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .values-section {
        padding: 4rem 0;
    }
    
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .value-item {
        padding: 2rem 0.5rem;
        margin-bottom: 2rem;
    }
    
    .value-icon i {
        font-size: 3.5rem;
    }
    
    .value-title {
        font-size: 1.1rem;
        min-height: 90px;
        margin-bottom: 1.5rem;
    }
    
    .value-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .values-section {
        padding: 3rem 0;
    }
    
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .value-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        margin-bottom: 1.5rem;
    }
    
    .value-icon i {
        font-size: 3rem;
    }
    
    .value-title {
        font-size: 1.2rem;
        min-height: auto;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .value-title {
        font-size: 1.1rem;
    }
    
    .value-subtitle {
        font-size: 0.85rem;
    }
}

/* AGGIUNTA AL FOOTER */ 
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--champagne-mr);
}

/* SLIDER IMMAGINI ALZATE */
.img-pennelli {
    object-position: center bottom !important;
}