﻿body {
    background-color: #f0f0f0;
}

/* HERO */
.offer-hero {
    height: 65vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .offer-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.35);
    }

.offer-hero-inner {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 700px;
    z-index: 99;
}

.btn-hero-lux {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 10px;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color .3s ease, color .3s ease, background .3s ease;
    backdrop-filter: blur(2px);
}

    /* Effetto “glow sweep” */
    .btn-hero-lux::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.15);
        transform: translateX(-100%);
        transition: transform .45s ease;
    }

    .btn-hero-lux:hover::before {
        transform: translateX(0);
    }

    .btn-hero-lux:hover {
        border-color: rgba(255,255,255,1);
        color: #fff;
    }

/* DESCRIZIONE CENTRATA */
.offer-description-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.offer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.offer-dates {
    margin-bottom: 30px;
}

.offer-price-box {
    margin-top: 20px;
}

    .offer-price-box strong {
        font-size: 2rem;
    }

/* SERVIZI */
.offer-services {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
}

/* GALLERIA */
.offer-gallery {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.offer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.offer-photo {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* CTA */
.offer-cta {
    text-align: center;
    padding: 80px 20px;
}

.btn-lux {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    border-radius: 10px;
    cursor: pointer;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

    /* Effetto “ink spread” elegante */
    .btn-lux::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #1a1a1a;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
        z-index: 0;
    }

    .btn-lux:hover::before {
        transform: scaleX(1);
    }

    .btn-lux span,
    .btn-lux i {
        position: relative;
        z-index: 1;
        transition: color .35s ease;
    }

    .btn-lux:hover span,
    .btn-lux:hover i {
        color: #fff;
    }

    /* Icona leggermente più elegante */
    .btn-lux i {
        font-size: 1.2rem;
    }

/* Fade-in */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

    .fade-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

.hidden {
    display: none;
}
